1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/MC/Mips/macro-sgt.s
Simon Atanasyan 4186ef5531 [mips] Implement sgt/sgtu pseudo instructions with immediate operand
The `sgt/sgtu Dst, Src1, Src2/Imm` pseudo instructions set register
`Dst` to 1 if register `Src1` is greater than `Src2/Imm` and to 0 otherwise.

Differential Revision: https://reviews.llvm.org/D64313

llvm-svn: 365475
2019-07-09 12:55:42 +00:00

25 lines
1.0 KiB
ArmAsm

# RUN: llvm-mc -arch=mips -show-encoding -mcpu=mips1 < %s | FileCheck %s
# RUN: llvm-mc -arch=mips -show-encoding -mcpu=mips64 < %s | FileCheck %s
sgt $4, $5
# CHECK: slt $4, $5, $4 # encoding: [0x00,0xa4,0x20,0x2a]
sgt $4, $5, $6
# CHECK: slt $4, $6, $5 # encoding: [0x00,0xc5,0x20,0x2a]
sgt $4, $5, 16
# CHECK: addiu $4, $zero, 16 # encoding: [0x24,0x04,0x00,0x10]
# CHECK: slt $4, $4, $5 # encoding: [0x00,0x85,0x20,0x2a]
sgtu $4, $5
# CHECK: sltu $4, $5, $4 # encoding: [0x00,0xa4,0x20,0x2b]
sgtu $4, $5, $6
# CHECK: sltu $4, $6, $5 # encoding: [0x00,0xc5,0x20,0x2b]
sgtu $4, $5, 16
# CHECK: addiu $4, $zero, 16 # encoding: [0x24,0x04,0x00,0x10]
# CHECK: sltu $4, $4, $5 # encoding: [0x00,0x85,0x20,0x2b]
sgt $4, 16
# CHECK: addiu $1, $zero, 16 # encoding: [0x24,0x01,0x00,0x10]
# CHECK: slt $4, $1, $4 # encoding: [0x00,0x24,0x20,0x2a]
sgtu $4, 16
# CHECK: addiu $1, $zero, 16 # encoding: [0x24,0x01,0x00,0x10]
# CHECK: sltu $4, $1, $4 # encoding: [0x00,0x24,0x20,0x2b]