AsmParser now depends on clients to verify that input is well formed
[oota-llvm.git] / test / Feature / constexpr.ll
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 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
17
18 global int* cast (float* %0 to int*)   ;; 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 ;; cast of getelementptr
35 %char8a = global int* cast (sbyte* getelementptr([11x sbyte]* %somestr, uint 0, uint 8) to int*)
36
37 ;; getelementptr containing casts
38 %char8b = global sbyte* getelementptr([11x sbyte]* %somestr, uint cast (ubyte 0 to uint), uint cast (sbyte 8 to uint))
39
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
73
74 ;;---------------------------------------------------
75 ;; Test duplicate constant expressions
76 ;;---------------------------------------------------
77
78 %t4 = global int** cast (uint** %t3 to int**)
79
80 %char8a = global int* cast (sbyte* getelementptr([11x sbyte]* %somestr, uint 0, uint 8) to int*)
81
82 %S3fld3 = global float* getelementptr (%SAType** %S3, uint 0, uint 0, ubyte 1, ubyte 0, uint 0) 
83
84
85 ;;---------------------------------------------------
86
87 implementation
88