llvm-project/llvm/test/CodeGen/PowerPC/aix-xcoff-reloc-large.ll
Kai Nacke 427fb35192 [PPC] Opaque pointer migration, part 1.
The LIT test cases were migrated with the script provided by
Nikita Popov. Due to the size of the change it is split into
several parts.

Reviewed By: nemanja, amyk, nikic, PowerPC

Differential Revision: https://reviews.llvm.org/D135470
2022-10-11 17:24:06 +00:00

169 lines
6.5 KiB
LLVM

; RUN: llc -verify-machineinstrs -mcpu=pwr4 -mattr=-altivec -mtriple powerpc-ibm-aix-xcoff \
; RUN: -filetype=obj -code-model=large -o %t.o < %s
; RUN: llvm-readobj --relocs --expand-relocs %t.o | FileCheck --check-prefixes=RELOC %s
; RUN: llvm-objdump -D -r --symbol-description %t.o | FileCheck --check-prefix=DIS %s
; RUN: llc -verify-machineinstrs -mcpu=pwr4 -mattr=-altivec -mtriple powerpc64-ibm-aix-xcoff \
; RUN: -filetype=obj -code-model=large -o %t64.o < %s
; RUN: llvm-readobj --relocs --expand-relocs %t64.o | FileCheck --check-prefixes=RELOC64 %s
; RUN: llvm-objdump -D -r --symbol-description %t64.o | FileCheck --check-prefix=DIS64 %s
@a = global i32 2, align 4
@b = global i32 10, align 4
@c = global i32 11, align 4
define i32 @foo() {
entry:
%0 = load i32, ptr @a, align 4
%1 = load i32, ptr @b, align 4
%add = add nsw i32 %0, %1
%2 = load i32, ptr @c, align 4
%add1 = add nsw i32 %add, %2
ret i32 %add1
}
; RELOC: Section (index: {{[0-9]+}}) .text {
; RELOC-NEXT: Relocation {
; RELOC-NEXT: Virtual Address: 0x2
; RELOC-NEXT: Symbol: a ([[#INDX:]])
; RELOC-NEXT: IsSigned: No
; RELOC-NEXT: FixupBitValue: 0
; RELOC-NEXT: Length: 16
; RELOC-NEXT: Type: R_TOCU (0x30)
; RELOC-NEXT: }
; RELOC-NEXT: Relocation {
; RELOC-NEXT: Virtual Address: 0x6
; RELOC-NEXT: Symbol: a ([[#INDX]])
; RELOC-NEXT: IsSigned: No
; RELOC-NEXT: FixupBitValue: 0
; RELOC-NEXT: Length: 16
; RELOC-NEXT: Type: R_TOCL (0x31)
; RELOC-NEXT: }
; RELOC-NEXT: Relocation {
; RELOC-NEXT: Virtual Address: 0xE
; RELOC-NEXT: Symbol: b ([[#INDX+2]])
; RELOC-NEXT: IsSigned: No
; RELOC-NEXT: FixupBitValue: 0
; RELOC-NEXT: Length: 16
; RELOC-NEXT: Type: R_TOCU (0x30)
; RELOC-NEXT: }
; RELOC-NEXT: Relocation {
; RELOC-NEXT: Virtual Address: 0x12
; RELOC-NEXT: Symbol: b ([[#INDX+2]])
; RELOC-NEXT: IsSigned: No
; RELOC-NEXT: FixupBitValue: 0
; RELOC-NEXT: Length: 16
; RELOC-NEXT: Type: R_TOCL (0x31)
; RELOC-NEXT: }
; RELOC-NEXT: Relocation {
; RELOC-NEXT: Virtual Address: 0x1A
; RELOC-NEXT: Symbol: c ([[#INDX+4]])
; RELOC-NEXT: IsSigned: No
; RELOC-NEXT: FixupBitValue: 0
; RELOC-NEXT: Length: 16
; RELOC-NEXT: Type: R_TOCU (0x30)
; RELOC-NEXT: }
; RELOC-NEXT: Relocation {
; RELOC-NEXT: Virtual Address: 0x1E
; RELOC-NEXT: Symbol: c ([[#INDX+4]])
; RELOC-NEXT: IsSigned: No
; RELOC-NEXT: FixupBitValue: 0
; RELOC-NEXT: Length: 16
; RELOC-NEXT: Type: R_TOCL (0x31)
; RELOC-NEXT: }
; DIS: Disassembly of section .text:
; DIS-EMPTY:
; DIS-NEXT: 00000000 (idx: {{[0-9]+}}) .foo:
; DIS-NEXT: 0: 3c 62 00 00 addis 3, 2, 0
; DIS-NEXT: 00000002: R_TOCU (idx: [[#INDX:]]) a[TE]
; DIS-NEXT: 4: 80 63 00 00 lwz 3, 0(3)
; DIS-NEXT: 00000006: R_TOCL (idx: [[#INDX]]) a[TE]
; DIS-NEXT: 8: 80 63 00 00 lwz 3, 0(3)
; DIS-NEXT: c: 3c 82 00 00 addis 4, 2, 0
; DIS-NEXT: 0000000e: R_TOCU (idx: [[#INDX+2]]) b[TE]
; DIS-NEXT: 10: 80 84 00 04 lwz 4, 4(4)
; DIS-NEXT: 00000012: R_TOCL (idx: [[#INDX+2]]) b[TE]
; DIS-NEXT: 14: 80 84 00 00 lwz 4, 0(4)
; DIS-NEXT: 18: 3c a2 00 00 addis 5, 2, 0
; DIS-NEXT: 0000001a: R_TOCU (idx: [[#INDX+4]]) c[TE]
; DIS-NEXT: 1c: 80 a5 00 08 lwz 5, 8(5)
; DIS-NEXT: 0000001e: R_TOCL (idx: [[#INDX+4]]) c[TE]
; DIS-NEXT: 20: 7c 63 22 14 add 3, 3, 4
; DIS-NEXT: 24: 80 a5 00 00 lwz 5, 0(5)
; DIS-NEXT: 28: 7c 63 2a 14 add 3, 3, 5
; DIS-NEXT: 2c: 4e 80 00 20 blr
; RELOC64: Section (index: {{[0-9]+}}) .text {
; RELOC64-NEXT: Relocation {
; RELOC64-NEXT: Virtual Address: 0x2
; RELOC64-NEXT: Symbol: a ([[#INDX:]])
; RELOC64-NEXT: IsSigned: No
; RELOC64-NEXT: FixupBitValue: 0
; RELOC64-NEXT: Length: 16
; RELOC64-NEXT: Type: R_TOCU (0x30)
; RELOC64-NEXT: }
; RELOC64-NEXT: Relocation {
; RELOC64-NEXT: Virtual Address: 0x6
; RELOC64-NEXT: Symbol: b ([[#INDX+2]])
; RELOC64-NEXT: IsSigned: No
; RELOC64-NEXT: FixupBitValue: 0
; RELOC64-NEXT: Length: 16
; RELOC64-NEXT: Type: R_TOCU (0x30)
; RELOC64-NEXT: }
; RELOC64-NEXT: Relocation {
; RELOC64-NEXT: Virtual Address: 0xA
; RELOC64-NEXT: Symbol: c ([[#INDX+4]])
; RELOC64-NEXT: IsSigned: No
; RELOC64-NEXT: FixupBitValue: 0
; RELOC64-NEXT: Length: 16
; RELOC64-NEXT: Type: R_TOCU (0x30)
; RELOC64-NEXT: }
; RELOC64-NEXT: Relocation {
; RELOC64-NEXT: Virtual Address: 0xE
; RELOC64-NEXT: Symbol: a ([[#INDX]])
; RELOC64-NEXT: IsSigned: No
; RELOC64-NEXT: FixupBitValue: 0
; RELOC64-NEXT: Length: 16
; RELOC64-NEXT: Type: R_TOCL (0x31)
; RELOC64-NEXT: }
; RELOC64-NEXT: Relocation {
; RELOC64-NEXT: Virtual Address: 0x12
; RELOC64-NEXT: Symbol: b ([[#INDX+2]])
; RELOC64-NEXT: IsSigned: No
; RELOC64-NEXT: FixupBitValue: 0
; RELOC64-NEXT: Length: 16
; RELOC64-NEXT: Type: R_TOCL (0x31)
; RELOC64-NEXT: }
; RELOC64-NEXT: Relocation {
; RELOC64-NEXT: Virtual Address: 0x16
; RELOC64-NEXT: Symbol: c ([[#INDX+4]])
; RELOC64-NEXT: IsSigned: No
; RELOC64-NEXT: FixupBitValue: 0
; RELOC64-NEXT: Length: 16
; RELOC64-NEXT: Type: R_TOCL (0x31)
; RELOC64-NEXT: }
; RELOC64-NEXT: }
; DIS64: Disassembly of section .text:
; DIS64-EMPTY:
; DIS64-NEXT: 0000000000000000 (idx: 3) .foo:
; DIS64-NEXT: 0: 3c 62 00 00 addis 3, 2, 0
; DIS64-NEXT: 0000000000000002: R_TOCU (idx: [[#INDX:]]) a[TE]
; DIS64-NEXT: 4: 3c 82 00 00 addis 4, 2, 0
; DIS64-NEXT: 0000000000000006: R_TOCU (idx: [[#INDX+2]]) b[TE]
; DIS64-NEXT: 8: 3c a2 00 00 addis 5, 2, 0
; DIS64-NEXT: 000000000000000a: R_TOCU (idx: [[#INDX+4]]) c[TE]
; DIS64-NEXT: c: e8 63 00 00 ld 3, 0(3)
; DIS64-NEXT: 000000000000000e: R_TOCL (idx: [[#INDX]]) a[TE]
; DIS64-NEXT: 10: e8 84 00 08 ld 4, 8(4)
; DIS64-NEXT: 0000000000000012: R_TOCL (idx: [[#INDX+2]]) b[TE]
; DIS64-NEXT: 14: e8 a5 00 10 ld 5, 16(5)
; DIS64-NEXT: 0000000000000016: R_TOCL (idx: [[#INDX+4]]) c[TE]
; DIS64-NEXT: 18: 80 63 00 00 lwz 3, 0(3)
; DIS64-NEXT: 1c: 80 84 00 00 lwz 4, 0(4)
; DIS64-NEXT: 20: 80 a5 00 00 lwz 5, 0(5)
; DIS64-NEXT: 24: 7c 63 22 14 add 3, 3, 4
; DIS64-NEXT: 28: 7c 63 2a 14 add 3, 3, 5
; DIS64-NEXT: 2c: 4e 80 00 20 blr