mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
cc12b285b6
This will currently accept the old number of bytes syntax, and convert it to a scalar. This should be removed in the near future (I think I converted all of the tests already, but likely missed a few). Not sure what the exact syntax and policy should be. We can continue printing the number of bytes for non-generic instructions to avoid test churn and only allow non-scalar types for generic instructions. This will currently print the LLT in parentheses, but accept parsing the existing integers and implicitly converting to scalar. The parentheses are a bit ugly, but the parser logic seems unable to deal without either parentheses or some keyword to indicate the start of a type.
38 lines
1.6 KiB
YAML
38 lines
1.6 KiB
YAML
# RUN: not --crash llc -march=x86 -o - %s -run-pass=none -verify-machineinstrs \
|
|
# RUN: 2>&1 | FileCheck %s
|
|
# REQUIRES: x86-registered-target
|
|
#
|
|
# Check that MachineVerifier catches corrupt operands where MO->isReg()
|
|
# returns true, but the descriptor says it should be an OPERAND_IMMEDIATE or
|
|
# OPERAND_PCREL. Conversely, if MO->isReg() (and MO->isFI()) returns false,
|
|
# check that not an OPERAND_REGISTER is expected.
|
|
|
|
# CHECK-LABEL: fun
|
|
|
|
# CHECK: *** Bad machine code: Expected a register operand. ***
|
|
# CHECK: - instruction: %1:gr32 = XOR32rm -1, %fixed-stack.1, 1, $noreg, 0, $noreg, implicit-def dead $eflags :: (load (s32) from %fixed-stack.1, align 8)
|
|
# CHECK: - operand 1: -1
|
|
|
|
# CHECK: *** Bad machine code: Expected a non-register operand. ***
|
|
# CHECK: - instruction: %2:gr32 = OR32ri %1:gr32(tied-def 0), %0:gr32, implicit-def dead $eflags
|
|
# CHECK: - operand 2: %0:gr32
|
|
|
|
|
|
name: fun
|
|
tracksRegLiveness: true
|
|
fixedStack:
|
|
- { id: 1, offset: 8, size: 4, alignment: 8, isImmutable: true }
|
|
- { id: 3, size: 4, alignment: 16, isImmutable: true }
|
|
body: |
|
|
bb.0:
|
|
%0:gr32 = MOV32rm %fixed-stack.3, 1, $noreg, 0, $noreg :: (load (s32) from %fixed-stack.3, align 16)
|
|
; Was: %1:gr32 = XOR32rm %0, %fixed-stack.1, 1, $noreg, 0, $noreg, implicit-def dead $eflags :: (load (s32) from %fixed-stack.1, align 8)
|
|
%1:gr32 = XOR32rm -1, %fixed-stack.1, 1, $noreg, 0, $noreg, implicit-def dead $eflags :: (load (s32) from %fixed-stack.1, align 8)
|
|
; Was: %2:gr32 = OR32ri %1, -256, implicit-def dead $eflags
|
|
%2:gr32 = OR32ri %1, %0, implicit-def dead $eflags
|
|
%3:gr32 = MOV32ri -1
|
|
$eax = COPY %2
|
|
$edx = COPY %3
|
|
RET 0, $eax, $edx
|
|
...
|