mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
4186ef5531
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
25 lines
1.0 KiB
ArmAsm
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]
|