Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 1 | ; Test of global initializers. |
| 2 | |
Karl Schimpf | b6c96af | 2014-11-17 10:58:39 -0800 | [diff] [blame] | 3 | ; REQUIRES: allow_dump |
| 4 | |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 5 | ; Test initializers with -filetype=asm. |
| 6 | ; RUN: %if --need=target_X8632 --command %p2i --filetype=asm --target x8632 \ |
| 7 | ; RUN: -i %s --args -O2 | %if --need=target_X8632 --command FileCheck %s |
Jan Voung | fe14fb8 | 2014-10-13 15:56:32 -0700 | [diff] [blame] | 8 | |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 9 | ; RUN: %if --need=target_ARM32 --command %p2i --filetype=asm --target arm32 \ |
| 10 | ; RUN: -i %s --args -O2 --skip-unimplemented \ |
| 11 | ; RUN: | %if --need=target_ARM32 --command FileCheck %s |
| 12 | |
| 13 | ; Test instructions for materializing addresses. |
| 14 | ; RUN: %if --need=target_X8632 --command %p2i --filetype=asm --target x8632 \ |
| 15 | ; RUN: -i %s --args -O2 \ |
| 16 | ; RUN: | %if --need=target_X8632 --command FileCheck %s --check-prefix=X8632 |
| 17 | |
| 18 | ; Test instructions with -filetype=obj and try to cross reference instructions |
| 19 | ; w/ the symbol table. |
| 20 | ; RUN: %if --need=target_X8632 --command %p2i --assemble --disassemble \ |
| 21 | ; RUN: --target x8632 -i %s --args --verbose none \ |
| 22 | ; RUN: | %if --need=target_X8632 --command FileCheck --check-prefix=IAS %s |
| 23 | |
| 24 | ; RUN: %if --need=target_X8632 --command %p2i --assemble --disassemble \ |
| 25 | ; RUN: --dis-flags=-t --target x8632 -i %s --args --verbose none \ |
| 26 | ; RUN: | %if --need=target_X8632 --command FileCheck --check-prefix=SYMTAB %s |
| 27 | |
Jan Voung | b0a8c24 | 2015-06-18 15:00:14 -0700 | [diff] [blame] | 28 | ; This is not really IAS, but we can switch when that is implemented. |
| 29 | ; For now we can at least see the instructions / relocations. |
| 30 | ; RUN: %if --need=target_ARM32 --command %p2i --filetype=asm --assemble \ |
| 31 | ; RUN: --disassemble --target arm32 -i %s \ |
| 32 | ; RUN: --args --verbose none --skip-unimplemented \ |
| 33 | ; RUN: | %if --need=target_ARM32 --command FileCheck \ |
| 34 | ; RUN: --check-prefix=IASARM32 %s |
| 35 | |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 36 | ; RUN: %if --need=target_ARM32 --command %p2i --filetype=asm --assemble \ |
| 37 | ; RUN: --disassemble --dis-flags=-t --target arm32 -i %s \ |
| 38 | ; RUN: --args --verbose none --skip-unimplemented \ |
| 39 | ; RUN: | %if --need=target_ARM32 --command FileCheck --check-prefix=SYMTAB %s |
Jan Voung | fe14fb8 | 2014-10-13 15:56:32 -0700 | [diff] [blame] | 40 | |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 41 | define internal i32 @main(i32 %argc, i32 %argv) { |
| 42 | entry: |
| 43 | %expanded1 = ptrtoint [4 x i8]* @PrimitiveInit to i32 |
| 44 | call void @use(i32 %expanded1) |
| 45 | %expanded3 = ptrtoint [4 x i8]* @PrimitiveInitConst to i32 |
| 46 | call void @use(i32 %expanded3) |
| 47 | %expanded5 = ptrtoint [4 x i8]* @PrimitiveInitStatic to i32 |
| 48 | call void @use(i32 %expanded5) |
| 49 | %expanded7 = ptrtoint [4 x i8]* @PrimitiveUninit to i32 |
| 50 | call void @use(i32 %expanded7) |
| 51 | %expanded9 = ptrtoint [20 x i8]* @ArrayInit to i32 |
| 52 | call void @use(i32 %expanded9) |
| 53 | %expanded11 = ptrtoint [40 x i8]* @ArrayInitPartial to i32 |
| 54 | call void @use(i32 %expanded11) |
| 55 | %expanded13 = ptrtoint [20 x i8]* @ArrayUninit to i32 |
| 56 | call void @use(i32 %expanded13) |
| 57 | ret i32 0 |
| 58 | } |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 59 | ; X8632-LABEL: main |
| 60 | ; X8632: movl $PrimitiveInit, |
| 61 | ; X8632: movl $PrimitiveInitConst, |
| 62 | ; X8632: movl $PrimitiveInitStatic, |
| 63 | ; X8632: movl $PrimitiveUninit, |
| 64 | ; X8632: movl $ArrayInit, |
| 65 | ; X8632: movl $ArrayInitPartial, |
| 66 | ; X8632: movl $ArrayUninit, |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 67 | |
| 68 | ; objdump does not indicate what symbol the mov/relocation applies to |
| 69 | ; so we grep for "mov {{.*}}, OFFSET, sec", along with |
| 70 | ; "OFFSET {{.*}} sec {{.*}} symbol" in the symbol table as a sanity check. |
| 71 | ; NOTE: The symbol table sorting has no relation to the code's references. |
| 72 | ; IAS-LABEL: main |
| 73 | ; SYMTAB-LABEL: SYMBOL TABLE |
| 74 | |
| 75 | ; SYMTAB-DAG: 00000000 {{.*}} .data {{.*}} PrimitiveInit |
| 76 | ; IAS: mov {{.*}},0x0 {{.*}} .data |
| 77 | ; IAS: call |
Jan Voung | b0a8c24 | 2015-06-18 15:00:14 -0700 | [diff] [blame] | 78 | ; IASARM32: movw {{.*}} PrimitiveInit |
| 79 | ; IASARM32: movt {{.*}} PrimitiveInit |
| 80 | ; IASARM32: bl |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 81 | |
| 82 | ; SYMTAB-DAG: 00000000 {{.*}} .rodata {{.*}} PrimitiveInitConst |
| 83 | ; IAS: mov {{.*}},0x0 {{.*}} .rodata |
| 84 | ; IAS: call |
Jan Voung | b0a8c24 | 2015-06-18 15:00:14 -0700 | [diff] [blame] | 85 | ; IASARM32: movw {{.*}} PrimitiveInitConst |
| 86 | ; IASARM32: movt {{.*}} PrimitiveInitConst |
| 87 | ; IASARM32: bl |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 88 | |
| 89 | ; SYMTAB-DAG: 00000000 {{.*}} .bss {{.*}} PrimitiveInitStatic |
| 90 | ; IAS: mov {{.*}},0x0 {{.*}} .bss |
| 91 | ; IAS: call |
Jan Voung | b0a8c24 | 2015-06-18 15:00:14 -0700 | [diff] [blame] | 92 | ; IASARM32: movw {{.*}} PrimitiveInitStatic |
| 93 | ; IASARM32: movt {{.*}} PrimitiveInitStatic |
| 94 | ; IASARM32: bl |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 95 | |
| 96 | ; SYMTAB-DAG: 00000004 {{.*}} .bss {{.*}} PrimitiveUninit |
| 97 | ; IAS: mov {{.*}},0x4 {{.*}} .bss |
| 98 | ; IAS: call |
Jan Voung | b0a8c24 | 2015-06-18 15:00:14 -0700 | [diff] [blame] | 99 | ; IASARM32: movw {{.*}} PrimitiveUninit |
| 100 | ; IASARM32: movt {{.*}} PrimitiveUninit |
| 101 | ; IASARM32: bl |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 102 | |
| 103 | ; SYMTAB-DAG: 00000004{{.*}}.data{{.*}}ArrayInit |
| 104 | ; IAS: mov {{.*}},0x4 {{.*}} .data |
| 105 | ; IAS: call |
Jan Voung | b0a8c24 | 2015-06-18 15:00:14 -0700 | [diff] [blame] | 106 | ; IASARM32: movw {{.*}} ArrayInit |
| 107 | ; IASARM32: movt {{.*}} ArrayInit |
| 108 | ; IASARM32: bl |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 109 | |
| 110 | ; SYMTAB-DAG: 00000018 {{.*}} .data {{.*}} ArrayInitPartial |
| 111 | ; IAS: mov {{.*}},0x18 {{.*}} .data |
| 112 | ; IAS: call |
Jan Voung | b0a8c24 | 2015-06-18 15:00:14 -0700 | [diff] [blame] | 113 | ; IASARM32: movw {{.*}} ArrayInitPartial |
| 114 | ; IASARM32: movt {{.*}} ArrayInitPartial |
| 115 | ; IASARM32: bl |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 116 | |
| 117 | ; SYMTAB-DAG: 00000008 {{.*}} .bss {{.*}} ArrayUninit |
| 118 | ; IAS: mov {{.*}},0x8 {{.*}} .bss |
| 119 | ; IAS: call |
Jan Voung | b0a8c24 | 2015-06-18 15:00:14 -0700 | [diff] [blame] | 120 | ; IASARM32: movw {{.*}} ArrayUninit |
| 121 | ; IASARM32: movt {{.*}} ArrayUninit |
| 122 | ; IASARM32: bl |
Jim Stichnoth | d9f1f9f | 2015-06-11 10:19:32 -0700 | [diff] [blame] | 123 | |
| 124 | declare void @use(i32) |
| 125 | |
| 126 | define internal i32 @nacl_tp_tdb_offset(i32 %__0) { |
| 127 | entry: |
| 128 | ret i32 0 |
| 129 | } |
| 130 | |
| 131 | define internal i32 @nacl_tp_tls_offset(i32 %size) { |
| 132 | entry: |
| 133 | %result = sub i32 0, %size |
| 134 | ret i32 %result |
| 135 | } |
| 136 | |
| 137 | |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 138 | @PrimitiveInit = internal global [4 x i8] c"\1B\00\00\00", align 4 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 139 | ; CHECK: .type PrimitiveInit,%object |
| 140 | ; CHECK-NEXT: .section .data,"aw",%progbits |
| 141 | ; CHECK-NEXT: .p2align 2 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 142 | ; CHECK-NEXT: PrimitiveInit: |
| 143 | ; CHECK-NEXT: .byte |
| 144 | ; CHECK: .size PrimitiveInit, 4 |
| 145 | |
| 146 | @PrimitiveInitConst = internal constant [4 x i8] c"\0D\00\00\00", align 4 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 147 | ; CHECK: .type PrimitiveInitConst,%object |
| 148 | ; CHECK-NEXT: .section .rodata,"a",%progbits |
| 149 | ; CHECK-NEXT: .p2align 2 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 150 | ; CHECK-NEXT: PrimitiveInitConst: |
| 151 | ; CHECK-NEXT: .byte |
| 152 | ; CHECK: .size PrimitiveInitConst, 4 |
| 153 | |
| 154 | @ArrayInit = internal global [20 x i8] c"\0A\00\00\00\14\00\00\00\1E\00\00\00(\00\00\002\00\00\00", align 4 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 155 | ; CHECK: .type ArrayInit,%object |
| 156 | ; CHECK-NEXT: .section .data,"aw",%progbits |
| 157 | ; CHECK-NEXT: .p2align 2 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 158 | ; CHECK-NEXT: ArrayInit: |
| 159 | ; CHECK-NEXT: .byte |
| 160 | ; CHECK: .size ArrayInit, 20 |
| 161 | |
| 162 | @ArrayInitPartial = internal global [40 x i8] c"<\00\00\00F\00\00\00P\00\00\00Z\00\00\00d\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00", align 4 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 163 | ; CHECK: .type ArrayInitPartial,%object |
| 164 | ; CHECK-NEXT: .section .data,"aw",%progbits |
| 165 | ; CHECK-NEXT: .p2align 2 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 166 | ; CHECK-NEXT: ArrayInitPartial: |
| 167 | ; CHECK-NEXT: .byte |
| 168 | ; CHECK: .size ArrayInitPartial, 40 |
| 169 | |
| 170 | @PrimitiveInitStatic = internal global [4 x i8] zeroinitializer, align 4 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 171 | ; CHECK: .type PrimitiveInitStatic,%object |
| 172 | ; CHECK-NEXT: .section .bss,"aw",%nobits |
| 173 | ; CHECK-NEXT: .p2align 2 |
Jan Voung | fed97af | 2015-01-25 10:46:00 -0800 | [diff] [blame] | 174 | ; CHECK-NEXT: PrimitiveInitStatic: |
| 175 | ; CHECK-NEXT: .zero 4 |
| 176 | ; CHECK-NEXT: .size PrimitiveInitStatic, 4 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 177 | |
| 178 | @PrimitiveUninit = internal global [4 x i8] zeroinitializer, align 4 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 179 | ; CHECK: .type PrimitiveUninit,%object |
| 180 | ; CHECK-NEXT: .section .bss,"aw",%nobits |
| 181 | ; CHECK-NEXT: .p2align 2 |
Jan Voung | fed97af | 2015-01-25 10:46:00 -0800 | [diff] [blame] | 182 | ; CHECK-NEXT: PrimitiveUninit: |
| 183 | ; CHECK-NEXT: .zero 4 |
| 184 | ; CHECK-NEXT: .size PrimitiveUninit, 4 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 185 | |
| 186 | @ArrayUninit = internal global [20 x i8] zeroinitializer, align 4 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 187 | ; CHECK: .type ArrayUninit,%object |
| 188 | ; CHECK-NEXT: .section .bss,"aw",%nobits |
| 189 | ; CHECK-NEXT: .p2align 2 |
Jan Voung | fed97af | 2015-01-25 10:46:00 -0800 | [diff] [blame] | 190 | ; CHECK-NEXT: ArrayUninit: |
| 191 | ; CHECK-NEXT: .zero 20 |
| 192 | ; CHECK-NEXT: .size ArrayUninit, 20 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 193 | |
| 194 | @ArrayUninitConstDouble = internal constant [200 x i8] zeroinitializer, align 8 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 195 | ; CHECK: .type ArrayUninitConstDouble,%object |
| 196 | ; CHECK-NEXT: .section .rodata,"a",%progbits |
| 197 | ; CHECK-NEXT: .p2align 3 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 198 | ; CHECK-NEXT: ArrayUninitConstDouble: |
| 199 | ; CHECK-NEXT: .zero 200 |
| 200 | ; CHECK-NEXT: .size ArrayUninitConstDouble, 200 |
| 201 | |
| 202 | @ArrayUninitConstInt = internal constant [20 x i8] zeroinitializer, align 4 |
Jan Voung | 58eea4d | 2015-06-15 15:11:56 -0700 | [diff] [blame] | 203 | ; CHECK: .type ArrayUninitConstInt,%object |
| 204 | ; CHECK: .section .rodata,"a",%progbits |
| 205 | ; CHECK-NEXT: .p2align 2 |
Jim Stichnoth | de4ca71 | 2014-06-29 08:13:48 -0700 | [diff] [blame] | 206 | ; CHECK-NEXT: ArrayUninitConstInt: |
| 207 | ; CHECK-NEXT: .zero 20 |
| 208 | ; CHECK-NEXT: .size ArrayUninitConstInt, 20 |
| 209 | |
| 210 | @__init_array_start = internal constant [0 x i8] zeroinitializer, align 4 |
| 211 | @__fini_array_start = internal constant [0 x i8] zeroinitializer, align 4 |
| 212 | @__tls_template_start = internal constant [0 x i8] zeroinitializer, align 8 |
| 213 | @__tls_template_alignment = internal constant [4 x i8] c"\01\00\00\00", align 4 |