summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll
diff options
context:
space:
mode:
authorDean Michael Berris <dberris@google.com>2017-06-21 06:39:42 +0000
committerDean Michael Berris <dberris@google.com>2017-06-21 06:39:42 +0000
commite479ac85d5b2f79eb765701933b2de640aa94525 (patch)
tree6e19a9b89959ac470f6f3f5d4d18f6b413a857f6 /test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll
parent608be862ffd6d075ca3628d8e34577a044906043 (diff)
[XRay] Reduce synthetic references emitted by XRay
Summary: When we're building with XRay instrumentation, we use a trick that preserves references from the function to a function sled index. This index table lives in a separate section, and without this trick the linker is free to garbage-collect this section and all the segments it refers to. Until we're able to tell the linkers to preserve these sections, we use this reference trick to keep around both the index and the entries in the instrumentation map. Before this change we emitted both a synthetic reference to the label in the instrumentation map, and to the entry in the function map index. This change removes the first synthetic reference and only emits one synthetic reference to the index -- the index entry has the references to the labels in the instrumentation map, so the linker will still preserve those if the function itself is preserved. This reduces the amount of synthetic references we emit from 16 bytes to just 8 bytes in x86_64, and similarly to other platforms. Reviewers: dblaikie Subscribers: javed.absar, kpw, pelikan, llvm-commits Differential Revision: https://reviews.llvm.org/D34340 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll')
-rw-r--r--test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll b/test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll
index 739151fbdd5..118c02adeb8 100644
--- a/test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll
+++ b/test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll
@@ -24,15 +24,14 @@ define i32 @foo() nounwind noinline uwtable "function-instrument"="xray-always"
; CHECK-NEXT: bx lr
}
; CHECK: .p2align 4
-; CHECK-NEXT: .long {{.*}}Lxray_synthetic_0
; CHECK-NEXT: .long {{.*}}Lxray_fn_idx_synth_0
; CHECK-NEXT: .section {{.*}}xray_instr_map{{.*}}
-; CHECK-LABEL: Lxray_synthetic_0:
+; CHECK-LABEL: Lxray_sleds_start0:
; CHECK: .long {{.*}}Lxray_sled_0
; CHECK: .long {{.*}}Lxray_sled_1
-; CHECK-LABEL: Lxray_synthetic_end0:
+; CHECK-LABEL: Lxray_sleds_end0:
; CHECK: .section {{.*}}xray_fn_idx{{.*}}
; CHECK-LABEL: Lxray_fn_idx_synth_0:
-; CHECK: .long {{.*}}xray_synthetic_0
-; CHECK-NEXT: .long {{.*}}xray_synthetic_end0
+; CHECK: .long {{.*}}xray_sleds_start0
+; CHECK-NEXT: .long {{.*}}xray_sleds_end0