Vikram S. Adve | 37d0e7e | 2002-07-14 22:39:02 +0000 | [diff] [blame] | 1 | ; This testcase is for testing expressions constructed from |
| 2 | ; constant values, including constant pointers to globals. |
| 3 | ; |
| 4 | |
| 5 | ;;------------------------------- |
| 6 | ;; Test constant cast expressions |
| 7 | ;;------------------------------- |
| 8 | |
| 9 | %t2 = global int* %t1 ;; Forward reference without cast |
| 10 | %t3 = global uint* cast int* %t1 ;; Forward reference with cast |
| 11 | %t1 = global int 4 ;; int* %0 |
| 12 | %t4 = global int** cast uint** %t3 ;; Cast of a previous cast |
| 13 | %t5 = global uint** %t3 ;; Reference to a previous cast |
| 14 | %t6 = global int*** %t4 ;; Different ref. to a previous cast |
| 15 | %t7 = global float* cast int 12345678 ;; Cast ordinary value to ptr |
| 16 | %t9 = global int cast float cast int 8 ;; Nested cast expression |
| 17 | |
| 18 | global int* cast float* %0 ;; Forward numeric reference |
| 19 | global float* %0 ;; Duplicate forward numeric reference |
| 20 | global float 0.0 |
| 21 | |
| 22 | |
| 23 | ;;--------------------------------------------------- |
| 24 | ;; Test constant getelementpr expressions for arrays |
| 25 | ;;--------------------------------------------------- |
| 26 | |
| 27 | %array = constant [2 x int] [ int 12, int 52 ] |
| 28 | %arrayPtr = global int* getelementptr ([2 x int]* %array, uint 0, uint 0) ;; int* &%array[0][0] |
| 29 | %arrayPtr5 = global int* getelementptr (int** %arrayPtr, uint 0, uint 5) ;; int* &%arrayPtr[5] |
| 30 | |
| 31 | %somestr = constant [11x sbyte] c"hello world" |
| 32 | %char5 = global sbyte* getelementptr([11x sbyte]* %somestr, uint 0, uint 5) |
| 33 | |
| 34 | %char8a = global int* cast sbyte* getelementptr([11x sbyte]* %somestr, uint 0, uint 8) ;; cast of getelementptr |
| 35 | |
| 36 | %char8b = global sbyte* getelementptr([11x sbyte]* %somestr, uint cast ubyte 0, uint cast sbyte 8) ;; getelementptr containing casts |
| 37 | |
| 38 | ;;------------------------------------------------------- |
| 39 | ;; TODO: Test constant getelementpr expressions for structures |
| 40 | ;;------------------------------------------------------- |
| 41 | |
| 42 | %SType = type { int , {float, {ubyte} }, ulong } ;; struct containing struct |
| 43 | %SAType = type { int , {[2x float], ulong} } ;; struct containing array |
| 44 | |
| 45 | %S1 = global %SType* null ;; Global initialized to NULL |
| 46 | %S2c = constant %SType { int 1, {float,{ubyte}} {float 2.0, {ubyte} {ubyte 3}}, ulong 4} |
| 47 | |
| 48 | %S3c = constant %SAType { int 1, {[2x float], ulong} {[2x float] [float 2.0, float 3.0], ulong 4} } |
| 49 | |
| 50 | %S1ptr = global %SType** %S1 ;; Ref. to global S1 |
| 51 | %S2 = global %SType* %S2c ;; Ref. to constant S2 |
| 52 | %S3 = global %SAType* %S3c ;; Ref. to constant S3 |
| 53 | |
| 54 | ;; Pointer to float (**%S1).1.0 |
| 55 | %S1fld1a = global float* getelementptr (%SType** %S1, uint 0, uint 0, ubyte 1, ubyte 0) |
| 56 | ;; Another ptr to the same! |
| 57 | %S1fld1b = global float* getelementptr (%SType*** %S1ptr, uint 0, uint 0, uint 0, ubyte 1, ubyte 0) |
| 58 | |
| 59 | %S1fld1bptr = global float** %S1fld1b ;; Ref. to previous pointer |
| 60 | |
| 61 | ;; Pointer to ubyte (**%S2).1.1.0 |
| 62 | %S2fld3 = global ubyte* getelementptr (%SType** %S2, uint 0, uint 0, ubyte 1, ubyte 1, ubyte 0) |
| 63 | |
| 64 | ;; Pointer to float (**%S2).1.0[0] |
| 65 | %S3fld3 = global float* getelementptr (%SAType** %S3, uint 0, uint 0, ubyte 1, ubyte 0, uint 0) |
| 66 | |
| 67 | ;;--------------------------------------------------------- |
| 68 | ;; TODO: Test constant expressions for unary and binary operators |
| 69 | ;;--------------------------------------------------------- |
| 70 | |
Vikram S. Adve | 0850978 | 2002-07-15 18:18:45 +0000 | [diff] [blame] | 71 | |
| 72 | ;;--------------------------------------------------- |
| 73 | ;; Test duplicate constant expressions |
| 74 | ;;--------------------------------------------------- |
| 75 | |
| 76 | %t4 = global int** cast uint** %t3 |
| 77 | |
| 78 | %char8a = global int* cast sbyte* getelementptr([11x sbyte]* %somestr, uint 0, uint 8) |
| 79 | |
| 80 | %S3fld3 = global float* getelementptr (%SAType** %S3, uint 0, uint 0, ubyte 1, ubyte 0, uint 0) |
| 81 | |
| 82 | |
| 83 | ;;--------------------------------------------------- |
| 84 | |
Vikram S. Adve | 37d0e7e | 2002-07-14 22:39:02 +0000 | [diff] [blame] | 85 | implementation |
| 86 | |