2015-06-02 18:34:10 +08:00
|
|
|
# RUN: llvm-mc %s -triple=mipsel-unknown-linux -show-encoding -mcpu=mips32r2 | \
|
2016-06-24 20:23:17 +08:00
|
|
|
# RUN: FileCheck %s --check-prefixes=CHECK,CHECK-LE
|
2015-06-23 22:39:42 +08:00
|
|
|
# RUN: llvm-mc %s -triple=mips-unknown-linux -show-encoding -mcpu=mips32r2 | \
|
2016-06-24 20:23:17 +08:00
|
|
|
# RUN: FileCheck %s --check-prefixes=CHECK,CHECK-BE
|
2015-06-02 18:34:10 +08:00
|
|
|
|
|
|
|
# Check that the IAS expands macro instructions in the same way as GAS.
|
|
|
|
|
|
|
|
# Load address, done by MipsAsmParser::expandLoadAddressReg()
|
|
|
|
# and MipsAsmParser::expandLoadAddressImm():
|
2015-06-17 20:30:37 +08:00
|
|
|
la $8, 1f
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: lui $8, %hi($tmp0) # encoding: [A,A,0x08,0x3c]
|
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %hi($tmp0), kind: fixup_Mips_HI16
|
|
|
|
# CHECK-LE: addiu $8, $8, %lo($tmp0) # encoding: [A,A,0x08,0x25]
|
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %lo($tmp0), kind: fixup_Mips_LO16
|
2015-06-02 18:34:10 +08:00
|
|
|
|
[mips] Accept 32-bit offsets for lb and lbu commands
`lb` and `lbu` commands accepts 16-bit signed offsets. But GAS accepts
larger offsets for these commands. If an offset does not fit in 16-bit
range, `lb` command is translated into lui/lb or lui/addu/lb series.
It's interesting that initially LLVM assembler supported this feature,
but later it was broken.
This patch restores support for 32-bit offsets. It replaces `mem_simm16`
operand for `LB` and `LBu` definitions by the new `mem_simmptr` operand.
This operand is intended to check that offset fits to the same size as
using for pointers. Later we will be able to extend this rule and
accepts 64-bit offsets when it is possible.
Some issues remain:
- The regression also affects LD, SD, LH, LHU commands. I'm going
to fix them by a separate patch.
- GAS accepts any 32-bit values as an offset. Now LLVM accepts signed
16-bit values and this patch extends the range to signed 32-bit offsets.
In other words, the following code accepted by GAS and still triggers
an error by LLVM:
```
lb $4, 0x80000004
# gas
lui a0, 0x8000
lb a0, 4(a0)
```
- In case of 64-bit pointers GAS accepts a 64-bit offset and translates
it to the li/dsll/lb series of commands. LLVM still rejects it.
Probably this feature has never been implemented in LLVM. This issue
is for a separate patch.
```
lb $4, 0x800000001
# gas
li a0, 0x8000
dsll a0, a0, 0x14
lb a0, 4(a0)
```
Differential Revision: https://reviews.llvm.org/D45020
llvm-svn: 330983
2018-04-27 03:55:28 +08:00
|
|
|
lb $4, 0x8000
|
|
|
|
# CHECK-LE: lui $4, 1 # encoding: [0x01,0x00,0x04,0x3c]
|
|
|
|
# CHECK-LE: lb $4, -32768($4) # encoding: [0x00,0x80,0x84,0x80]
|
|
|
|
|
|
|
|
lb $4, 0x20004($3)
|
|
|
|
# CHECK-LE: lui $4, 2 # encoding: [0x02,0x00,0x04,0x3c]
|
|
|
|
# CHECK-LE: addu $4, $4, $3 # encoding: [0x21,0x20,0x83,0x00]
|
|
|
|
# CHECK-LE: lb $4, 4($4) # encoding: [0x04,0x00,0x84,0x80]
|
|
|
|
|
|
|
|
lbu $4, 0x8000
|
|
|
|
# CHECK-LE: lui $4, 1 # encoding: [0x01,0x00,0x04,0x3c]
|
|
|
|
# CHECK-LE: lbu $4, -32768($4) # encoding: [0x00,0x80,0x84,0x90]
|
|
|
|
|
|
|
|
lbu $4, 0x20004($3)
|
|
|
|
# CHECK-LE: lui $4, 2 # encoding: [0x02,0x00,0x04,0x3c]
|
|
|
|
# CHECK-LE: addu $4, $4, $3 # encoding: [0x21,0x20,0x83,0x00]
|
|
|
|
# CHECK-LE: lbu $4, 4($4) # encoding: [0x04,0x00,0x84,0x90]
|
|
|
|
|
2018-05-11 00:01:18 +08:00
|
|
|
lh $4, 0x8000
|
|
|
|
# CHECK-LE: lui $4, 1
|
|
|
|
# CHECK-LE: lh $4, -32768($4)
|
|
|
|
|
|
|
|
lh $4, 0x20004($3)
|
|
|
|
# CHECK-LE: lui $4, 2
|
|
|
|
# CHECK-LE: addu $4, $4, $3
|
|
|
|
# CHECK-LE: lh $4, 4($4)
|
|
|
|
|
|
|
|
lhu $4, 0x8000
|
|
|
|
# CHECK-LE: lui $4, 1
|
|
|
|
# CHECK-LE: lhu $4, -32768($4)
|
|
|
|
|
|
|
|
lhu $4, 0x20004($3)
|
|
|
|
# CHECK-LE: lui $4, 2
|
|
|
|
# CHECK-LE: addu $4, $4, $3
|
|
|
|
# CHECK-LE: lhu $4, 4($4)
|
|
|
|
|
2015-06-02 18:34:10 +08:00
|
|
|
# LW/SW and LDC1/SDC1 of symbol address, done by MipsAsmParser::expandMemInst():
|
|
|
|
.set noat
|
|
|
|
lw $10, symbol($4)
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $10, %hi(symbol) # encoding: [A,A,0x0a,0x3c]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %hi(symbol), kind: fixup_Mips_HI16
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: addu $10, $10, $4 # encoding: [0x21,0x50,0x44,0x01]
|
|
|
|
# CHECK-LE: lw $10, %lo(symbol)($10) # encoding: [A,A,0x4a,0x8d]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %lo(symbol), kind: fixup_Mips_LO16
|
2015-06-02 18:34:10 +08:00
|
|
|
.set at
|
|
|
|
sw $10, symbol($9)
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, %hi(symbol) # encoding: [A,A,0x01,0x3c]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %hi(symbol), kind: fixup_Mips_HI16
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: sw $10, %lo(symbol)($1) # encoding: [A,A,0x2a,0xac]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %lo(symbol), kind: fixup_Mips_LO16
|
2015-06-02 18:34:10 +08:00
|
|
|
|
[mips] [IAS] Fix LW with relative label operands.
Summary:
Previously, MCSymbolRefExpr::create() was called with a StringRef of the symbol
name, which it would then search for in the Symbols StringMap (from MCContext).
However, relative labels (which are temporary symbols) are apparently not stored
in the Symbols StringMap, so we end up creating a new {$,.L}tmp symbol
({$,.L}tmp00, {$,.L}tmp10 etc.) each time we create an MCSymbolRefExpr by
passing in the symbol name as a StringRef.
Fortunately, there is a version of MCSymbolRefExpr::create() which takes an
MCSymbol* and we already have an MCSymbol* at that point, so we can just pass
that in instead of the StringRef.
I also removed the local StringRef calls to MCSymbolRefExpr::create() from
expandMemInst(), as those cases can be handled by evaluateRelocExpr() anyway.
Reviewers: dsanders
Reviewed By: dsanders
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D9938
llvm-svn: 239897
2015-06-17 18:43:45 +08:00
|
|
|
lw $8, 1f
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $8, %hi($tmp0) # encoding: [A,A,0x08,0x3c]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %hi($tmp0), kind: fixup_Mips_HI16
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lw $8, %lo($tmp0)($8) # encoding: [A,A,0x08,0x8d]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %lo($tmp0), kind: fixup_Mips_LO16
|
2015-06-17 19:46:37 +08:00
|
|
|
sw $8, 1f
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, %hi($tmp0) # encoding: [A,A,0x01,0x3c]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %hi($tmp0), kind: fixup_Mips_HI16
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: sw $8, %lo($tmp0)($1) # encoding: [A,A,0x28,0xac]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %lo($tmp0), kind: fixup_Mips_LO16
|
[mips] [IAS] Fix LW with relative label operands.
Summary:
Previously, MCSymbolRefExpr::create() was called with a StringRef of the symbol
name, which it would then search for in the Symbols StringMap (from MCContext).
However, relative labels (which are temporary symbols) are apparently not stored
in the Symbols StringMap, so we end up creating a new {$,.L}tmp symbol
({$,.L}tmp00, {$,.L}tmp10 etc.) each time we create an MCSymbolRefExpr by
passing in the symbol name as a StringRef.
Fortunately, there is a version of MCSymbolRefExpr::create() which takes an
MCSymbol* and we already have an MCSymbol* at that point, so we can just pass
that in instead of the StringRef.
I also removed the local StringRef calls to MCSymbolRefExpr::create() from
expandMemInst(), as those cases can be handled by evaluateRelocExpr() anyway.
Reviewers: dsanders
Reviewed By: dsanders
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D9938
llvm-svn: 239897
2015-06-17 18:43:45 +08:00
|
|
|
|
2015-06-02 18:34:10 +08:00
|
|
|
lw $10, 655483($4)
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $10, 10 # encoding: [0x0a,0x00,0x0a,0x3c]
|
|
|
|
# CHECK-LE: addu $10, $10, $4 # encoding: [0x21,0x50,0x44,0x01]
|
|
|
|
# CHECK-LE: lw $10, 123($10) # encoding: [0x7b,0x00,0x4a,0x8d]
|
2015-06-02 18:34:10 +08:00
|
|
|
sw $10, 123456($9)
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, 2 # encoding: [0x02,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
2016-04-29 21:43:45 +08:00
|
|
|
# CHECK-LE: sw $10, -7616($1) # encoding: [0x40,0xe2,0x2a,0xac]
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
llvm-svn: 165561
2012-10-10 07:29:45 +08:00
|
|
|
|
2015-06-02 18:34:10 +08:00
|
|
|
lw $8, symbol
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $8, %hi(symbol) # encoding: [A,A,0x08,0x3c]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %hi(symbol), kind: fixup_Mips_HI16
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE-NOT: move $8, $8 # encoding: [0x21,0x40,0x00,0x01]
|
|
|
|
# CHECK-LE: lw $8, %lo(symbol)($8) # encoding: [A,A,0x08,0x8d]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %lo(symbol), kind: fixup_Mips_LO16
|
2015-06-02 18:34:10 +08:00
|
|
|
sw $8, symbol
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, %hi(symbol) # encoding: [A,A,0x01,0x3c]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %hi(symbol), kind: fixup_Mips_HI16
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE-NOT: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: sw $8, %lo(symbol)($1) # encoding: [A,A,0x28,0xac]
|
2016-05-03 21:35:44 +08:00
|
|
|
# CHECK-LE: # fixup A - offset: 0, value: %lo(symbol), kind: fixup_Mips_LO16
|
2015-04-08 21:52:41 +08:00
|
|
|
|
2015-06-02 18:34:10 +08:00
|
|
|
ldc1 $f0, symbol
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, %hi(symbol)
|
|
|
|
# CHECK-LE: ldc1 $f0, %lo(symbol)($1)
|
2015-06-02 18:34:10 +08:00
|
|
|
sdc1 $f0, symbol
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, %hi(symbol)
|
|
|
|
# CHECK-LE: sdc1 $f0, %lo(symbol)($1)
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
# Test BNE with an immediate as the 2nd operand.
|
|
|
|
bne $2, 0, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: bnez $2, 1332 # encoding: [0x4d,0x01,0x40,0x14]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
bne $2, 123, 1332
|
2015-07-14 20:24:22 +08:00
|
|
|
# CHECK-LE: addiu $1, $zero, 123 # encoding: [0x7b,0x00,0x01,0x24]
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: bne $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x14]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
bne $2, -2345, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: addiu $1, $zero, -2345 # encoding: [0xd7,0xf6,0x01,0x24]
|
|
|
|
# CHECK-LE: bne $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x14]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
bne $2, 65538, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 2 # encoding: [0x02,0x00,0x21,0x34]
|
|
|
|
# CHECK-LE: bne $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x14]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
bne $2, ~7, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: addiu $1, $zero, -8 # encoding: [0xf8,0xff,0x01,0x24]
|
|
|
|
# CHECK-LE: bne $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x14]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
bne $2, 0x10000, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: bne $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x14]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
# Test BEQ with an immediate as the 2nd operand.
|
|
|
|
beq $2, 0, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: beqz $2, 1332 # encoding: [0x4d,0x01,0x40,0x10]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
beq $2, 123, 1332
|
2015-07-14 20:24:22 +08:00
|
|
|
# CHECK-LE: addiu $1, $zero, 123 # encoding: [0x7b,0x00,0x01,0x24]
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: beq $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x10]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
beq $2, -2345, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: addiu $1, $zero, -2345 # encoding: [0xd7,0xf6,0x01,0x24]
|
|
|
|
# CHECK-LE: beq $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x10]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
beq $2, 65538, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 2 # encoding: [0x02,0x00,0x21,0x34]
|
|
|
|
# CHECK-LE: beq $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x10]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
beq $2, ~7, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: addiu $1, $zero, -8 # encoding: [0xf8,0xff,0x01,0x24]
|
|
|
|
# CHECK-LE: beq $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x10]
|
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
2015-06-11 18:36:10 +08:00
|
|
|
|
|
|
|
beq $2, 0x10000, 1332
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: beq $2, $1, 1332 # encoding: [0x4d,0x01,0x41,0x10]
|
2016-02-29 19:24:49 +08:00
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
|
|
|
|
|
|
|
beq $2, 65538, foo
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 2 # encoding: [0x02,0x00,0x21,0x34]
|
|
|
|
# CHECK-LE: beq $2, $1, foo # encoding: [A,A,0x41,0x10]
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: nop # encoding: [0x00,0x00,0x00,0x00]
|
|
|
|
|
2015-10-15 22:52:58 +08:00
|
|
|
# Test ULH with immediate operand.
|
|
|
|
ulh_imm: # CHECK-LABEL: ulh_imm:
|
|
|
|
ulh $8, 0
|
|
|
|
# CHECK-BE: lb $1, 0($zero) # encoding: [0x80,0x01,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $8, 1($zero) # encoding: [0x90,0x08,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lb $1, 1($zero) # encoding: [0x01,0x00,0x01,0x80]
|
|
|
|
# CHECK-LE: lbu $8, 0($zero) # encoding: [0x00,0x00,0x08,0x90]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 2
|
|
|
|
# CHECK-BE: lb $1, 2($zero) # encoding: [0x80,0x01,0x00,0x02]
|
|
|
|
# CHECK-BE: lbu $8, 3($zero) # encoding: [0x90,0x08,0x00,0x03]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lb $1, 3($zero) # encoding: [0x03,0x00,0x01,0x80]
|
|
|
|
# CHECK-LE: lbu $8, 2($zero) # encoding: [0x02,0x00,0x08,0x90]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 0x8000
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, -0x8000
|
|
|
|
# CHECK-BE: lb $1, -32768($zero) # encoding: [0x80,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: lbu $8, -32767($zero) # encoding: [0x90,0x08,0x80,0x01]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lb $1, -32767($zero) # encoding: [0x01,0x80,0x01,0x80]
|
|
|
|
# CHECK-LE: lbu $8, -32768($zero) # encoding: [0x00,0x80,0x08,0x90]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 0x10000
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 0x18888
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, -32769
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 32767
|
|
|
|
# CHECK-BE: addiu $1, $zero, 32767 # encoding: [0x24,0x01,0x7f,0xff]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: addiu $1, $zero, 32767 # encoding: [0xff,0x7f,0x01,0x24]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
# Test ULH with immediate offset and a source register operand.
|
|
|
|
ulh_reg: # CHECK-LABEL: ulh_reg:
|
|
|
|
ulh $8, 0($9)
|
|
|
|
# CHECK-BE: lb $1, 0($9) # encoding: [0x81,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $8, 1($9) # encoding: [0x91,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lb $1, 1($9) # encoding: [0x01,0x00,0x21,0x81]
|
|
|
|
# CHECK-LE: lbu $8, 0($9) # encoding: [0x00,0x00,0x28,0x91]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 2($9)
|
|
|
|
# CHECK-BE: lb $1, 2($9) # encoding: [0x81,0x21,0x00,0x02]
|
|
|
|
# CHECK-BE: lbu $8, 3($9) # encoding: [0x91,0x28,0x00,0x03]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lb $1, 3($9) # encoding: [0x03,0x00,0x21,0x81]
|
|
|
|
# CHECK-LE: lbu $8, 2($9) # encoding: [0x02,0x00,0x28,0x91]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 0x8000($9)
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, -0x8000($9)
|
|
|
|
# CHECK-BE: lb $1, -32768($9) # encoding: [0x81,0x21,0x80,0x00]
|
|
|
|
# CHECK-BE: lbu $8, -32767($9) # encoding: [0x91,0x28,0x80,0x01]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lb $1, -32767($9) # encoding: [0x01,0x80,0x21,0x81]
|
|
|
|
# CHECK-LE: lbu $8, -32768($9) # encoding: [0x00,0x80,0x28,0x91]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 0x10000($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 0x18888($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, -32769($9)
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulh $8, 32767($9)
|
2016-11-23 00:43:49 +08:00
|
|
|
# CHECK-BE: addiu $1, $9, 32767 # encoding: [0x25,0x21,0x7f,0xff]
|
2015-10-15 22:52:58 +08:00
|
|
|
# CHECK-BE: lb $8, 0($1) # encoding: [0x80,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
2016-11-23 00:43:49 +08:00
|
|
|
# CHECK-LE: addiu $1, $9, 32767 # encoding: [0xff,0x7f,0x21,0x25]
|
2015-10-15 22:52:58 +08:00
|
|
|
# CHECK-LE: lb $8, 1($1) # encoding: [0x01,0x00,0x28,0x80]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
2015-06-23 22:39:42 +08:00
|
|
|
# Test ULHU with immediate operand.
|
2015-10-15 22:52:58 +08:00
|
|
|
ulhu_imm: # CHECK-LABEL: ulhu_imm:
|
2015-06-23 22:39:42 +08:00
|
|
|
ulhu $8, 0
|
|
|
|
# CHECK-BE: lbu $1, 0($zero) # encoding: [0x90,0x01,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $8, 1($zero) # encoding: [0x90,0x08,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lbu $1, 1($zero) # encoding: [0x01,0x00,0x01,0x90]
|
|
|
|
# CHECK-LE: lbu $8, 0($zero) # encoding: [0x00,0x00,0x08,0x90]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 2
|
|
|
|
# CHECK-BE: lbu $1, 2($zero) # encoding: [0x90,0x01,0x00,0x02]
|
|
|
|
# CHECK-BE: lbu $8, 3($zero) # encoding: [0x90,0x08,0x00,0x03]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lbu $1, 3($zero) # encoding: [0x03,0x00,0x01,0x90]
|
|
|
|
# CHECK-LE: lbu $8, 2($zero) # encoding: [0x02,0x00,0x08,0x90]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 0x8000
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, -0x8000
|
|
|
|
# CHECK-BE: lbu $1, -32768($zero) # encoding: [0x90,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: lbu $8, -32767($zero) # encoding: [0x90,0x08,0x80,0x01]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lbu $1, -32767($zero) # encoding: [0x01,0x80,0x01,0x90]
|
|
|
|
# CHECK-LE: lbu $8, -32768($zero) # encoding: [0x00,0x80,0x08,0x90]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 0x10000
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 0x18888
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, -32769
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 32767
|
2015-07-14 20:24:22 +08:00
|
|
|
# CHECK-BE: addiu $1, $zero, 32767 # encoding: [0x24,0x01,0x7f,0xff]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: addiu $1, $zero, 32767 # encoding: [0xff,0x7f,0x01,0x24]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
2015-06-23 22:39:42 +08:00
|
|
|
|
|
|
|
# Test ULHU with immediate offset and a source register operand.
|
|
|
|
ulhu $8, 0($9)
|
|
|
|
# CHECK-BE: lbu $1, 0($9) # encoding: [0x91,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $8, 1($9) # encoding: [0x91,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lbu $1, 1($9) # encoding: [0x01,0x00,0x21,0x91]
|
|
|
|
# CHECK-LE: lbu $8, 0($9) # encoding: [0x00,0x00,0x28,0x91]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 2($9)
|
|
|
|
# CHECK-BE: lbu $1, 2($9) # encoding: [0x91,0x21,0x00,0x02]
|
|
|
|
# CHECK-BE: lbu $8, 3($9) # encoding: [0x91,0x28,0x00,0x03]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lbu $1, 3($9) # encoding: [0x03,0x00,0x21,0x91]
|
|
|
|
# CHECK-LE: lbu $8, 2($9) # encoding: [0x02,0x00,0x28,0x91]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 0x8000($9)
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, -0x8000($9)
|
|
|
|
# CHECK-BE: lbu $1, -32768($9) # encoding: [0x91,0x21,0x80,0x00]
|
|
|
|
# CHECK-BE: lbu $8, -32767($9) # encoding: [0x91,0x28,0x80,0x01]
|
|
|
|
# CHECK-BE: sll $1, $1, 8 # encoding: [0x00,0x01,0x0a,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lbu $1, -32767($9) # encoding: [0x01,0x80,0x21,0x91]
|
|
|
|
# CHECK-LE: lbu $8, -32768($9) # encoding: [0x00,0x80,0x28,0x91]
|
|
|
|
# CHECK-LE: sll $1, $1, 8 # encoding: [0x00,0x0a,0x01,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 0x10000($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 0x18888($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, -32769($9)
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ulhu $8, 32767($9)
|
2016-11-23 00:43:49 +08:00
|
|
|
# CHECK-BE: addiu $1, $9, 32767 # encoding: [0x25,0x21,0x7f,0xff]
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-BE: lbu $8, 0($1) # encoding: [0x90,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 1($1) # encoding: [0x90,0x21,0x00,0x01]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
2016-11-23 00:43:49 +08:00
|
|
|
# CHECK-LE: addiu $1, $9, 32767 # encoding: [0xff,0x7f,0x21,0x25]
|
2015-06-23 22:39:42 +08:00
|
|
|
# CHECK-LE: lbu $8, 1($1) # encoding: [0x01,0x00,0x28,0x90]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
[mips] [IAS] Fix LW with relative label operands.
Summary:
Previously, MCSymbolRefExpr::create() was called with a StringRef of the symbol
name, which it would then search for in the Symbols StringMap (from MCContext).
However, relative labels (which are temporary symbols) are apparently not stored
in the Symbols StringMap, so we end up creating a new {$,.L}tmp symbol
({$,.L}tmp00, {$,.L}tmp10 etc.) each time we create an MCSymbolRefExpr by
passing in the symbol name as a StringRef.
Fortunately, there is a version of MCSymbolRefExpr::create() which takes an
MCSymbol* and we already have an MCSymbol* at that point, so we can just pass
that in instead of the StringRef.
I also removed the local StringRef calls to MCSymbolRefExpr::create() from
expandMemInst(), as those cases can be handled by evaluateRelocExpr() anyway.
Reviewers: dsanders
Reviewed By: dsanders
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D9938
llvm-svn: 239897
2015-06-17 18:43:45 +08:00
|
|
|
|
2015-06-26 21:20:17 +08:00
|
|
|
# Test ULW with immediate operand.
|
|
|
|
ulw $8, 0
|
|
|
|
# CHECK-BE: lwl $8, 0($zero) # encoding: [0x88,0x08,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($zero) # encoding: [0x98,0x08,0x00,0x03]
|
|
|
|
# CHECK-LE: lwl $8, 3($zero) # encoding: [0x03,0x00,0x08,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($zero) # encoding: [0x00,0x00,0x08,0x98]
|
|
|
|
|
|
|
|
ulw $8, 2
|
|
|
|
# CHECK-BE: lwl $8, 2($zero) # encoding: [0x88,0x08,0x00,0x02]
|
|
|
|
# CHECK-BE: lwr $8, 5($zero) # encoding: [0x98,0x08,0x00,0x05]
|
|
|
|
# CHECK-LE: lwl $8, 5($zero) # encoding: [0x05,0x00,0x08,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 2($zero) # encoding: [0x02,0x00,0x08,0x98]
|
|
|
|
|
|
|
|
ulw $8, 0x8000
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, -0x8000
|
|
|
|
# CHECK-BE: lwl $8, -32768($zero) # encoding: [0x88,0x08,0x80,0x00]
|
|
|
|
# CHECK-BE: lwr $8, -32765($zero) # encoding: [0x98,0x08,0x80,0x03]
|
|
|
|
# CHECK-LE: lwl $8, -32765($zero) # encoding: [0x03,0x80,0x08,0x88]
|
|
|
|
# CHECK-LE: lwr $8, -32768($zero) # encoding: [0x00,0x80,0x08,0x98]
|
|
|
|
|
|
|
|
ulw $8, 0x10000
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, 0x18888
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, -32771
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32765 # encoding: [0x34,0x21,0x7f,0xfd]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32765 # encoding: [0xfd,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, 32765
|
2015-07-14 20:24:22 +08:00
|
|
|
# CHECK-BE: addiu $1, $zero, 32765 # encoding: [0x24,0x01,0x7f,0xfd]
|
2015-06-26 21:20:17 +08:00
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
2015-07-14 20:24:22 +08:00
|
|
|
# CHECK-LE: addiu $1, $zero, 32765 # encoding: [0xfd,0x7f,0x01,0x24]
|
2015-06-26 21:20:17 +08:00
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
# Test ULW with immediate offset and a source register operand.
|
|
|
|
ulw $8, 0($9)
|
|
|
|
# CHECK-BE: lwl $8, 0($9) # encoding: [0x89,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($9) # encoding: [0x99,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lwl $8, 3($9) # encoding: [0x03,0x00,0x28,0x89]
|
|
|
|
# CHECK-LE: lwr $8, 0($9) # encoding: [0x00,0x00,0x28,0x99]
|
|
|
|
|
|
|
|
ulw $8, 2($9)
|
|
|
|
# CHECK-BE: lwl $8, 2($9) # encoding: [0x89,0x28,0x00,0x02]
|
|
|
|
# CHECK-BE: lwr $8, 5($9) # encoding: [0x99,0x28,0x00,0x05]
|
|
|
|
# CHECK-LE: lwl $8, 5($9) # encoding: [0x05,0x00,0x28,0x89]
|
|
|
|
# CHECK-LE: lwr $8, 2($9) # encoding: [0x02,0x00,0x28,0x99]
|
|
|
|
|
|
|
|
ulw $8, 0x8000($9)
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, -0x8000($9)
|
|
|
|
# CHECK-BE: lwl $8, -32768($9) # encoding: [0x89,0x28,0x80,0x00]
|
|
|
|
# CHECK-BE: lwr $8, -32765($9) # encoding: [0x99,0x28,0x80,0x03]
|
|
|
|
# CHECK-LE: lwl $8, -32765($9) # encoding: [0x03,0x80,0x28,0x89]
|
|
|
|
# CHECK-LE: lwr $8, -32768($9) # encoding: [0x00,0x80,0x28,0x99]
|
|
|
|
|
|
|
|
ulw $8, 0x10000($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, 0x18888($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, -32771($9)
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32765 # encoding: [0x34,0x21,0x7f,0xfd]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32765 # encoding: [0xfd,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, 32765($9)
|
2016-11-23 00:43:49 +08:00
|
|
|
# CHECK-BE: addiu $1, $9, 32765 # encoding: [0x25,0x21,0x7f,0xfd]
|
2015-06-26 21:20:17 +08:00
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
2016-11-23 00:43:49 +08:00
|
|
|
# CHECK-LE: addiu $1, $9, 32765 # encoding: [0xfd,0x7f,0x21,0x25]
|
2015-06-26 21:20:17 +08:00
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
2016-11-23 00:43:49 +08:00
|
|
|
ulw $8, 0($8)
|
|
|
|
# CHECK-BE: lwl $1, 0($8) # encoding: [0x89,0x01,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $1, 3($8) # encoding: [0x99,0x01,0x00,0x03]
|
|
|
|
# CHECK-BE: move $8, $1 # encoding: [0x00,0x20,0x40,0x25]
|
|
|
|
# CHECK-LE: lwl $1, 3($8) # encoding: [0x03,0x00,0x01,0x89]
|
|
|
|
# CHECK-LE: lwr $1, 0($8) # encoding: [0x00,0x00,0x01,0x99]
|
|
|
|
# CHECK-LE: move $8, $1 # encoding: [0x25,0x40,0x20,0x00]
|
|
|
|
|
|
|
|
ulw $8, 2($8)
|
|
|
|
# CHECK-BE: lwl $1, 2($8) # encoding: [0x89,0x01,0x00,0x02]
|
|
|
|
# CHECK-BE: lwr $1, 5($8) # encoding: [0x99,0x01,0x00,0x05]
|
|
|
|
# CHECK-BE: move $8, $1 # encoding: [0x00,0x20,0x40,0x25]
|
|
|
|
# CHECK-LE: lwl $1, 5($8) # encoding: [0x05,0x00,0x01,0x89]
|
|
|
|
# CHECK-LE: lwr $1, 2($8) # encoding: [0x02,0x00,0x01,0x99]
|
|
|
|
# CHECK-LE: move $8, $1 # encoding: [0x25,0x40,0x20,0x00]
|
|
|
|
|
|
|
|
ulw $8, 0x8000($8)
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, -0x8000($8)
|
|
|
|
# CHECK-BE: lwl $1, -32768($8) # encoding: [0x89,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: lwr $1, -32765($8) # encoding: [0x99,0x01,0x80,0x03]
|
|
|
|
# CHECK-BE: move $8, $1 # encoding: [0x00,0x20,0x40,0x25]
|
|
|
|
# CHECK-LE: lwl $1, -32765($8) # encoding: [0x03,0x80,0x01,0x89]
|
|
|
|
# CHECK-LE: lwr $1, -32768($8) # encoding: [0x00,0x80,0x01,0x99]
|
|
|
|
# CHECK-LE: move $8, $1 # encoding: [0x25,0x40,0x20,0x00]
|
|
|
|
|
|
|
|
ulw $8, 0x10000($8)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, 0x18888($8)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, -32771($8)
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32765 # encoding: [0x34,0x21,0x7f,0xfd]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32765 # encoding: [0xfd,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ulw $8, 32765($8)
|
|
|
|
# CHECK-BE: addiu $1, $8, 32765 # encoding: [0x25,0x01,0x7f,0xfd]
|
|
|
|
# CHECK-BE: lwl $8, 0($1) # encoding: [0x88,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lwr $8, 3($1) # encoding: [0x98,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: addiu $1, $8, 32765 # encoding: [0xfd,0x7f,0x01,0x25]
|
|
|
|
# CHECK-LE: lwl $8, 3($1) # encoding: [0x03,0x00,0x28,0x88]
|
|
|
|
# CHECK-LE: lwr $8, 0($1) # encoding: [0x00,0x00,0x28,0x98]
|
|
|
|
|
|
|
|
ush_imm: # CHECK-LABEL: ush_imm
|
|
|
|
ush $8, 0
|
|
|
|
# CHECK-BE: sb $8, 1($zero) # encoding: [0xa0,0x08,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, 0($zero) # encoding: [0xa0,0x01,0x00,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($zero) # encoding: [0x00,0x00,0x08,0xa0]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, 1($zero) # encoding: [0x01,0x00,0x01,0xa0]
|
|
|
|
|
|
|
|
ush $8, 2
|
|
|
|
# CHECK-BE: sb $8, 3($zero) # encoding: [0xa0,0x08,0x00,0x03]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, 2($zero) # encoding: [0xa0,0x01,0x00,0x02]
|
|
|
|
# CHECK-LE: sb $8, 2($zero) # encoding: [0x02,0x00,0x08,0xa0]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, 3($zero) # encoding: [0x03,0x00,0x01,0xa0]
|
|
|
|
|
|
|
|
# FIXME: Remove the identity moves (move $1, $1) coming from loadImmediate
|
|
|
|
ush $8, 0x8000
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: move $1, $1 # encoding: [0x00,0x20,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, -0x8000
|
|
|
|
# CHECK-BE: sb $8, -32767($zero) # encoding: [0xa0,0x08,0x80,0x01]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, -32768($zero) # encoding: [0xa0,0x01,0x80,0x00]
|
|
|
|
# CHECK-LE: sb $8, -32768($zero) # encoding: [0x00,0x80,0x08,0xa0]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, -32767($zero) # encoding: [0x01,0x80,0x01,0xa0]
|
|
|
|
|
|
|
|
# FIXME: Remove the identity moves (move $1, $1) coming from loadImmediate
|
|
|
|
ush $8, 0x10000
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: move $1, $1 # encoding: [0x00,0x20,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
# FIXME: Remove the identity moves (move $1, $1) coming from loadImmediate
|
|
|
|
ush $8, 0x18888
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: move $1, $1 # encoding: [0x00,0x20,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
# FIXME: Remove the identity moves (move $1, $1) coming from loadImmediate
|
|
|
|
ush $8, -32769
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: move $1, $1 # encoding: [0x00,0x20,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, 32767
|
|
|
|
# CHECK-BE: addiu $1, $zero, 32767 # encoding: [0x24,0x01,0x7f,0xff]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: addiu $1, $zero, 32767 # encoding: [0xff,0x7f,0x01,0x24]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush_reg: # CHECK-LABEL: ush_reg
|
|
|
|
ush $8, 0($9)
|
|
|
|
# CHECK-BE: sb $8, 1($9) # encoding: [0xa1,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, 0($9) # encoding: [0xa1,0x21,0x00,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($9) # encoding: [0x00,0x00,0x28,0xa1]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, 1($9) # encoding: [0x01,0x00,0x21,0xa1]
|
|
|
|
|
|
|
|
ush $8, 2($9)
|
|
|
|
# CHECK-BE: sb $8, 3($9) # encoding: [0xa1,0x28,0x00,0x03]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, 2($9) # encoding: [0xa1,0x21,0x00,0x02]
|
|
|
|
# CHECK-LE: sb $8, 2($9) # encoding: [0x02,0x00,0x28,0xa1]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, 3($9) # encoding: [0x03,0x00,0x21,0xa1]
|
|
|
|
|
|
|
|
ush $8, 0x8000($9)
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, -0x8000($9)
|
|
|
|
# CHECK-BE: sb $8, -32767($9) # encoding: [0xa1,0x28,0x80,0x01]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, -32768($9) # encoding: [0xa1,0x21,0x80,0x00]
|
|
|
|
# CHECK-LE: sb $8, -32768($9) # encoding: [0x00,0x80,0x28,0xa1]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, -32767($9) # encoding: [0x01,0x80,0x21,0xa1]
|
|
|
|
|
|
|
|
ush $8, 0x10000($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, 0x18888($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, -32769($9)
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, 32767($9)
|
|
|
|
# CHECK-BE: addiu $1, $9, 32767 # encoding: [0x25,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: addiu $1, $9, 32767 # encoding: [0xff,0x7f,0x21,0x25]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, 0($8)
|
|
|
|
# CHECK-BE: sb $8, 1($8) # encoding: [0xa1,0x08,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, 0($8) # encoding: [0xa1,0x01,0x00,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($8) # encoding: [0x00,0x00,0x08,0xa1]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, 1($8) # encoding: [0x01,0x00,0x01,0xa1]
|
|
|
|
|
|
|
|
ush $8, 2($8)
|
|
|
|
# CHECK-BE: sb $8, 3($8) # encoding: [0xa1,0x08,0x00,0x03]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, 2($8) # encoding: [0xa1,0x01,0x00,0x02]
|
|
|
|
# CHECK-LE: sb $8, 2($8) # encoding: [0x02,0x00,0x08,0xa1]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, 3($8) # encoding: [0x03,0x00,0x01,0xa1]
|
|
|
|
|
|
|
|
ush $8, 0x8000($8)
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, -0x8000($8)
|
|
|
|
# CHECK-BE: sb $8, -32767($8) # encoding: [0xa1,0x08,0x80,0x01]
|
|
|
|
# CHECK-BE: srl $1, $8, 8 # encoding: [0x00,0x08,0x0a,0x02]
|
|
|
|
# CHECK-BE: sb $1, -32768($8) # encoding: [0xa1,0x01,0x80,0x00]
|
|
|
|
# CHECK-LE: sb $8, -32768($8) # encoding: [0x00,0x80,0x08,0xa1]
|
|
|
|
# CHECK-LE: srl $1, $8, 8 # encoding: [0x02,0x0a,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $1, -32767($8) # encoding: [0x01,0x80,0x01,0xa1]
|
|
|
|
|
|
|
|
ush $8, 0x10000($8)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, 0x18888($8)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, -32769($8)
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
ush $8, 32767($8)
|
|
|
|
# CHECK-BE: addiu $1, $8, 32767 # encoding: [0x25,0x01,0x7f,0xff]
|
|
|
|
# CHECK-BE: sb $8, 1($1) # encoding: [0xa0,0x28,0x00,0x01]
|
|
|
|
# CHECK-BE: srl $8, $8, 8 # encoding: [0x00,0x08,0x42,0x02]
|
|
|
|
# CHECK-BE: sb $8, 0($1) # encoding: [0xa0,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: lbu $1, 0($1) # encoding: [0x90,0x21,0x00,0x00]
|
|
|
|
# CHECK-BE: sll $8, $8, 8 # encoding: [0x00,0x08,0x42,0x00]
|
|
|
|
# CHECK-BE: or $8, $8, $1 # encoding: [0x01,0x01,0x40,0x25]
|
|
|
|
# CHECK-LE: addiu $1, $8, 32767 # encoding: [0xff,0x7f,0x01,0x25]
|
|
|
|
# CHECK-LE: sb $8, 0($1) # encoding: [0x00,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: srl $8, $8, 8 # encoding: [0x02,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: sb $8, 1($1) # encoding: [0x01,0x00,0x28,0xa0]
|
|
|
|
# CHECK-LE: lbu $1, 0($1) # encoding: [0x00,0x00,0x21,0x90]
|
|
|
|
# CHECK-LE: sll $8, $8, 8 # encoding: [0x00,0x42,0x08,0x00]
|
|
|
|
# CHECK-LE: or $8, $8, $1 # encoding: [0x25,0x40,0x01,0x01]
|
|
|
|
|
|
|
|
usw_imm: # CHECK-LABEL: usw_imm:
|
|
|
|
usw $8, 0
|
|
|
|
# CHECK-BE: swl $8, 0($zero) # encoding: [0xa8,0x08,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($zero) # encoding: [0xb8,0x08,0x00,0x03]
|
|
|
|
# CHECK-LE: swl $8, 3($zero) # encoding: [0x03,0x00,0x08,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($zero) # encoding: [0x00,0x00,0x08,0xb8]
|
|
|
|
|
|
|
|
usw $8, 2
|
|
|
|
# CHECK-BE: swl $8, 2($zero) # encoding: [0xa8,0x08,0x00,0x02]
|
|
|
|
# CHECK-BE: swr $8, 5($zero) # encoding: [0xb8,0x08,0x00,0x05]
|
|
|
|
# CHECK-LE: swl $8, 5($zero) # encoding: [0x05,0x00,0x08,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 2($zero) # encoding: [0x02,0x00,0x08,0xb8]
|
|
|
|
|
|
|
|
# FIXME: Remove the identity moves (move $1, $1) coming from loadImmediate
|
|
|
|
usw $8, 0x8000
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: move $1, $1 # encoding: [0x00,0x20,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, -0x8000
|
|
|
|
# CHECK-BE: swl $8, -32768($zero) # encoding: [0xa8,0x08,0x80,0x00]
|
|
|
|
# CHECK-BE: swr $8, -32765($zero) # encoding: [0xb8,0x08,0x80,0x03]
|
|
|
|
# CHECK-LE: swl $8, -32765($zero) # encoding: [0x03,0x80,0x08,0xa8]
|
|
|
|
# CHECK-LE: swr $8, -32768($zero) # encoding: [0x00,0x80,0x08,0xb8]
|
|
|
|
|
|
|
|
# FIXME: Remove the identity moves (move $1, $1) coming from loadImmediate
|
|
|
|
usw $8, 0x10000
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: move $1, $1 # encoding: [0x00,0x20,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
# FIXME: Remove the identity moves (move $1, $1) coming from loadImmediate
|
|
|
|
usw $8, 0x18888
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: move $1, $1 # encoding: [0x00,0x20,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
# FIXME: Remove the identity moves (move $1, $1) coming from loadImmediate
|
|
|
|
usw $8, -32769
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: move $1, $1 # encoding: [0x00,0x20,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: move $1, $1 # encoding: [0x21,0x08,0x20,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, 32767
|
|
|
|
# CHECK-BE: addiu $1, $zero, 32767 # encoding: [0x24,0x01,0x7f,0xff]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: addiu $1, $zero, 32767 # encoding: [0xff,0x7f,0x01,0x24]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw_reg: # CHECK-LABEL: usw_reg:
|
|
|
|
usw $8, 0($9)
|
|
|
|
# CHECK-BE: swl $8, 0($9) # encoding: [0xa9,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($9) # encoding: [0xb9,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: swl $8, 3($9) # encoding: [0x03,0x00,0x28,0xa9]
|
|
|
|
# CHECK-LE: swr $8, 0($9) # encoding: [0x00,0x00,0x28,0xb9]
|
|
|
|
|
|
|
|
usw $8, 2($9)
|
|
|
|
# CHECK-BE: swl $8, 2($9) # encoding: [0xa9,0x28,0x00,0x02]
|
|
|
|
# CHECK-BE: swr $8, 5($9) # encoding: [0xb9,0x28,0x00,0x05]
|
|
|
|
# CHECK-LE: swl $8, 5($9) # encoding: [0x05,0x00,0x28,0xa9]
|
|
|
|
# CHECK-LE: swr $8, 2($9) # encoding: [0x02,0x00,0x28,0xb9]
|
|
|
|
|
|
|
|
usw $8, 0x8000($9)
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, -0x8000($9)
|
|
|
|
# CHECK-BE: swl $8, -32768($9) # encoding: [0xa9,0x28,0x80,0x00]
|
|
|
|
# CHECK-BE: swr $8, -32765($9) # encoding: [0xb9,0x28,0x80,0x03]
|
|
|
|
# CHECK-LE: swl $8, -32765($9) # encoding: [0x03,0x80,0x28,0xa9]
|
|
|
|
# CHECK-LE: swr $8, -32768($9) # encoding: [0x00,0x80,0x28,0xb9]
|
|
|
|
|
|
|
|
usw $8, 0x10000($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, 0x18888($9)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, -32769($9)
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: addu $1, $1, $9 # encoding: [0x00,0x29,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $9 # encoding: [0x21,0x08,0x29,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, 32767($9)
|
|
|
|
# CHECK-BE: addiu $1, $9, 32767 # encoding: [0x25,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: addiu $1, $9, 32767 # encoding: [0xff,0x7f,0x21,0x25]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, 0($8)
|
|
|
|
# CHECK-BE: swl $8, 0($8) # encoding: [0xa9,0x08,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($8) # encoding: [0xb9,0x08,0x00,0x03]
|
|
|
|
# CHECK-LE: swl $8, 3($8) # encoding: [0x03,0x00,0x08,0xa9]
|
|
|
|
# CHECK-LE: swr $8, 0($8) # encoding: [0x00,0x00,0x08,0xb9]
|
|
|
|
|
|
|
|
usw $8, 2($8)
|
|
|
|
# CHECK-BE: swl $8, 2($8) # encoding: [0xa9,0x08,0x00,0x02]
|
|
|
|
# CHECK-BE: swr $8, 5($8) # encoding: [0xb9,0x08,0x00,0x05]
|
|
|
|
# CHECK-LE: swl $8, 5($8) # encoding: [0x05,0x00,0x08,0xa9]
|
|
|
|
# CHECK-LE: swr $8, 2($8) # encoding: [0x02,0x00,0x08,0xb9]
|
|
|
|
|
|
|
|
usw $8, 0x8000($8)
|
|
|
|
# CHECK-BE: ori $1, $zero, 32768 # encoding: [0x34,0x01,0x80,0x00]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: ori $1, $zero, 32768 # encoding: [0x00,0x80,0x01,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, -0x8000($8)
|
|
|
|
# CHECK-BE: swl $8, -32768($8) # encoding: [0xa9,0x08,0x80,0x00]
|
|
|
|
# CHECK-BE: swr $8, -32765($8) # encoding: [0xb9,0x08,0x80,0x03]
|
|
|
|
# CHECK-LE: swl $8, -32765($8) # encoding: [0x03,0x80,0x08,0xa9]
|
|
|
|
# CHECK-LE: swr $8, -32768($8) # encoding: [0x00,0x80,0x08,0xb9]
|
|
|
|
|
|
|
|
usw $8, 0x10000($8)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, 0x18888($8)
|
|
|
|
# CHECK-BE: lui $1, 1 # encoding: [0x3c,0x01,0x00,0x01]
|
|
|
|
# CHECK-BE: ori $1, $1, 34952 # encoding: [0x34,0x21,0x88,0x88]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 1 # encoding: [0x01,0x00,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 34952 # encoding: [0x88,0x88,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, -32769($8)
|
|
|
|
# CHECK-BE: lui $1, 65535 # encoding: [0x3c,0x01,0xff,0xff]
|
|
|
|
# CHECK-BE: ori $1, $1, 32767 # encoding: [0x34,0x21,0x7f,0xff]
|
|
|
|
# CHECK-BE: addu $1, $1, $8 # encoding: [0x00,0x28,0x08,0x21]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: lui $1, 65535 # encoding: [0xff,0xff,0x01,0x3c]
|
|
|
|
# CHECK-LE: ori $1, $1, 32767 # encoding: [0xff,0x7f,0x21,0x34]
|
|
|
|
# CHECK-LE: addu $1, $1, $8 # encoding: [0x21,0x08,0x28,0x00]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
|
|
|
usw $8, 32767($8)
|
|
|
|
# CHECK-BE: addiu $1, $8, 32767 # encoding: [0x25,0x01,0x7f,0xff]
|
|
|
|
# CHECK-BE: swl $8, 0($1) # encoding: [0xa8,0x28,0x00,0x00]
|
|
|
|
# CHECK-BE: swr $8, 3($1) # encoding: [0xb8,0x28,0x00,0x03]
|
|
|
|
# CHECK-LE: addiu $1, $8, 32767 # encoding: [0xff,0x7f,0x01,0x25]
|
|
|
|
# CHECK-LE: swl $8, 3($1) # encoding: [0x03,0x00,0x28,0xa8]
|
|
|
|
# CHECK-LE: swr $8, 0($1) # encoding: [0x00,0x00,0x28,0xb8]
|
|
|
|
|
[mips] [IAS] Fix LW with relative label operands.
Summary:
Previously, MCSymbolRefExpr::create() was called with a StringRef of the symbol
name, which it would then search for in the Symbols StringMap (from MCContext).
However, relative labels (which are temporary symbols) are apparently not stored
in the Symbols StringMap, so we end up creating a new {$,.L}tmp symbol
({$,.L}tmp00, {$,.L}tmp10 etc.) each time we create an MCSymbolRefExpr by
passing in the symbol name as a StringRef.
Fortunately, there is a version of MCSymbolRefExpr::create() which takes an
MCSymbol* and we already have an MCSymbol* at that point, so we can just pass
that in instead of the StringRef.
I also removed the local StringRef calls to MCSymbolRefExpr::create() from
expandMemInst(), as those cases can be handled by evaluateRelocExpr() anyway.
Reviewers: dsanders
Reviewed By: dsanders
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D9938
llvm-svn: 239897
2015-06-17 18:43:45 +08:00
|
|
|
1:
|
|
|
|
add $4, $4, $4
|