
Use `emitValueToAlignment` as the section does not contain code. `emitCodeAlignment` would lead to ALIGN relocations on RISC-V and LoongArch with linker relaxation. In addition, change the alignment to wordsize, sufficient for the runtime requirement (`XRayFunctionSledIndex`). Related to #147322
45 lines
1.5 KiB
LLVM
45 lines
1.5 KiB
LLVM
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck --check-prefixes=CHECK,NOVECTOR %s
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z15 | FileCheck --check-prefixes=CHECK,VECTOR %s
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z15 -mattr=+soft-float | FileCheck --check-prefixes=CHECK,NOVECTOR %s
|
|
|
|
|
|
define signext i32 @foo() "function-instrument"="xray-always" {
|
|
; CHECK-LABEL: .Lxray_sled_0:
|
|
; CHECK: j .Ltmp[[#l:]]
|
|
; CHECK: bcr 0, %r0
|
|
; CHECK: llilf %r2, 0
|
|
; NOVECTOR: brasl %r14, __xray_FunctionEntry@PLT
|
|
; VECTOR: brasl %r14, __xray_FunctionEntryVec@PLT
|
|
; CHECK: .Ltmp[[#l]]:
|
|
ret i32 0
|
|
; CHECK-LABEL: .Lxray_sled_1:
|
|
; CHECK: br %r14
|
|
; CHECK: bc 0, 0
|
|
; CHECK: llilf %r2, 0
|
|
; NOVECtOR: j __xray_FunctionExit@PLT
|
|
; VECTOR: j __xray_FunctionExitVec@PLT
|
|
}
|
|
|
|
; CHECK: .section xray_instr_map,"ao",@progbits,foo
|
|
; CHECK: .Lxray_sleds_start0:
|
|
; CHECK: [[TMP1:.Ltmp[0-9]+]]:
|
|
; CHECK: .quad .Lxray_sled_0-[[TMP1]]
|
|
; CHECK: .quad .Lfunc_begin0-([[TMP1]]+8)
|
|
; CHECK: .byte 0x00
|
|
; CHECK: .byte 0x01
|
|
; CHECK: .byte 0x02
|
|
; CHECK: .space 13
|
|
; CHECK: [[TMP2:.Ltmp[0-9]+]]:
|
|
; CHECK: .quad .Lxray_sled_1-[[TMP2]]
|
|
; CHECK: .quad .Lfunc_begin0-([[TMP2]]+8)
|
|
; CHECK: .byte 0x01
|
|
; CHECK: .byte 0x01
|
|
; CHECK: .byte 0x02
|
|
; CHECK: .space 13
|
|
; CHECK: .Lxray_sleds_end0:
|
|
; CHECK: .section xray_fn_idx,"ao",@progbits,foo
|
|
; CHECK: .p2align 3, 0
|
|
; CHECK: .Lxray_fn_idx0:
|
|
; CHECK: .quad .Lxray_sleds_start0-.Lxray_fn_idx0
|
|
; CHECK: .quad 2
|