diff options
Diffstat (limited to 'test/MC/Disassembler/ARM/basic-arm-instructions-v8.txt')
-rw-r--r-- | test/MC/Disassembler/ARM/basic-arm-instructions-v8.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/MC/Disassembler/ARM/basic-arm-instructions-v8.txt b/test/MC/Disassembler/ARM/basic-arm-instructions-v8.txt index 454b394..d9286bf 100644 --- a/test/MC/Disassembler/ARM/basic-arm-instructions-v8.txt +++ b/test/MC/Disassembler/ARM/basic-arm-instructions-v8.txt @@ -21,3 +21,38 @@ 0x05 0xf0 0x20 0xe3 # CHECK: sevl + + +# These are the only coprocessor instructions that remain defined in ARMv8 +# (The operations on p10/p11 disassemble into FP/NEON instructions) + +0x10 0x0e 0x00 0xee +# CHECK: mcr p14 + +0x10 0x0f 0x00 0xee +# CHECK: mcr p15 + +0x10 0x0e 0x10 0xee +# CHECK: mrc p14 + +0x10 0x0f 0x10 0xee +# CHECK: mrc p15 + +0x00 0x0e 0x40 0xec +# CHECK: mcrr p14 + +0x00 0x0f 0x40 0xec +# CHECK: mcrr p15 + +0x00 0x0e 0x50 0xec +# CHECK: mrrc p14 + +0x00 0x0f 0x50 0xec +# CHECK: mrrc p15 + +0x00 0x0e 0x80 0xec +# CHECK: stc p14 + +0x00 0x0e 0x90 0xec +# CHECK: ldc p14 + |