[clang][NFC] simplify the unset check in `ParseLabeledStatement` (#117430)
[llvm-project.git] / llvm / test / CodeGen / AArch64 / GlobalISel / regbank-inlineasm.mir
blobf1d1b691fe1aa5cb9351ebadcdd75ecd81e76585
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=aarch64-unknown-unknown -verify-machineinstrs -O0 -run-pass=regbankselect %s -o - | FileCheck %s
4 ---
5 name:            inlineasm_memory_clobber
6 alignment:       4
7 legalized:       true
8 tracksRegLiveness: true
9 body:             |
10   bb.1:
11     ; CHECK-LABEL: name: inlineasm_memory_clobber
12     ; CHECK: INLINEASM &"", 25 /* sideeffect mayload maystore attdialect */
13     ; CHECK-NEXT: INLINEASM &"", 1 /* sideeffect attdialect */
14     ; CHECK-NEXT: RET_ReallyLR
15     INLINEASM &"", 25
16     INLINEASM &"", 1
17     RET_ReallyLR
18 ...
20 ---
21 name:            inlineasm_register_clobber
22 alignment:       4
23 legalized:       true
24 tracksRegLiveness: true
25 body:             |
26   bb.1:
27     ; CHECK-LABEL: name: inlineasm_register_clobber
28     ; CHECK: INLINEASM &"", 25 /* sideeffect mayload maystore attdialect */, 12 /* clobber */, implicit-def early-clobber $d0
29     ; CHECK-NEXT: RET_ReallyLR
30     INLINEASM &"", 25, 12, implicit-def early-clobber $d0
31     RET_ReallyLR
32 ...
34 ---
35 name:            inlineasm_phys_reg_output
36 alignment:       4
37 legalized:       true
38 tracksRegLiveness: true
39 body:             |
40   bb.1:
41     ; CHECK-LABEL: name: inlineasm_phys_reg_output
42     ; CHECK: INLINEASM &"mov ${0:w}, 7", 0 /* attdialect */, 10 /* regdef */, implicit-def $w0
43     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gpr(s32) = COPY $w0
44     ; CHECK-NEXT: $w0 = COPY [[COPY]](s32)
45     ; CHECK-NEXT: RET_ReallyLR implicit $w0
46     INLINEASM &"mov ${0:w}, 7", 0 /* attdialect */, 10 /* regdef */, implicit-def $w0
47     %0:_(s32) = COPY $w0
48     $w0 = COPY %0(s32)
49     RET_ReallyLR implicit $w0
50 ...
52 ---
53 name:            inlineasm_virt_reg_output
54 alignment:       4
55 legalized:       true
56 tracksRegLiveness: true
57 body:             |
58   bb.1:
59     ; CHECK-LABEL: name: inlineasm_virt_reg_output
60     ; CHECK: INLINEASM &"mov ${0:w}, 7", 0 /* attdialect */, 2490378 /* regdef:GPR32common */, def %0
61     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gpr(s32) = COPY %0
62     ; CHECK-NEXT: $w0 = COPY [[COPY]](s32)
63     ; CHECK-NEXT: RET_ReallyLR implicit $w0
64     INLINEASM &"mov ${0:w}, 7", 0 /* attdialect */, 2490378 /* regdef:GPR32common */, def %0:gpr32common
65     %1:_(s32) = COPY %0
66     $w0 = COPY %1(s32)
67     RET_ReallyLR implicit $w0
68 ...
70 ---
71 name:            inlineasm_virt_mixed_types
72 alignment:       4
73 legalized:       true
74 tracksRegLiveness: true
75 body:             |
76   bb.1:
77     ; CHECK-LABEL: name: inlineasm_virt_mixed_types
78     ; CHECK: INLINEASM &"mov $0, #0; mov $1, #0", 0 /* attdialect */, 2490378 /* regdef:GPR32common */, def %0, 3342346 /* regdef:FPR64 */, def %1
79     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gpr(s32) = COPY %0
80     ; CHECK-NEXT: [[COPY1:%[0-9]+]]:fpr(s64) = COPY %1
81     ; CHECK-NEXT: $d0 = COPY [[COPY1]](s64)
82     ; CHECK-NEXT: RET_ReallyLR implicit $d0
83     INLINEASM &"mov $0, #0; mov $1, #0", 0 /* attdialect */, 2490378 /* regdef:GPR32common */, def %0:gpr32common, 3342346 /* regdef:FPR64 */, def %1:fpr64
84     %3:_(s32) = COPY %0
85     %4:_(s64) = COPY %1
86     $d0 = COPY %4(s64)
87     RET_ReallyLR implicit $d0
88 ...