blob: 5976e5f88d42e2293e5432775b449b15ddf6b8ff [file] [log] [blame]
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +00001%AConst = constant int 123
2
3implementation
4
5; Test setting values of different constants in registers.
6;
7void "testConsts"(int %N, float %X)
8begin
9; <label>:0
10 %a = add int %N, 1 ; 1 should be put in immed field
11 %a2= add int %N, 12345678 ; constant has to be loaded
12 %b = add short 4, 3 ; one of the operands shd be immed
13 %c = add float %X, 0.0 ; will this be optimzzed?
14 %d = add float %X, 3.1415 ; constant has to be loaded
15 %f = add uint 4294967295, 10 ; result shd be 9 (not in immed fld)
16 %g = add ushort 20, 65535 ; result shd be 19 (65536 in immed fld)
17 %g = add ushort 65535, 30 ; result shd be 29 (not in immed fld)
18 %h = add ubyte 40, 255 ; result shd be 39 (255 in immed fld)
19 %h = add ubyte 255, 50 ; result shd be 49 (not in immed fld)
20
21 ret void
22end
23
24; A SetCC whose result is used should produce instructions to
25; compute the boolean value in a register. One whose result
26; is unused will only generate the condition code but not
27; the boolean result.
28;
29void "unusedBool"(int * %x, int * %y)
30begin
31; <label>:0 ; [#uses=0]
32 seteq int * %x, %y ; <bool>:0 [#uses=1]
Chris Lattnerd0224712002-08-14 19:29:38 +000033 xor bool %0, true ; <bool>:1 [#uses=0]
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000034 setne int * %x, %y ; <bool>:2 [#uses=0]
35 ret void
36end
37
38; A constant argument to a Phi produces a Cast instruction in the
39; corresponding predecessor basic block. This checks a few things:
40; -- phi arguments coming from the bottom of the same basic block
41; (they should not be forward substituted in the machine code!)
42; -- code generation for casts of various types
43; -- use of immediate fields for integral constants of different sizes
44; -- branch on a constant condition
45;
46void "mergeConstants"(int * %x, int * %y)
47begin
48; <label>:0
49 br label %Top
50Top:
51 phi int [ 0, %0 ], [ 1, %Top ], [ 524288, %Next ]
52 phi float [ 0.0, %0 ], [ 1.0, %Top ], [ 2.0, %Next ]
53 phi double [ 0.5, %0 ], [ 1.5, %Top ], [ 2.5, %Next ]
54 phi bool [ true, %0 ], [ false,%Top ], [ true, %Next ]
55 br bool true, label %Top, label %Next
56Next:
57 br label %Top
58end
59
60
61
62; A constant argument to a cast used only once should be forward substituted
63; and loaded where needed, which happens is:
64; -- User of cast has no immediate field
65; -- User of cast has immediate field but constant is too large to fit
66; or constant is not resolved until later (e.g., global address)
67; -- User of cast uses it as a call arg. or return value so it is an implicit
68; use but has to be loaded into a virtual register so that the reg.
69; allocator can allocate the appropriate phys. reg. for it
70;
71int* "castconst"(float)
72begin
73; <label>:0
74 %castbig = cast ulong 99999999 to int
75 %castsmall = cast ulong 1 to int
76 %usebig = add int %castbig, %castsmall
77
78 %castglob = cast int* %AConst to long*
79 %dummyl = load long* %castglob
80
81 %castnull = cast ulong 0 to int*
82 ret int* %castnull
83end
84
85
86
87; Test branch-on-comparison-with-zero, in two ways:
88; 1. can be folded
89; 2. cannot be folded because result of comparison is used twice
90;
Chris Lattner92ae9012002-08-01 20:48:21 +000091void "testbool"(int %A, int %B) {
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000092 br label %Top
93Top:
Chris Lattner92ae9012002-08-01 20:48:21 +000094 %D = add int %A, %B
95 %E = sub int %D, -4
96 %C = setle int %E, 0
97 br bool %C, label %retlbl, label %loop
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000098
99loop:
Chris Lattner92ae9012002-08-01 20:48:21 +0000100 %F = add int %A, %B
101 %G = sub int %D, -4
102 %D = setle int %G, 0
Chris Lattnerd0224712002-08-14 19:29:38 +0000103 %E = xor bool %D, true
Chris Lattner92ae9012002-08-01 20:48:21 +0000104 br bool %E, label %loop, label %Top
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000105
106retlbl:
107 ret void
108end
109
110
111; Test branch on floating point comparison
112;
113void "testfloatbool"(float %x, float %y) ; Def %0, %1 - float
114begin
115; <label>:0
116 br label %Top
117Top:
118 %p = add float %x, %y ; Def 2 - float
119 %z = sub float %x, %y ; Def 3 - float
120 %b = setle float %p, %z ; Def 0 - bool
Chris Lattnerd0224712002-08-14 19:29:38 +0000121 %c = xor bool %b, true ; Def 1 - bool
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000122 br bool %b, label %Top, label %goon
123goon:
124 ret void
125end
126
127
128; Test cases where an LLVM instruction requires no machine
129; instructions (e.g., cast int* to long). But there are 2 cases:
130; 1. If the result register has only a single use and the use is in the
131; same basic block, the operand will be copy-propagated during
132; instruction selection.
133; 2. If the result register has multiple uses or is in a different
134; basic block, it cannot (or will not) be copy propagated during
135; instruction selection. It will generate a
136; copy instruction (add-with-0), but this copy should get coalesced
137; away by the register allocator.
138;
139int "checkForward"(int %N, int* %A)
140begin
141
142bb2: ;;<label>
143 %reg114 = shl int %N, ubyte 2 ;;
144 %cast115 = cast int %reg114 to int* ;; reg114 will be propagated
145 %reg116 = add int* %A, %cast115 ;;
146 %reg118 = load int* %reg116 ;;
147 %cast117 = cast int %reg118 to long ;; reg118 will be copied 'cos
148 %reg159 = add long 1234567, %cast117 ;; cast117 has 2 uses, here
149 %reg160 = add long 7654321, %cast117 ;; and here.
Chris Lattner92ae9012002-08-01 20:48:21 +0000150 ret int 0
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +0000151end
Vikram S. Adve0f63e222002-08-15 14:09:56 +0000152
153
154; Test case for unary NOT operation constructed from XOR.
155;
156void "checkNot"(bool %b, int %i)
157begin
158 %notB = xor bool %b, true
159 %notI = xor int %i, -1
160 %F = setge int %notI, 100
161 %J = add int %i, %i
162 %andNotB = and bool %F, %notB ;; should get folded with notB
163 %andNotI = and int %J, %notI ;; should get folded with notI
164
165 %notB2 = xor bool true, %b ;; should become XNOR
166 %notI2 = xor int -1, %i ;; should become XNOR
167
168 ret void
169end