mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
24ba078dcd
The in, out, and sbi/cbi family of instructions seem to require a custom decoder. I'm not exactly sure why and would prefer to convince TableGen to provide the correct decoders for these, but I can't seem to convince it to do so. They simply disassemble without any operands. Differential Revision: https://reviews.llvm.org/D74049
37 lines
1.1 KiB
ArmAsm
37 lines
1.1 KiB
ArmAsm
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s
|
|
; RUN: llvm-mc -filetype=obj -triple avr < %s | llvm-objdump -d - | FileCheck -check-prefix=CHECK-INST %s
|
|
|
|
|
|
foo:
|
|
|
|
out 4, r2
|
|
out 6, r9
|
|
out 32, r5
|
|
out 0, r0
|
|
out 0, r31
|
|
out 63, r0
|
|
out 63, r31
|
|
|
|
out bar-8, r29
|
|
|
|
; CHECK: out 4, r2 ; encoding: [0x24,0xb8]
|
|
; CHECK: out 6, r9 ; encoding: [0x96,0xb8]
|
|
; CHECK: out 32, r5 ; encoding: [0x50,0xbc]
|
|
; CHECK: out 0, r0 ; encoding: [0x00,0xb8]
|
|
; CHECK: out 0, r31 ; encoding: [0xf0,0xb9]
|
|
; CHECK: out 63, r0 ; encoding: [0x0f,0xbe]
|
|
; CHECK: out 63, r31 ; encoding: [0xff,0xbf]
|
|
|
|
; CHECK: out bar-8, r29 ; encoding: [0xd0'A',0xb9'A']
|
|
; CHECK: ; fixup A - offset: 0, value: bar-8, kind: fixup_port6
|
|
|
|
; CHECK-INST: out 4, r2
|
|
; CHECK-INST: out 6, r9
|
|
; CHECK-INST: out 32, r5
|
|
; CHECK-INST: out 0, r0
|
|
; CHECK-INST: out 0, r31
|
|
; CHECK-INST: out 63, r0
|
|
; CHECK-INST: out 63, r31
|
|
|
|
; CHECK-INST: out 0, r29
|