[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / AArch64 / GlobalISel / legalize-inttoptr-xfail-2.mir
blob0b5b7b440f292c642246d613e755c753559062bb
1 # RUN: not llc -mtriple=aarch64-- -run-pass=legalizer %s -o - 2>&1 | FileCheck %s
2 # REQUIRES: asserts
4 # This is to demonstrate what kind of bugs we're missing w/o some kind
5 # of validation for LegalizerInfo: G_INTTOPTR could only be legal /
6 # could be legalized if its destination operand has a pointer type and
7 # its source - a scalar type of an appropriate size. This test meets
8 # the requirements for type index 0 (the pointer) and LLT-size
9 # requirements for type index 1 (64 bits for AArch64), but has a
10 # non-scalar (vector) type for type index 1. The Legalizer is expected
11 # to fail on it with an appropriate error message. Prior to
12 # LegalizerInfo::verify AArch64 legalizer had a subtle bug in its
13 # definition that caused it to accept the following MIR as legal.
14 # Namely, it checked that type index 0 is either s64 or p0 and
15 # implicitly declared any type for type index 1 as legal (as soon as
16 # its size is 64 bits). As LegalizerInfo::verify asserts on such a
17 # definition due to type index 1 not being covered by a specific
18 # action (not just `unsupportedIf`) it forces to review the definition
19 # and fix the mistake: check that type index 0 is p0 and type index 1
20 # is s64.
22 # CHECK: Bad machine code: operand types must be all-vector or all-scalar
23 # CHECK: LLVM ERROR: Found 1 machine code errors.
25 ---
26 name:            broken
27 alignment:       4
28 tracksRegLiveness: true
29 registers:
30   - { id: 0, class: _ }
31   - { id: 1, class: _ }
32 body:             |
33   bb.1:
34     liveins: $d0
36     %0:_(<4 x s16>) = COPY $d0
37     %1:_(p0) = G_INTTOPTR %0(<4 x s16>)
38     $x0 = COPY %1(p0)
39     RET_ReallyLR implicit $x0
41 ...