mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
9bece8dc4b
Summary: XRay had been assuming that the previous section is the "text" section of the function when lowering the instrumentation map. Unfortunately this is not a safe assumption, because we may be coming from lowering debug type information for the function being lowered. This fixes an issue with combining -gsplit-dwarf, -generate-type-units, -debug-compile and -fxray-instrument for sole member functions. When the split dwarf section is stripped, we're left with references from the xray_instr_map to the debug section. The change now uses the function's symbol instead of the previous section's start symbol. We found the bug while attempting to strip the split debug sections off an XRay-instrumented object file, which had a peculiar edge-case for single-function classes where the single function is being lowered. Because XRay had assocaited the instrumentation map for a function to the debug types section instead of the function's section, the objcopy call will fail due to the misplaced reference from the xray_instr_map section. Reviewers: pcc, dblaikie, echristo Subscribers: llvm-commits, aprantl Differential Revision: https://reviews.llvm.org/D37791 llvm-svn: 313233
45 lines
1.5 KiB
LLVM
45 lines
1.5 KiB
LLVM
; RUN: llc -filetype=asm -o - -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
|
|
; RUN: llc -filetype=asm -o - -mtriple=powerpc64le-unknown-linux-gnu \
|
|
; RUN: -relocation-model=pic < %s | FileCheck %s
|
|
|
|
define i32 @foo() nounwind noinline uwtable "function-instrument"="xray-always" {
|
|
; CHECK-LABEL: .Ltmp0:
|
|
; CHECK: b .Ltmp1
|
|
; 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-LABEL: .Ltmp1:
|
|
ret i32 0
|
|
; CHECK-LABEL: .Ltmp2:
|
|
; CHECK: 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,"awo",@progbits,foo,unique,1
|
|
; CHECK: .Lxray_sleds_start0:
|
|
; CHECK-NEXT: .quad .Ltmp0
|
|
; CHECK-NEXT: .quad foo
|
|
; CHECK-NEXT: .byte 0x00
|
|
; CHECK-NEXT: .byte 0x01
|
|
; CHECK-NEXT: .byte 0x00
|
|
; CHECK-NEXT: .space 13
|
|
; CHECK-NEXT: .quad .Ltmp2
|
|
; CHECK-NEXT: .quad foo
|
|
; CHECK-NEXT: .byte 0x01
|
|
; CHECK-NEXT: .byte 0x01
|
|
; CHECK-NEXT: .byte 0x00
|
|
; CHECK-NEXT: .space 13
|
|
; CHECK-NEXT: .Lxray_sleds_end0:
|
|
; CHECK-LABEL: xray_fn_idx,"awo",@progbits,foo,unique,1
|
|
; CHECK: .p2align 4
|
|
; CHECK-NEXT: .quad .Lxray_sleds_start0
|
|
; CHECK-NEXT: .quad .Lxray_sleds_end0
|
|
; CHECK-NEXT: .text
|