blob: 7e1a10d97ec92a9b25a2c0f5271f0409c9c5619c [file] [log] [blame]
Tanya Lattner2393a242004-11-06 23:08:26 +00001; RUN: llvm-as -f %s -o - | llc
2
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +00003%AConst = constant int 123
4
Vikram S. Advef2899112002-10-13 00:44:00 +00005%Domain = type { sbyte*, int, int*, int, int, int*, %Domain* }
6
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +00007implementation
8
9; Test setting values of different constants in registers.
10;
11void "testConsts"(int %N, float %X)
12begin
13; <label>:0
14 %a = add int %N, 1 ; 1 should be put in immed field
Brian Gaeke3d55eda2003-11-22 06:18:35 +000015 %i = add int %N, 12345678 ; constant has to be loaded
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000016 %b = add short 4, 3 ; one of the operands shd be immed
17 %c = add float %X, 0.0 ; will this be optimzzed?
18 %d = add float %X, 3.1415 ; constant has to be loaded
19 %f = add uint 4294967295, 10 ; result shd be 9 (not in immed fld)
20 %g = add ushort 20, 65535 ; result shd be 19 (65536 in immed fld)
Brian Gaeke3d55eda2003-11-22 06:18:35 +000021 %j = add ushort 65535, 30 ; result shd be 29 (not in immed fld)
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000022 %h = add ubyte 40, 255 ; result shd be 39 (255 in immed fld)
Brian Gaeke3d55eda2003-11-22 06:18:35 +000023 %k = add ubyte 255, 50 ; result shd be 49 (not in immed fld)
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000024
25 ret void
26end
27
28; A SetCC whose result is used should produce instructions to
29; compute the boolean value in a register. One whose result
30; is unused will only generate the condition code but not
31; the boolean result.
32;
33void "unusedBool"(int * %x, int * %y)
34begin
35; <label>:0 ; [#uses=0]
36 seteq int * %x, %y ; <bool>:0 [#uses=1]
Chris Lattnerd0224712002-08-14 19:29:38 +000037 xor bool %0, true ; <bool>:1 [#uses=0]
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000038 setne int * %x, %y ; <bool>:2 [#uses=0]
39 ret void
40end
41
42; A constant argument to a Phi produces a Cast instruction in the
43; corresponding predecessor basic block. This checks a few things:
44; -- phi arguments coming from the bottom of the same basic block
45; (they should not be forward substituted in the machine code!)
46; -- code generation for casts of various types
47; -- use of immediate fields for integral constants of different sizes
48; -- branch on a constant condition
49;
50void "mergeConstants"(int * %x, int * %y)
51begin
52; <label>:0
53 br label %Top
54Top:
55 phi int [ 0, %0 ], [ 1, %Top ], [ 524288, %Next ]
56 phi float [ 0.0, %0 ], [ 1.0, %Top ], [ 2.0, %Next ]
57 phi double [ 0.5, %0 ], [ 1.5, %Top ], [ 2.5, %Next ]
58 phi bool [ true, %0 ], [ false,%Top ], [ true, %Next ]
59 br bool true, label %Top, label %Next
60Next:
61 br label %Top
62end
63
64
65
66; A constant argument to a cast used only once should be forward substituted
67; and loaded where needed, which happens is:
68; -- User of cast has no immediate field
69; -- User of cast has immediate field but constant is too large to fit
70; or constant is not resolved until later (e.g., global address)
71; -- User of cast uses it as a call arg. or return value so it is an implicit
72; use but has to be loaded into a virtual register so that the reg.
73; allocator can allocate the appropriate phys. reg. for it
74;
75int* "castconst"(float)
76begin
77; <label>:0
78 %castbig = cast ulong 99999999 to int
79 %castsmall = cast ulong 1 to int
80 %usebig = add int %castbig, %castsmall
81
82 %castglob = cast int* %AConst to long*
83 %dummyl = load long* %castglob
84
85 %castnull = cast ulong 0 to int*
86 ret int* %castnull
87end
88
89
90
91; Test branch-on-comparison-with-zero, in two ways:
92; 1. can be folded
93; 2. cannot be folded because result of comparison is used twice
94;
Chris Lattner92ae9012002-08-01 20:48:21 +000095void "testbool"(int %A, int %B) {
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000096 br label %Top
97Top:
Chris Lattner92ae9012002-08-01 20:48:21 +000098 %D = add int %A, %B
99 %E = sub int %D, -4
100 %C = setle int %E, 0
101 br bool %C, label %retlbl, label %loop
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000102
103loop:
Chris Lattner92ae9012002-08-01 20:48:21 +0000104 %F = add int %A, %B
105 %G = sub int %D, -4
106 %D = setle int %G, 0
Chris Lattnerd0224712002-08-14 19:29:38 +0000107 %E = xor bool %D, true
Chris Lattner92ae9012002-08-01 20:48:21 +0000108 br bool %E, label %loop, label %Top
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000109
110retlbl:
111 ret void
112end
113
114
Vikram S. Adveddd57512002-08-22 03:05:13 +0000115;; Test use of a boolean result in cast operations.
116;; Requires converting a condition code result into a 0/1 value in a reg.
117;;
118implementation
119
120int %castbool(int %A, int %B) {
121bb0: ; [#uses=0]
122 %cond213 = setlt int %A, %B ; <bool> [#uses=1]
123 %cast110 = cast bool %cond213 to ubyte ; <ubyte> [#uses=1]
124 %cast109 = cast ubyte %cast110 to int ; <int> [#uses=1]
125 ret int %cast109
126}
127
128
129;; Test use of a boolean result in arithmetic and logical operations.
130;; Requires converting a condition code result into a 0/1 value in a reg.
131;;
132bool %boolexpr(bool %b, int %N) {
133 %b2 = setge int %N, 0
134 %b3 = and bool %b, %b2
135 ret bool %b3
136}
137
138
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000139; Test branch on floating point comparison
140;
141void "testfloatbool"(float %x, float %y) ; Def %0, %1 - float
142begin
143; <label>:0
144 br label %Top
145Top:
146 %p = add float %x, %y ; Def 2 - float
147 %z = sub float %x, %y ; Def 3 - float
148 %b = setle float %p, %z ; Def 0 - bool
Chris Lattnerd0224712002-08-14 19:29:38 +0000149 %c = xor bool %b, true ; Def 1 - bool
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000150 br bool %b, label %Top, label %goon
151goon:
152 ret void
153end
154
155
156; Test cases where an LLVM instruction requires no machine
157; instructions (e.g., cast int* to long). But there are 2 cases:
158; 1. If the result register has only a single use and the use is in the
159; same basic block, the operand will be copy-propagated during
160; instruction selection.
161; 2. If the result register has multiple uses or is in a different
162; basic block, it cannot (or will not) be copy propagated during
163; instruction selection. It will generate a
164; copy instruction (add-with-0), but this copy should get coalesced
165; away by the register allocator.
166;
167int "checkForward"(int %N, int* %A)
168begin
169
170bb2: ;;<label>
171 %reg114 = shl int %N, ubyte 2 ;;
Vikram S. Adveba3b3e82002-09-20 00:57:37 +0000172 %cast115 = cast int %reg114 to long ;; reg114 will be propagated
173 %cast116 = cast int* %A to long ;; %A will be propagated
174 %reg116 = add long %cast116, %cast115 ;;
175 %castPtr = cast long %reg116 to int* ;; %A will be propagated
176 %reg118 = load int* %castPtr ;;
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000177 %cast117 = cast int %reg118 to long ;; reg118 will be copied 'cos
178 %reg159 = add long 1234567, %cast117 ;; cast117 has 2 uses, here
179 %reg160 = add long 7654321, %cast117 ;; and here.
Chris Lattner92ae9012002-08-01 20:48:21 +0000180 ret int 0
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000181end
Vikram S. Adve0f63e222002-08-15 14:09:56 +0000182
183
184; Test case for unary NOT operation constructed from XOR.
185;
186void "checkNot"(bool %b, int %i)
187begin
188 %notB = xor bool %b, true
189 %notI = xor int %i, -1
190 %F = setge int %notI, 100
191 %J = add int %i, %i
192 %andNotB = and bool %F, %notB ;; should get folded with notB
193 %andNotI = and int %J, %notI ;; should get folded with notI
194
195 %notB2 = xor bool true, %b ;; should become XNOR
196 %notI2 = xor int -1, %i ;; should become XNOR
197
198 ret void
199end
Vikram S. Advef2899112002-10-13 00:44:00 +0000200
201
202; Test case for folding getelementptr into a load/store
203;
204int "checkFoldGEP"(%Domain* %D, long %idx)
205begin
Chris Lattner1fbaa0a2003-01-15 18:06:37 +0000206 %reg841 = getelementptr %Domain* %D, long 0, ubyte 1
Vikram S. Advef2899112002-10-13 00:44:00 +0000207 %reg820 = load int* %reg841
208 ret int %reg820
209end