From: Nick Clifton Date: Tue, 9 Sep 1997 23:54:40 +0000 (+0000) Subject: Correcte dscription of hi() reloc prefix. Added description of hi0() reloc prefix. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=73a0402821e8a5b0e5efb368e301695ab17c9715;p=binutils-gdb.git Correcte dscription of hi() reloc prefix. Added description of hi0() reloc prefix. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 22c5f23c5ba..6fecc81a7a7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,8 @@ Tue Sep 9 10:19:37 1997 Nick Clifton + * doc/c-v850.texi (V850 Opcodes): Document hi0() reloc prefix. + Correct description of hi() reloc prefix. + start-sanitize-v850e * doc/c-v850.texi (V850 Opcodes): Document new reloc prefix. * config/tc-v850.c (v850_reloc_prefix): Add hilo() reloc prefix. diff --git a/gas/doc/c-v850.texi b/gas/doc/c-v850.texi index 7c204358844..b17fc369caf 100644 --- a/gas/doc/c-v850.texi +++ b/gas/doc/c-v850.texi @@ -249,12 +249,12 @@ such code with code assembled for other processors. @table @code -@cindex @code{hi} pseudo-op, V850 -@item hi() +@cindex @code{hi0} pseudo-op, V850 +@item hi0() Computes the higher 16 bits of the given expression and stores it into the immediate operand field of the given instruction. For example: - @samp{mulhi hi(here - there), r5, r6} + @samp{mulhi hi0(here - there), r5, r6} computes the difference between the address of labels 'here' and 'there', takes the upper 16 bits of this difference, shifts it down 16 @@ -272,6 +272,28 @@ computes the difference between the address of labels 'here' and 'there', takes the lower 16 bits of this difference and adds it to register 5, putting the result into register 6. +@cindex @code{hi} pseudo-op, V850 +@item hi() +Computes the higher 16 bits of the given expression and then adds the +value of the most significant bit of the lower 16 bits of the expression +and stores the result into the immediate operand field of the given +instruction. For example the following code can be used to compute the +address of the label 'here' and store it into register 6: + + @samp{movhi hi(here), r0, r6} + @samp{movea lo(here), r6, r6} + +The reason for this special behaviour is that movea performs a sign +extention on its immediate operand. So for example if the address of +'here' was 0xFFFFFFFF then without the special behaviour of the hi() +pseudo-op the movhi instruction would put 0xFFFF0000 into r6, then the +movea instruction would takes its immediate operand, 0xFFFF, sign extend +it to 32 bits, 0xFFFFFFFF, and then add it into r6 giving 0xFFFEFFFF +which is wrong (the fifth nibble is E). With the hi() pseudo op adding +in the top bit of the lo() pseudo op, the movhi instruction actually +stores 0 into r6 (0xFFFF + 1 = 0x0000), so that the movea instruction +stores 0xFFFFFFFF into r6 - the right value. + @c start-santize-v850e @cindex @code{hilo} pseudo-op, V850 @item hilo()