ppc64-reloc-got-pcrel34.s 1.92 KB
# REQUIRES: ppc
# RUN: echo 'SECTIONS { \
# RUN:       .text_low 0x10010000: { *(.text_low) } \
# RUN:       .text_high 0x10080000 : { *(.text_high) } \
# RUN:       }' > %t.script

# RUN: llvm-mc -filetype=obj -triple=powerpc64le %s -o %t.o
# RUN: ld.lld -T %t.script --shared %t.o -o %t
# RUN: llvm-readelf -s %t | FileCheck %s --check-prefix=SYMBOL
# RUN: llvm-readelf -r %t | FileCheck %s --check-prefix=RELA
# RUN: llvm-objdump -d --no-show-raw-insn --mcpu=future %t | FileCheck %s

# RUN: llvm-mc -filetype=obj -triple=powerpc64 %s -o %t.o
# RUN: ld.lld -T %t.script --shared %t.o -o %t
# RUN: llvm-readelf -s %t | FileCheck %s --check-prefix=SYMBOL
# RUN: llvm-readelf -r %t | FileCheck %s --check-prefix=RELA
# RUN: llvm-objdump -d --no-show-raw-insn --mcpu=future %t | FileCheck %s

.text
.section .text_low, "ax", %progbits
# CHECK-LABEL: <GlobIntPCRel>:
# CHECK-NEXT:    pld 3, 458928(0), 1
# CHECK-NEXT:    lwa 3, 0(3)
# SYMBOL: Symbol table '.dynsym' contains 4 entries:
# SYMBOL:      00000000     0 NOTYPE  GLOBAL  DEFAULT     UND glob_int
# RELA:        100800b0  0000000100000014 R_PPC64_GLOB_DAT       0000000000000000 glob_int + 0
GlobIntPCRel:
  pld 3, glob_int@got@PCREL(0), 1
  lwa 3, 0(3)
  blr

# CHECK-LABEL: <GlobIntPCRelOffset>:
# CHECK-NEXT:    pld 3, 458920(0), 1
# CHECK-NEXT:    lwa 3, 8(3)
# SYMBOL:      00000000     0 NOTYPE  GLOBAL  DEFAULT     UND glob_int8
# RELA:        100800b8  0000000200000014 R_PPC64_GLOB_DAT       0000000000000000 glob_int8 + 0
GlobIntPCRelOffset:
  pld 3, glob_int8@got@PCREL(0), 1
  lwa 3, 8(3)
  blr

# CHECK-LABEL: <GlobIntPCRelBigOffset>:
# CHECK-NEXT:    pld 3, 192(0), 1
# CHECK-NEXT:    lwa 3, 64(3)
# SYMBOL:      00000000     0 NOTYPE  GLOBAL  DEFAULT     UND glob_int8_big
# RELA:        100800c0  0000000300000014 R_PPC64_GLOB_DAT       0000000000000000 glob_int8_big + 0
.section .text_high, "ax", %progbits
GlobIntPCRelBigOffset:
  pld 3, glob_int8_big@got@PCREL(0), 1
  lwa 3, 64(3)
  blr