X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FGeneric%2Fconstindices.ll;h=837836fb29ca5759d5ae11d5aee052e547a73df2;hb=b83896903b07f3be5722c8a0449d4922ef8a5a8a;hp=3a64a151223caf5f868c4fd786f22e3403598d06;hpb=e5d4efa63ec2c1296e3a1a3e70763df02cd1a7ab;p=oota-llvm.git diff --git a/test/CodeGen/Generic/constindices.ll b/test/CodeGen/Generic/constindices.ll index 3a64a151223..837836fb29c 100644 --- a/test/CodeGen/Generic/constindices.ll +++ b/test/CodeGen/Generic/constindices.ll @@ -1,56 +1,44 @@ -; RUN: llvm-as -f %s -o - | llc +; RUN: llc < %s ; Test that a sequence of constant indices are folded correctly ; into the equivalent offset at compile-time. -%MixedA = type { float, [15 x int], sbyte, float } - -%MixedB = type { float, %MixedA, float } - -%fmtArg = internal global [44 x sbyte] c"sqrt(2) = %g\0Aexp(1) = %g\0Api = %g\0Afive = %g\0A\00"; <[44 x sbyte]*> [#uses=1] - -implementation - -declare int "printf"(sbyte*, ...) - -int "main"() -begin - %ScalarA = alloca %MixedA - %ScalarB = alloca %MixedB - %ArrayA = alloca %MixedA, uint 4 - %ArrayB = alloca %MixedB, uint 3 - - %I1 = getelementptr %MixedA* %ScalarA, long 0, uint 0 - store float 1.4142, float *%I1 - %I2 = getelementptr %MixedB* %ScalarB, long 0, uint 1, uint 0 - store float 2.7183, float *%I2 - - %fptrA = getelementptr %MixedA* %ArrayA, long 1, uint 0 - %fptrB = getelementptr %MixedB* %ArrayB, long 2, uint 1, uint 0 - - store float 3.1415, float* %fptrA - store float 5.0, float* %fptrB - - ;; Test that a sequence of GEPs with constant indices are folded right - %fptrA1 = getelementptr %MixedA* %ArrayA, long 3 ; &ArrayA[3] - %fptrA2 = getelementptr %MixedA* %fptrA1, long 0, uint 1 ; &(*fptrA1).1 - %fptrA3 = getelementptr [15 x int]* %fptrA2, long 0, long 8 ; &(*fptrA2)[8] - store int 5, int* %fptrA3 ; ArrayA[3].1[8] = 5 - - %sqrtTwo = load float *%I1 - %exp = load float *%I2 - %I3 = getelementptr %MixedA* %ArrayA, long 1, uint 0 - %pi = load float* %I3 - %I4 = getelementptr %MixedB* %ArrayB, long 2, uint 1, uint 0 - %five = load float* %I4 - - %dsqrtTwo = cast float %sqrtTwo to double - %dexp = cast float %exp to double - %dpi = cast float %pi to double - %dfive = cast float %five to double - - %castFmt = getelementptr [44 x sbyte]* %fmtArg, long 0, long 0 - call int (sbyte*, ...)* %printf(sbyte* %castFmt, double %dsqrtTwo, double %dexp, double %dpi, double %dfive) - - ret int 0 -end + %MixedA = type { float, [15 x i32], i8, float } + %MixedB = type { float, %MixedA, float } +@fmtArg = internal global [44 x i8] c"sqrt(2) = %g\0Aexp(1) = %g\0Api = %g\0Afive = %g\0A\00" ; <[44 x i8]*> [#uses=1] + +declare i32 @printf(i8*, ...) + +define i32 @main() { + %ScalarA = alloca %MixedA ; <%MixedA*> [#uses=1] + %ScalarB = alloca %MixedB ; <%MixedB*> [#uses=1] + %ArrayA = alloca %MixedA, i32 4 ; <%MixedA*> [#uses=3] + %ArrayB = alloca %MixedB, i32 3 ; <%MixedB*> [#uses=2] + %I1 = getelementptr %MixedA, %MixedA* %ScalarA, i64 0, i32 0 ; [#uses=2] + store float 0x3FF6A09020000000, float* %I1 + %I2 = getelementptr %MixedB, %MixedB* %ScalarB, i64 0, i32 1, i32 0 ; [#uses=2] + store float 0x4005BF1420000000, float* %I2 + %fptrA = getelementptr %MixedA, %MixedA* %ArrayA, i64 1, i32 0 ; [#uses=1] + %fptrB = getelementptr %MixedB, %MixedB* %ArrayB, i64 2, i32 1, i32 0 ; [#uses=1] + store float 0x400921CAC0000000, float* %fptrA + store float 5.000000e+00, float* %fptrB + + ;; Test that a sequence of GEPs with constant indices are folded right + %fptrA1 = getelementptr %MixedA, %MixedA* %ArrayA, i64 3 ; <%MixedA*> [#uses=1] + %fptrA2 = getelementptr %MixedA, %MixedA* %fptrA1, i64 0, i32 1 ; <[15 x i32]*> [#uses=1] + %fptrA3 = getelementptr [15 x i32], [15 x i32]* %fptrA2, i64 0, i64 8 ; [#uses=1] + store i32 5, i32* %fptrA3 + %sqrtTwo = load float, float* %I1 ; [#uses=1] + %exp = load float, float* %I2 ; [#uses=1] + %I3 = getelementptr %MixedA, %MixedA* %ArrayA, i64 1, i32 0 ; [#uses=1] + %pi = load float, float* %I3 ; [#uses=1] + %I4 = getelementptr %MixedB, %MixedB* %ArrayB, i64 2, i32 1, i32 0 ; [#uses=1] + %five = load float, float* %I4 ; [#uses=1] + %dsqrtTwo = fpext float %sqrtTwo to double ; [#uses=1] + %dexp = fpext float %exp to double ; [#uses=1] + %dpi = fpext float %pi to double ; [#uses=1] + %dfive = fpext float %five to double ; [#uses=1] + %castFmt = getelementptr [44 x i8], [44 x i8]* @fmtArg, i64 0, i64 0 ; [#uses=1] + call i32 (i8*, ...) @printf( i8* %castFmt, double %dsqrtTwo, double %dexp, double %dpi, double %dfive ) ; :1 [#uses=0] + ret i32 0 +}