blob: 08d94f7e27299b8a3bdd6cfcd72e21f337d1051a [file] [log] [blame]
Vikram S. Adve37d0e7e2002-07-14 22:39:02 +00001; 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
Chris Lattner83a278e2002-08-15 19:48:48 +00009%t2 = global int* %t1 ;; Forward reference without cast
10%t3 = global uint* cast int* %t1 to uint* ;; Forward reference with cast
11%t1 = global int 4 ;; int* %0
12%t4 = global int** cast uint** %t3 to int** ;; 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 to float* ;; Cast ordinary value to ptr
16%t9 = global int cast float cast int 8 to float to int ;; Nested cast expression
Vikram S. Adve37d0e7e2002-07-14 22:39:02 +000017
Chris Lattner83a278e2002-08-15 19:48:48 +000018global int* cast float* %0 to int* ;; Forward numeric reference
Vikram S. Adve37d0e7e2002-07-14 22:39:02 +000019global float* %0 ;; Duplicate forward numeric reference
20global 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
Chris Lattner83a278e2002-08-15 19:48:48 +000034;; cast of getelementptr
35%char8a = global int* cast sbyte* getelementptr([11x sbyte]* %somestr, uint 0, uint 8) to int*
Vikram S. Adve37d0e7e2002-07-14 22:39:02 +000036
Chris Lattner83a278e2002-08-15 19:48:48 +000037;; getelementptr containing casts
38%char8b = global sbyte* getelementptr([11x sbyte]* %somestr, uint cast ubyte 0 to uint, uint cast sbyte 8 to uint)
Vikram S. Adve37d0e7e2002-07-14 22:39:02 +000039
40;;-------------------------------------------------------
41;; TODO: Test constant getelementpr expressions for structures
42;;-------------------------------------------------------
43
44%SType = type { int , {float, {ubyte} }, ulong } ;; struct containing struct
45%SAType = type { int , {[2x float], ulong} } ;; struct containing array
46
47%S1 = global %SType* null ;; Global initialized to NULL
48%S2c = constant %SType { int 1, {float,{ubyte}} {float 2.0, {ubyte} {ubyte 3}}, ulong 4}
49
50%S3c = constant %SAType { int 1, {[2x float], ulong} {[2x float] [float 2.0, float 3.0], ulong 4} }
51
52%S1ptr = global %SType** %S1 ;; Ref. to global S1
53%S2 = global %SType* %S2c ;; Ref. to constant S2
54%S3 = global %SAType* %S3c ;; Ref. to constant S3
55
56 ;; Pointer to float (**%S1).1.0
57%S1fld1a = global float* getelementptr (%SType** %S1, uint 0, uint 0, ubyte 1, ubyte 0)
58 ;; Another ptr to the same!
59%S1fld1b = global float* getelementptr (%SType*** %S1ptr, uint 0, uint 0, uint 0, ubyte 1, ubyte 0)
60
61%S1fld1bptr = global float** %S1fld1b ;; Ref. to previous pointer
62
63 ;; Pointer to ubyte (**%S2).1.1.0
64%S2fld3 = global ubyte* getelementptr (%SType** %S2, uint 0, uint 0, ubyte 1, ubyte 1, ubyte 0)
65
66 ;; Pointer to float (**%S2).1.0[0]
67%S3fld3 = global float* getelementptr (%SAType** %S3, uint 0, uint 0, ubyte 1, ubyte 0, uint 0)
68
69;;---------------------------------------------------------
70;; TODO: Test constant expressions for unary and binary operators
71;;---------------------------------------------------------
72
Vikram S. Adve08509782002-07-15 18:18:45 +000073
74;;---------------------------------------------------
75;; Test duplicate constant expressions
76;;---------------------------------------------------
77
Chris Lattner83a278e2002-08-15 19:48:48 +000078%t4 = global int** cast uint** %t3 to int**
Vikram S. Adve08509782002-07-15 18:18:45 +000079
Chris Lattner83a278e2002-08-15 19:48:48 +000080%char8a = global int* cast sbyte* getelementptr([11x sbyte]* %somestr, uint 0, uint 8) to int*
Vikram S. Adve08509782002-07-15 18:18:45 +000081
82%S3fld3 = global float* getelementptr (%SAType** %S3, uint 0, uint 0, ubyte 1, ubyte 0, uint 0)
83
84
85;;---------------------------------------------------
86
Vikram S. Adve37d0e7e2002-07-14 22:39:02 +000087implementation
88