mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Add a -exported-symbol option to llvm-lto.
Patch by Tom Roeder. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191825 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
86b4f1a96f
commit
b964366a9a
@ -1,5 +1,8 @@
|
|||||||
; RUN: llvm-as < %s >%t1
|
; RUN: llvm-as < %s >%t1
|
||||||
; RUN: llvm-lto -o %t2 %t1
|
; RUN: llvm-lto -o %t2 %t1
|
||||||
|
; RUN: llvm-nm %t2 | FileCheck %s -check-prefix=NOEXPORT
|
||||||
|
; RUN: llvm-lto -o %t3 -exported-symbol=main %t1
|
||||||
|
; RUN: llvm-nm %t3 | FileCheck %s -check-prefix=EXPORT
|
||||||
|
|
||||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||||
target triple = "x86_64-unknown-linux-gnu"
|
target triple = "x86_64-unknown-linux-gnu"
|
||||||
@ -13,7 +16,11 @@ module asm ".cfi_endproc"
|
|||||||
|
|
||||||
declare void @PR14512()
|
declare void @PR14512()
|
||||||
|
|
||||||
|
; Without -exported-symbol, main should be eliminated by LTO.
|
||||||
|
; With -exported-symbol=main, main should be preserved by LTO.
|
||||||
define i32 @main(i32 %argc, i8** %argv) {
|
define i32 @main(i32 %argc, i8** %argv) {
|
||||||
|
; NOEXPORT-NOT: main
|
||||||
|
; EXPORT: main
|
||||||
call void @PR14512()
|
call void @PR14512()
|
||||||
ret i32 0
|
ret i32 0
|
||||||
}
|
}
|
||||||
|
@ -45,6 +45,12 @@ OutputFilename("o", cl::init(""),
|
|||||||
cl::desc("Override output filename"),
|
cl::desc("Override output filename"),
|
||||||
cl::value_desc("filename"));
|
cl::value_desc("filename"));
|
||||||
|
|
||||||
|
static cl::list<std::string>
|
||||||
|
ExportedSymbols("exported-symbol",
|
||||||
|
cl::desc("Symbol to export from the resulting object file"),
|
||||||
|
cl::ZeroOrMore);
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
// Print a stack trace if we signal out.
|
// Print a stack trace if we signal out.
|
||||||
sys::PrintStackTraceOnErrorSignal();
|
sys::PrintStackTraceOnErrorSignal();
|
||||||
@ -107,6 +113,10 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add all the exported symbols to the table of symbols to preserve.
|
||||||
|
for (unsigned i = 0; i < ExportedSymbols.size(); ++i)
|
||||||
|
CodeGen.addMustPreserveSymbol(ExportedSymbols[i].c_str());
|
||||||
|
|
||||||
if (!OutputFilename.empty()) {
|
if (!OutputFilename.empty()) {
|
||||||
size_t len = 0;
|
size_t len = 0;
|
||||||
std::string ErrorInfo;
|
std::string ErrorInfo;
|
||||||
|
Loading…
Reference in New Issue
Block a user