blob: d6c8658aab5ffb25ead8a8c24837daa4190d2aa8 [file] [log] [blame]
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +00001; Test that a sequence of constant indices are folded correctly
2; into the equivalent offset at compile-time.
3
4%MixedA = type { float, [15 x int], sbyte, float }
5
6%MixedB = type { float, %MixedA, float }
7
8%fmtArg = internal global [44 x sbyte] c"sqrt(2) = %g\0Aexp(1) = %g\0Api = %g\0Afive = %g\0A\00"; <[44 x sbyte]*> [#uses=1]
9
10implementation
11
12declare int "printf"(sbyte*, ...)
13
14int "main"()
15begin
16 %ScalarA = alloca %MixedA
17 %ScalarB = alloca %MixedB
18 %ArrayA = alloca %MixedA, uint 4
19 %ArrayB = alloca %MixedB, uint 3
20
21 store float 1.4142, %MixedA* %ScalarA, uint 0, ubyte 0
22 store float 2.7183, %MixedB* %ScalarB, uint 0, ubyte 1, ubyte 0
23
24 %fptrA = getelementptr %MixedA* %ArrayA, uint 1, ubyte 0
25 %fptrB = getelementptr %MixedB* %ArrayB, uint 2, ubyte 1, ubyte 0
26
27 store float 3.1415, float* %fptrA
28 store float 5.0, float* %fptrB
29
Vikram S. Adve7894d562002-08-04 20:53:14 +000030 ;; Test that a sequence of GEPs with constant indices are folded right
31 %fptrA1 = getelementptr %MixedA* %ArrayA, uint 3 ; &ArrayA[3]
32 %fptrA2 = getelementptr %MixedA* %fptrA1, uint 0, ubyte 1 ; &(*fptrA1).1
33 %fptrA3 = getelementptr [15 x int]* %fptrA2, uint 0, uint 8 ; &(*fptrA2)[8]
34 store int 5, int* %fptrA3 ; ArrayA[3].1[8] = 5
35
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000036 %sqrtTwo = load %MixedA* %ScalarA, uint 0, ubyte 0
37 %exp = load %MixedB* %ScalarB, uint 0, ubyte 1, ubyte 0
38 %pi = load %MixedA* %ArrayA, uint 1, ubyte 0
39 %five = load %MixedB* %ArrayB, uint 2, ubyte 1, ubyte 0
40
41 %dsqrtTwo = cast float %sqrtTwo to double
42 %dexp = cast float %exp to double
43 %dpi = cast float %pi to double
44 %dfive = cast float %five to double
45
46 %castFmt = getelementptr [44 x sbyte]* %fmtArg, uint 0, uint 0
47 call int (sbyte*, ...)* %printf(sbyte* %castFmt, double %dsqrtTwo, double %dexp, double %dpi, double %dfive)
48
49 ret int 0
50end