Skip to content

Commit ed22f9b

Browse files
committedMar 31, 2016
ELF: Add flag for controlling LTO optimization level.
Differential Revision: http://reviews.llvm.org/D18667 llvm-svn: 265053
1 parent 326014a commit ed22f9b

File tree

5 files changed

+32
-1
lines changed

5 files changed

+32
-1
lines changed
 

‎lld/ELF/Config.h

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ struct Configuration {
9090
ELFKind EKind = ELFNoneKind;
9191
uint16_t EMachine = llvm::ELF::EM_NONE;
9292
uint64_t EntryAddr = -1;
93+
unsigned LtoO = 2;
9394
unsigned Optimize = 0;
9495
};
9596

‎lld/ELF/Driver.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,12 @@ void LinkerDriver::readConfigs(opt::InputArgList &Args) {
282282
error("invalid optimization level");
283283
}
284284

285+
if (auto *Arg = Args.getLastArg(OPT_lto_O)) {
286+
StringRef Val = Arg->getValue();
287+
if (Val.getAsInteger(10, Config->LtoO))
288+
error("invalid optimization level");
289+
}
290+
285291
if (auto *Arg = Args.getLastArg(OPT_hash_style)) {
286292
StringRef S = Arg->getValue();
287293
if (S == "gnu") {

‎lld/ELF/LTO.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ static void runLTOPasses(Module &M, TargetMachine &TM) {
6262
PMB.VerifyOutput = true;
6363
PMB.LoopVectorize = true;
6464
PMB.SLPVectorize = true;
65-
PMB.OptLevel = 2; // FIXME: This should be an option.
65+
PMB.OptLevel = Config->LtoO;
6666
PMB.populateLTOPassManager(LtoPasses);
6767
LtoPasses.run(M);
6868

‎lld/ELF/Options.td

+3
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ def init : Separate<["-"], "init">, MetaVarName<"<symbol>">,
7575
def l : JoinedOrSeparate<["-"], "l">, MetaVarName<"<libName>">,
7676
HelpText<"Root name of library to use">;
7777

78+
def lto_O : Joined<["--"], "lto-O">, MetaVarName<"<opt-level>">,
79+
HelpText<"Optimization level for LTO">;
80+
7881
def m : JoinedOrSeparate<["-"], "m">,
7982
HelpText<"Set target emulation">;
8083

‎lld/test/ELF/lto/opt-level.ll

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
; RUN: llvm-as -o %t.o %s
2+
; RUN: ld.lld -o %t0 -m elf_x86_64 -e main --lto-O0 %t.o
3+
; RUN: llvm-nm %t0 | FileCheck --check-prefix=CHECK-O0 %s
4+
; RUN: ld.lld -o %t2 -m elf_x86_64 -e main --lto-O2 %t.o
5+
; RUN: llvm-nm %t2 | FileCheck --check-prefix=CHECK-O2 %s
6+
; RUN: ld.lld -o %t2a -m elf_x86_64 -e main %t.o
7+
; RUN: llvm-nm %t2a | FileCheck --check-prefix=CHECK-O2 %s
8+
9+
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
10+
target triple = "x86_64-unknown-linux-gnu"
11+
12+
; CHECK-O0: foo
13+
; CHECK-O2-NOT: foo
14+
define internal void @foo() {
15+
ret void
16+
}
17+
18+
define void @main() {
19+
call void @foo()
20+
ret void
21+
}

0 commit comments

Comments
 (0)
Please sign in to comment.