summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/PowerPC/pcrel-linkeropt-option.ll
blob: c1d3d4e1e92a8512b35ccf1d21ee6f0518d822ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu \
; RUN:   -mcpu=pwr10 -ppc-asm-full-reg-names -ppc-vsr-nums-as-vr \
; RUN:   < %s | FileCheck %s --check-prefix=DEFAULT
; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu \
; RUN:   -mcpu=pwr10 -ppc-asm-full-reg-names -ppc-vsr-nums-as-vr \
; RUN:   -ppc-pcrel-linker-opt=true < %s | FileCheck %s --check-prefix=ON
; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu \
; RUN:   -mcpu=pwr10 -ppc-asm-full-reg-names -ppc-vsr-nums-as-vr \
; RUN:   -ppc-pcrel-linker-opt=false < %s | FileCheck %s --check-prefix=OFF

@input8 = external local_unnamed_addr global i8, align 1

define dso_local i8 @Read8() local_unnamed_addr {
; DEFAULT-LABEL: Read8:
; DEFAULT:       # %bb.0: # %entry
; DEFAULT-NEXT:    pld r3, input8@got@pcrel(0), 1
; DEFAULT-NEXT:  .Lpcrel0:
; DEFAULT-NEXT:    .reloc .Lpcrel0-8,R_PPC64_PCREL_OPT,.-(.Lpcrel0-8)
; DEFAULT-NEXT:    lbz r3, 0(r3)
; DEFAULT-NEXT:    blr
;
; ON-LABEL: Read8:
; ON:       # %bb.0: # %entry
; ON-NEXT:    pld r3, input8@got@pcrel(0), 1
; ON-NEXT:  .Lpcrel0:
; ON-NEXT:    .reloc .Lpcrel0-8,R_PPC64_PCREL_OPT,.-(.Lpcrel0-8)
; ON-NEXT:    lbz r3, 0(r3)
; ON-NEXT:    blr
;
; OFF-LABEL: Read8:
; OFF:       # %bb.0: # %entry
; OFF-NEXT:    pld r3, input8@got@pcrel(0), 1
; OFF-NEXT:    lbz r3, 0(r3)
; OFF-NEXT:    blr
entry:
  %0 = load i8, ptr @input8, align 1
  ret i8 %0
}