Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / AArch64 / GlobalISel / select-trunc.mir
blob1bc7795371a008215c86dab8b55335fefa592ad3
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=aarch64-- -run-pass=instruction-select -verify-machineinstrs %s -o - | FileCheck %s
4 --- |
5   target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
7   define void @trunc_s32_s64() { ret void }
8   define void @trunc_s8_s64() { ret void }
9   define void @trunc_s1_s32() { ret void }
10 ...
12 ---
13 name:            trunc_s32_s64
14 legalized:       true
15 regBankSelected: true
17 registers:
18   - { id: 0, class: gpr }
19   - { id: 1, class: gpr }
21 body:             |
22   bb.0:
23     liveins: $x0
25     ; CHECK-LABEL: name: trunc_s32_s64
26     ; CHECK: [[COPY:%[0-9]+]]:gpr64sp = COPY $x0
27     ; CHECK: [[COPY1:%[0-9]+]]:gpr32sp = COPY [[COPY]].sub_32
28     ; CHECK: $w0 = COPY [[COPY1]]
29     %0(s64) = COPY $x0
30     %1(s32) = G_TRUNC %0
31     $w0 = COPY %1(s32)
32 ...
34 ---
35 name:            trunc_s8_s64
36 legalized:       true
37 regBankSelected: true
39 registers:
40   - { id: 0, class: gpr }
41   - { id: 1, class: gpr }
43 body:             |
44   bb.0:
45     liveins: $x0
47     ; CHECK-LABEL: name: trunc_s8_s64
48     ; CHECK: [[COPY:%[0-9]+]]:gpr64 = COPY $x0
49     ; CHECK: [[COPY1:%[0-9]+]]:gpr32 = COPY [[COPY]].sub_32
50     ; CHECK: [[COPY2:%[0-9]+]]:gpr32all = COPY [[COPY1]]
51     ; CHECK: $w0 = COPY [[COPY2]]
52     %0(s64) = COPY $x0
53     %1(s8) = G_TRUNC %0
54     %2:gpr(s32) = G_ANYEXT %1
55     $w0 = COPY %2(s32)
56 ...
58 ---
59 name:            trunc_s1_s32
60 legalized:       true
61 regBankSelected: true
63 registers:
64   - { id: 0, class: gpr }
65   - { id: 1, class: gpr }
67 body:             |
68   bb.0:
69     liveins: $w0
71     ; CHECK-LABEL: name: trunc_s1_s32
72     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w0
73     ; CHECK: [[COPY2:%[0-9]+]]:gpr32all = COPY [[COPY]]
74     ; CHECK: $w0 = COPY [[COPY2]]
75     %0(s32) = COPY $w0
76     %1(s1) = G_TRUNC %0
77     %2:gpr(s32) = G_ANYEXT %1
78     $w0 = COPY %2(s32)
79 ...