diff options
Diffstat (limited to 'test/MC/Mips/micromips-jump-instructions.s')
-rw-r--r-- | test/MC/Mips/micromips-jump-instructions.s | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/MC/Mips/micromips-jump-instructions.s b/test/MC/Mips/micromips-jump-instructions.s new file mode 100644 index 0000000000000..6f571b6879113 --- /dev/null +++ b/test/MC/Mips/micromips-jump-instructions.s @@ -0,0 +1,40 @@ +# RUN: llvm-mc %s -triple=mipsel -show-encoding -mattr=micromips \ +# RUN: | FileCheck %s -check-prefix=CHECK-EL +# RUN: llvm-mc %s -triple=mips -show-encoding -mattr=micromips \ +# RUN: | FileCheck %s -check-prefix=CHECK-EB +# Check that the assembler can handle the documented syntax +# for jump and branch instructions. +#------------------------------------------------------------------------------ +# Jump instructions +#------------------------------------------------------------------------------ +# Little endian +#------------------------------------------------------------------------------ +# CHECK-EL: j 1328 # encoding: [0x00,0xd4,0x98,0x02] +# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00] +# CHECK-EL: jal 1328 # encoding: [0x00,0xf4,0x98,0x02] +# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00] +# CHECK-EL: jalr $6 # encoding: [0xe6,0x03,0x3c,0x0f] +# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00] +# CHECK-EL: jr $7 # encoding: [0x07,0x00,0x3c,0x0f] +# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00] +# CHECK-EL: jr $7 # encoding: [0x07,0x00,0x3c,0x0f] +# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00] +#------------------------------------------------------------------------------ +# Big endian +#------------------------------------------------------------------------------ +# CHECK-EB: j 1328 # encoding: [0xd4,0x00,0x02,0x98] +# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00] +# CHECK-EB: jal 1328 # encoding: [0xf4,0x00,0x02,0x98] +# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00] +# CHECK-EB: jalr $6 # encoding: [0x03,0xe6,0x0f,0x3c] +# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00] +# CHECK-EB: jr $7 # encoding: [0x00,0x07,0x0f,0x3c] +# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00] +# CHECK-EB: jr $7 # encoding: [0x00,0x07,0x0f,0x3c] +# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00] + + j 1328 + jal 1328 + jalr $6 + jr $7 + j $7 |