[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / PowerPC / aix-xcoff-mergeable-str.ll
blobdf7d65d491ad568031b8368b1d7dd7d679fcfebc
1 ; This file tests the codegen of mergeable strings in AIX assembly only.
2 ; Once the codegen of mergeable strings for XCOFF object files is supported
3 ; the test in this file should be merged into aix-xcoff-data.ll with additional
4 ; tests for XCOFF object files.
6 ; RUN: llc -verify-machineinstrs -mcpu=pwr4 -mattr=-altivec -xcoff-traceback-table=false \
7 ; RUN:     -mtriple powerpc-ibm-aix-xcoff  -data-sections=false < %s | FileCheck %s
8 ; RUN: llc -verify-machineinstrs -mcpu=pwr4 -mattr=-altivec -xcoff-traceback-table=false \
9 ; RUN:     -mtriple powerpc64-ibm-aix-xcoff -data-sections=false < %s | FileCheck %s
11 ; RUN: llc -verify-machineinstrs -mcpu=pwr4 -mattr=-altivec -mtriple powerpc-ibm-aix-xcoff \
12 ; RUN:     -xcoff-traceback-table=false -data-sections=false -filetype=obj -o %t.o < %s
13 ; RUN: llvm-objdump -D %t.o | FileCheck --check-prefix=CHECKOBJ %s
15 @magic16 = private unnamed_addr constant [4 x i16] [i16 264, i16 272, i16 213, i16 0], align 2
16 @magic32 =  private unnamed_addr constant [4 x i32] [i32 464, i32 472, i32 413, i32 0], align 4
17 @strA = private unnamed_addr constant [14 x i8] c"hello world!\0A\00", align 1
18 @.str = private unnamed_addr constant [9 x i8] c"abcdefgh\00", align 1
19 @p = global i8* getelementptr inbounds ([9 x i8], [9 x i8]* @.str, i32 0, i32 0), align 4
21 ; Function Attrs: noinline nounwind optnone
22 define i8 @foo() #0 {
23 entry:
24   %0 = load i8*, i8** @p, align 4
25   %1 = load i8, i8* %0, align 1
26   ret i8 %1
29 ; CHECK:   .csect .rodata.str2.2[RO],2
30 ; CHECK-NEXT:   .align  1
31 ; CHECK-NEXT: L..magic16:
32 ; CHECK-NEXT:   .vbyte  2, 264                     # 0x108
33 ; CHECK-NEXT:   .vbyte  2, 272                     # 0x110
34 ; CHECK-NEXT:   .vbyte  2, 213                     # 0xd5
35 ; CHECK-NEXT:   .vbyte  2, 0                       # 0x0
36 ; CHECK-NEXT:   .csect .rodata.str4.4[RO],2
37 ; CHECK-NEXT:   .align  2
38 ; CHECK-NEXT: L..magic32:
39 ; CHECK-NEXT:   .vbyte  4, 464                     # 0x1d0
40 ; CHECK-NEXT:   .vbyte  4, 472                     # 0x1d8
41 ; CHECK-NEXT:   .vbyte  4, 413                     # 0x19d
42 ; CHECK-NEXT:   .vbyte  4, 0                       # 0x0
43 ; CHECK-NEXT:   .csect .rodata.str1.1[RO],2
44 ; CHECK-NEXT: L..strA:
45 ; CHECK-NEXT: .byte   'h,'e,'l,'l,'o,' ,'w,'o,'r,'l,'d,'!,0012,0000
46 ; CHECK-NEXT: L...str:
47 ; CHECK-NEXT: .string "abcdefgh"
49 ; CHECKOBJ:     00000010 <.rodata.str2.2>:
50 ; CHECKOBJ-NEXT:       10: 01 08 01 10
51 ; CHECKOBJ-NEXT:       14: 00 d5 00 00    {{.*}}{{[[:space:]] *}}
52 ; CHECKOBJ-NEXT: 00000018 <.rodata.str4.4>:
53 ; CHECKOBJ-NEXT:       18: 00 00 01 d0
54 ; CHECKOBJ-NEXT:       1c: 00 00 01 d8
55 ; CHECKOBJ-NEXT:       20: 00 00 01 9d
56 ; CHECKOBJ-NEXT:       24: 00 00 00 00    {{.*}}{{[[:space:]] *}}
57 ; CHECKOBJ-NEXT: 00000028 <.rodata.str1.1>:
58 ; CHECKOBJ-NEXT:       28: 68 65 6c 6c
59 ; CHECKOBJ-NEXT:       2c: 6f 20 77 6f
60 ; CHECKOBJ-NEXT:       30: 72 6c 64 21
61 ; CHECKOBJ-NEXT:       34: 0a 00 61 62
62 ; CHECKOBJ-NEXT:       38: 63 64 65 66
63 ; CHECKOBJ-NEXT:       3c: 67 68 00 00