reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
# 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]