[PATCH] D61711: [ELF][Driver] Fix precedence of symbol ordering file and CGProfile
Tiancong Wang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 10 09:50:30 PDT 2019
tcwang updated this revision to Diff 199030.
tcwang marked 3 inline comments as done.
tcwang added a comment.
Fix comments on the unit test.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61711/new/
https://reviews.llvm.org/D61711
Files:
lld/ELF/Driver.cpp
lld/test/ELF/symbol-ordering-file-cgprofile-conflicts.s
Index: lld/test/ELF/symbol-ordering-file-cgprofile-conflicts.s
===================================================================
--- /dev/null
+++ lld/test/ELF/symbol-ordering-file-cgprofile-conflicts.s
@@ -0,0 +1,67 @@
+// REQUIRES: x86
+// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
+// RUN: ld.lld -e A %t.o --no-call-graph-profile-sort -o %t
+// RUN: llvm-nm --numeric-sort %t | FileCheck %s --check-prefix=NO_ORDERING
+// NO_ORDERING: 0000000000201000 t D
+// NO_ORDERING-NEXT: 0000000000201001 T C
+// NO_ORDERING-NEXT: 0000000000201002 T B
+// NO_ORDERING-NEXT: 0000000000201003 T A
+
+// RUN: ld.lld -e A %t.o -o %t
+// RUN: llvm-nm --numeric-sort %t | FileCheck %s --check-prefix=CALL_GRAPH
+// CALL_GRAPH: 0000000000201000 T A
+// CALL_GRAPH-NEXT: 0000000000201000 t Aa
+// CALL_GRAPH-NEXT: 0000000000201001 T B
+// CALL_GRAPH-NEXT: 0000000000201002 T C
+// CALL_GRAPH-NEXT: 0000000000201003 t D
+
+// RUN: rm -f %t.symbol_order
+// RUN: echo "C" >> %t.symbol_order
+// RUN: echo "B" >> %t.symbol_order
+// RUN: echo "D" >> %t.symbol_order
+// RUN: echo "A" >> %t.symbol_order
+
+// RUN: ld.lld -e A %t.o --symbol-ordering-file %t.symbol_order -o %t
+// RUN: llvm-nm --numeric-sort %t | FileCheck %s --check-prefix=SYMBOL_ORDER
+// SYMBOL_ORDER: 0000000000201000 T C
+// SYMBOL_ORDER-NEXT: 0000000000201001 T B
+// SYMBOL_ORDER-NEXT: 0000000000201002 t D
+// SYMBOL_ORDER-NEXT: 0000000000201003 T A
+
+// RUN: rm -f %t.call_graph
+// RUN: echo "A B 5" > %t.call_graph
+// RUN: echo "B C 50" >> %t.call_graph
+// RUN: echo "C D 40" >> %t.call_graph
+// RUN: echo "D B 10" >> %t.call_graph
+
+// RUN: not ld.lld -e A %t.o --symbol-ordering-file %t.symbol_order --call-graph-ordering-file %t.call_graph -o %t 2>&1 | FileCheck %s
+// RUN: not ld.lld -e A %t.o --call-graph-ordering-file %t.call_graph --symbol-ordering-file %t.symbol_order -o %t 2>&1 | FileCheck %s
+// CHECK: error: --symbol-ordering-file should NOT be used together with --call-graph-order-file
+
+ .section .text.D,"ax", at progbits
+D:
+ retq
+
+ .section .text.C,"ax", at progbits
+ .globl C
+C:
+ retq
+
+ .section .text.B,"ax", at progbits
+ .globl B
+B:
+ retq
+
+ .section .text.A,"ax", at progbits
+ .globl A
+A:
+Aa:
+ retq
+
+ .cg_profile A, B, 10
+ .cg_profile A, B, 10
+ .cg_profile Aa, B, 80
+ .cg_profile A, C, 40
+ .cg_profile B, C, 30
+ .cg_profile C, D, 90
+
Index: lld/ELF/Driver.cpp
===================================================================
--- lld/ELF/Driver.cpp
+++ lld/ELF/Driver.cpp
@@ -964,9 +964,17 @@
std::tie(Config->AndroidPackDynRelocs, Config->RelrPackDynRelocs) =
getPackDynRelocs(Args);
- if (auto *Arg = Args.getLastArg(OPT_symbol_ordering_file))
- if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
+ if (auto *Arg = Args.getLastArg(OPT_symbol_ordering_file)){
+ if (Args.hasArg(OPT_call_graph_ordering_file))
+ error("--symbol-ordering-file should NOT be used together"
+ " with --call-graph-order-file");
+ if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue())){
Config->SymbolOrderingFile = getSymbolOrderingFile(*Buffer);
+ // Also need to disable CallGraphProfileSort to prevent
+ // LLD order symbols with CGProfile
+ Config->CallGraphProfileSort = false;
+ }
+ }
// If --retain-symbol-file is used, we'll keep only the symbols listed in
// the file and discard all others.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61711.199030.patch
Type: text/x-patch
Size: 3497 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190510/8858b466/attachment.bin>
More information about the llvm-commits
mailing list