llvm-project/llvm/test/CodeGen/PowerPC/xray-attribute-instrumentation.ll
Fangrui Song e0a6561ec9 [XRay] Make xray_fn_idx entries PC-relative
As mentioned by commit c5d38924dc6688c15b3fa133abeb3626e8f0767c (Apr 2020),
PC-relative entries avoid dynamic relocations and can therefore make the
section read-only.

This is similar to D78082 and D78590. We cannot commit to support
compiler/runtime built at different versions, so just don't play with versions.

For Mach-O support (incomplete yet), we use non-temporary `lxray_fn_idx[0-9]+`
symbols. Label differences are represented as a pair of UNSIGNED and SUBTRACTOR
relocations. The SUBTRACTOR external relocation requires r_extern==1 (needs to
reference a symbol table entry) which can be satisfied by `lxray_fn_idx[0-9]+`.
A `lxray_fn_idx[0-9]+` symbol also serves as the atom for this dead-strippable
section (follow-up to commit b9a134aa629de23a1dcf4be32e946e4e308fc64d).

Differential Revision: https://reviews.llvm.org/D152661
2023-06-20 22:40:56 -07:00

49 lines
1.7 KiB
LLVM

; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -relocation-model=pic < %s | FileCheck %s
define i32 @foo() nounwind noinline uwtable "function-instrument"="xray-always" {
; CHECK-LABEL: foo:
; CHECK-NEXT: .Lfunc_begin0:
; CHECK: .Ltmp[[#l:]]:
; CHECK-NEXT: b .Ltmp[[#l+1]]
; CHECK-NEXT: nop
; CHECK-NEXT: std 0, -8(1)
; CHECK-NEXT: mflr 0
; CHECK-NEXT: bl __xray_FunctionEntry
; CHECK-NEXT: nop
; CHECK-NEXT: mtlr 0
; CHECK-NEXT: .Ltmp[[#l+1]]:
ret i32 0
; CHECK: .Ltmp[[#l+2]]:
; CHECK-NEXT: blr
; CHECK-NEXT: nop
; CHECK-NEXT: std 0, -8(1)
; CHECK-NEXT: mflr 0
; CHECK-NEXT: bl __xray_FunctionExit
; CHECK-NEXT: nop
; CHECK-NEXT: mtlr 0
}
; CHECK-LABEL: xray_instr_map,"ao",@progbits,foo{{$}}
; CHECK: .Lxray_sleds_start0:
; CHECK-NEXT: [[TMP:.Ltmp[0-9]+]]:
; CHECK-NEXT: .quad .Ltmp[[#l]]-[[TMP]]
; CHECK-NEXT: .quad .Lfunc_begin0-([[TMP]]+8)
; CHECK-NEXT: .byte 0x00
; CHECK-NEXT: .byte 0x01
; CHECK-NEXT: .byte 0x02
; CHECK-NEXT: .space 13
; CHECK-NEXT: [[TMP:.Ltmp[0-9]+]]:
; CHECK-NEXT: .quad .Ltmp[[#l+2]]-[[TMP]]
; CHECK-NEXT: .quad .Lfunc_begin0-([[TMP]]+8)
; CHECK-NEXT: .byte 0x01
; CHECK-NEXT: .byte 0x01
; CHECK-NEXT: .byte 0x02
; CHECK-NEXT: .space 13
; CHECK-NEXT: .Lxray_sleds_end0:
; CHECK-LABEL: xray_fn_idx,"ao",@progbits,foo{{$}}
; CHECK: .p2align 4
; CHECK-NEXT: [[IDX:.Lxray_fn_idx[0-9]+]]:
; CHECK-NEXT: .quad .Lxray_sleds_start0-[[IDX]]
; CHECK-NEXT: .quad 2
; CHECK-NEXT: .text