blob: 3ca3ee8599b0d11a9cab4771e66cc0ac1b55e071 [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
Chris Lattner236c4a32002-08-21 22:44:39 +000020
21 %I1 = getelementptr %MixedA* %ScalarA, uint 0, ubyte 0
22 store float 1.4142, float *%I1
23 %I2 = getelementptr %MixedB* %ScalarB, uint 0, ubyte 1, ubyte 0
24 store float 2.7183, float *%I2
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000025
26 %fptrA = getelementptr %MixedA* %ArrayA, uint 1, ubyte 0
27 %fptrB = getelementptr %MixedB* %ArrayB, uint 2, ubyte 1, ubyte 0
28
29 store float 3.1415, float* %fptrA
30 store float 5.0, float* %fptrB
31
Vikram S. Adve7894d562002-08-04 20:53:14 +000032 ;; Test that a sequence of GEPs with constant indices are folded right
33 %fptrA1 = getelementptr %MixedA* %ArrayA, uint 3 ; &ArrayA[3]
34 %fptrA2 = getelementptr %MixedA* %fptrA1, uint 0, ubyte 1 ; &(*fptrA1).1
35 %fptrA3 = getelementptr [15 x int]* %fptrA2, uint 0, uint 8 ; &(*fptrA2)[8]
36 store int 5, int* %fptrA3 ; ArrayA[3].1[8] = 5
37
Chris Lattner236c4a32002-08-21 22:44:39 +000038 %sqrtTwo = load float *%I1
39 %exp = load float *%I2
40 %I3 = getelementptr %MixedA* %ArrayA, uint 1, ubyte 0
41 %pi = load float* %I3
42 %I4 = getelementptr %MixedB* %ArrayB, uint 2, ubyte 1, ubyte 0
43 %five = load float* %I4
Vikram S. Advea7a1c7e2002-07-10 21:54:05 +000044
45 %dsqrtTwo = cast float %sqrtTwo to double
46 %dexp = cast float %exp to double
47 %dpi = cast float %pi to double
48 %dfive = cast float %five to double
49
50 %castFmt = getelementptr [44 x sbyte]* %fmtArg, uint 0, uint 0
51 call int (sbyte*, ...)* %printf(sbyte* %castFmt, double %dsqrtTwo, double %dexp, double %dpi, double %dfive)
52
53 ret int 0
54end