diff options
author | Jack Carter <jcarter@mips.com> | 2013-02-21 02:09:31 +0000 |
---|---|---|
committer | Jack Carter <jcarter@mips.com> | 2013-02-21 02:09:31 +0000 |
commit | 77217229ba1bbc92f3a53099fa91bcdaa7797da8 (patch) | |
tree | 0ee4752914269e634804686290d43a88c3020bba /test | |
parent | 421021157eda12453b4fea7ea853d8c472bd8532 (diff) |
Mips specific standalone assembler addressing mode %hi and %lo.
The constructs %hi() and %lo() represent the high and low 16
bits of the address.
Because the 16 bit offset field of an LW instruction is
interpreted as signed, if bit 15 of the low part is 1 then the
low part will act as a negative and 1 needs to be added to the
high part.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175707 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/Mips/hilo-addressing.s | 11 | ||||
-rw-r--r-- | test/MC/Mips/mips_directives.s | 5 |
2 files changed, 13 insertions, 3 deletions
diff --git a/test/MC/Mips/hilo-addressing.s b/test/MC/Mips/hilo-addressing.s new file mode 100644 index 0000000000..28459c2067 --- /dev/null +++ b/test/MC/Mips/hilo-addressing.s @@ -0,0 +1,11 @@ +# RUN: llvm-mc -show-encoding -triple mips-unknown-unknown %s | FileCheck %s + + .ent hilo_test + .equ addr, 0xdeadbeef +# CHECK: # encoding: [0x3c,0x04,0xde,0xae] + lui $4,%hi(addr) +# CHECK: # encoding: [0x03,0xe0,0x00,0x08] + jr $31 +# CHECK: # encoding: [0x80,0x82,0xbe,0xef] + lb $2,%lo(addr)($4) + .end hilo_test diff --git a/test/MC/Mips/mips_directives.s b/test/MC/Mips/mips_directives.s index d0a3beaeea..65d584dfa8 100644 --- a/test/MC/Mips/mips_directives.s +++ b/test/MC/Mips/mips_directives.s @@ -1,5 +1,5 @@ -# RUN: llvm-mc -triple mips-unknown-unknown %s | FileCheck %s -#this test produces no output so there isS no FileCheck call +# RUN: llvm-mc -show-encoding -triple mips-unknown-unknown %s | FileCheck %s +# $BB0_2: .ent directives_test .frame $sp,0,$ra @@ -17,4 +17,3 @@ $JTI0_0: .set macro .set reorder .set at=$a0 - .end directives_test |