[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / GlobalISel / select-leaf-constant.mir
blob29161de91f03eed7df06b5471ce17876a73d3ca0
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=i586-linux-gnu -mcpu=haswell -mattr=-slow-incdec -run-pass=instruction-select %s -o - | FileCheck %s --check-prefix=CHECK
4 # This is necessary to test that attribute-based rule predicates work and that
5 # they properly reset between functions.
7 --- |
8   define i32 @const_i32_1() {
9     ret i32 1
10   }
12   define i32 @const_i32_1_optsize() #0 {
13     ret i32 1
14   }
16   define i32 @const_i32_1b() {
17     ret i32 1
18   }
20   define i32 @const_i32_1_optsizeb() #0 {
21     ret i32 1
22   }
24   attributes #0 = { optsize }
25 ...
26 ---
27 name:            const_i32_1
28 legalized:       true
29 regBankSelected: true
30 selected:        false
31 registers:
32   - { id: 0, class: gpr }
33 body:             |
34   bb.1 (%ir-block.0):
35     ; CHECK-LABEL: name: const_i32_1
36     ; CHECK: [[MOV32ri:%[0-9]+]]:gr32 = MOV32ri 1
37     ; CHECK: $eax = COPY [[MOV32ri]]
38     ; CHECK: RET 0, implicit $eax
39     %0(s32) = G_CONSTANT i32 1
40     $eax = COPY %0(s32)
41     RET 0, implicit $eax
42 ...
43 ---
44 name:            const_i32_1_optsize
45 legalized:       true
46 regBankSelected: true
47 selected:        false
48 registers:
49   - { id: 0, class: gpr }
50 body:             |
51   bb.1 (%ir-block.0):
52     ; CHECK-LABEL: name: const_i32_1_optsize
53     ; CHECK: [[MOV32r1_:%[0-9]+]]:gr32 = MOV32r1 implicit-def $eflags
54     ; CHECK: $eax = COPY [[MOV32r1_]]
55     ; CHECK: RET 0, implicit $eax
56     %0(s32) = G_CONSTANT i32 1
57     $eax = COPY %0(s32)
58     RET 0, implicit $eax
59 ...
60 ---
61 name:            const_i32_1b
62 legalized:       true
63 regBankSelected: true
64 selected:        false
65 registers:
66   - { id: 0, class: gpr }
67 body:             |
68   bb.1 (%ir-block.0):
69     ; CHECK-LABEL: name: const_i32_1b
70     ; CHECK: [[MOV32ri:%[0-9]+]]:gr32 = MOV32ri 1
71     ; CHECK: $eax = COPY [[MOV32ri]]
72     ; CHECK: RET 0, implicit $eax
73     %0(s32) = G_CONSTANT i32 1
74     $eax = COPY %0(s32)
75     RET 0, implicit $eax
76 ...
77 ---
78 name:            const_i32_1_optsizeb
79 legalized:       true
80 regBankSelected: true
81 selected:        false
82 registers:
83   - { id: 0, class: gpr }
84 body:             |
85   bb.1 (%ir-block.0):
86     ; CHECK-LABEL: name: const_i32_1_optsizeb
87     ; CHECK: [[MOV32r1_:%[0-9]+]]:gr32 = MOV32r1 implicit-def $eflags
88     ; CHECK: $eax = COPY [[MOV32r1_]]
89     ; CHECK: RET 0, implicit $eax
90     %0(s32) = G_CONSTANT i32 1
91     $eax = COPY %0(s32)
92     RET 0, implicit $eax
93 ...