xref: /llvm-project/llvm/test/CodeGen/AArch64/xray-partial-instrumentation-skip-exit.ll (revision bef8294650f0119238830d73a7527023c7c8a97f)
1; RUN: llc -mtriple=aarch64-unknown-linux-gnu < %s | FileCheck %s --check-prefixes=CHECK,CHECK-LINUX
2; RUN: llc -mtriple=aarch64-apple-darwin      < %s | FileCheck %s --check-prefixes=CHECK,CHECK-MACOS
3
4define i32 @foo() nounwind noinline uwtable "function-instrument"="xray-always" "xray-skip-exit" {
5; CHECK-LABEL: Lxray_sled_0:
6; CHECK-NEXT:  b  #32
7; CHECK-NEXT:  nop
8; CHECK-NEXT:  nop
9; CHECK-NEXT:  nop
10; CHECK-NEXT:  nop
11; CHECK-NEXT:  nop
12; CHECK-NEXT:  nop
13; CHECK-NEXT:  nop
14; CHECK-LABEL: Ltmp0:
15  ret i32 0
16; CHECK-NOT: Lxray_sled_1:
17; CHECK:  ret
18}
19
20; CHECK-LINUX-LABEL: .section xray_instr_map,"ao",@progbits,foo{{$}}
21; CHECK-LINUX-LABEL: Lxray_sleds_start0:
22; CHECK-LINUX:         .xword .Lxray_sled_0
23; CHECK-LINUX-LABEL: Lxray_sleds_end0:
24
25; CHECK-MACOS-LABEL: .section __DATA,xray_instr_map,regular,live_support{{$}}
26; CHECK-MACOS-LABEL: lxray_sleds_start0:
27; CHECK-MACOS:         .quad Lxray_sled_0
28; CHECK-MACOS-LABEL: Lxray_sleds_end0:
29