[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / AArch64 / immcost.ll
blob811fc7241957cec1c279522a038e9bbf7444ba68
1 ; RUN: llc -mtriple=aarch64-none-linux-gnu %s -o - -O1 -debug-only=consthoist 2>&1 | FileCheck %s
2 ; REQUIRES: asserts
4 declare void @g(i64)
6 ; Single ORR.
7 ; CHECK:     Function: f1
8 ; CHECK-NOT: Collect constant
9 define void @f1(i1 %cond) {
10 entry:
11   call void @g(i64 -3)
12   br i1 %cond, label %true, label %ret
14 true:
15   call void @g(i64 -3)
16   br label %ret
18 ret:
19   ret void
22 ; Constant is 0xBEEF000000000000, single MOVZ with shift.
23 ; CHECK:     Function: f2
24 ; CHECK-NOT: Collect constant
25 define void @f2(i1 %cond, i64 %p, i64 %q) {
26 entry:
27   %a = and i64 %p, 13758215386640154624
28   call void @g(i64 %a)
29   br i1 %cond, label %true, label %ret
31 true:
32   %b = and i64 %q, 13758215386640154624
33   call void @g(i64 %b)
34   br label %ret
36 ret:
37   ret void
40 ; CHECK:     Function: f3
41 ; CHECK:     Collect constant i64 4294967103 from   %a = and i64 %p, 4294967103 with cost 2
42 define void @f3(i1 %cond, i64 %p, i64 %q) {
43 entry:
44   %a = and i64 %p, 4294967103
45   call void @g(i64 %a)
46   br i1 %cond, label %true, label %ret
48 true:
49   %b = and i64 %q, 4294967103
50   call void @g(i64 %b)
51   br label %ret
53 ret:
54   ret void
57 ; CHECK:     Function: f4
58 ; Collect constant i64 -4688528683866062848 from   %a = and i64 %p, -4688528683866062848 with cost 2
59 define void @f4(i1 %cond, i64 %p, i64 %q) {
60 entry:
61   %a = and i64 %p, 13758215389843488768
62   call void @g(i64 %a)
63   br i1 %cond, label %true, label %ret
65 true:
66   %b = and i64 %q, 13758215389843488768
67   call void @g(i64 %b)
68   br label %ret
70 ret:
71   ret void
74 ; CHECK:     Function: f5
75 ; Collect constant i64 88994925642865 from   %a = and i64 %p, 88994925642865 with cost 3
76 define void @f5(i1 %cond, i64 %p, i64 %q) {
77 entry:
78   %a = and i64 %p, 88994925642865
79   call void @g(i64 %a)
80   br i1 %cond, label %true, label %ret
82 true:
83   %b = and i64 %q, 88994925642865
84   call void @g(i64 %b)
85   br label %ret
87 ret:
88   ret void
91 ; CHECK:     Function: f6
92 ; Collect constant i64 -4688439692143754127 from   %b = and i64 %q, -4688439692143754127 with cost 4
93 define void @f6(i1 %cond, i64 %p, i64 %q) {
94 entry:
95   %a = and i64 %p, 13758304381565797489
96   call void @g(i64 %a)
97   br i1 %cond, label %true, label %ret
99 true:
100   %b = and i64 %q, 13758304381565797489
101   call void @g(i64 %b)
102   br label %ret
104 ret:
105   ret void