blob: ebe5def099d541a4f280d04dc89baa94a244c793 [file] [log] [blame]
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001//===-- llvm-lto2: test harness for the resolution-based LTO interface ----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This program takes in a list of bitcode files, links them and performs
11// link-time optimization according to the provided symbol resolutions using the
12// resolution-based LTO interface, and outputs one or more object files.
13//
14// This program is intended to eventually replace llvm-lto which uses the legacy
15// LTO interface.
16//
17//===----------------------------------------------------------------------===//
18
Mehdi Aminiadc0e262016-08-23 21:30:12 +000019#include "llvm/LTO/Caching.h"
Peter Collingbournef4257522016-12-08 05:28:30 +000020#include "llvm/CodeGen/CommandFlags.h"
Mehdi Amini14f19bd2016-12-23 23:54:17 +000021#include "llvm/IR/DiagnosticPrinter.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000022#include "llvm/LTO/LTO.h"
23#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/TargetSelect.h"
Teresa Johnsonec544c52016-10-19 17:35:01 +000025#include "llvm/Support/Threading.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000026
27using namespace llvm;
28using namespace lto;
29using namespace object;
30
Teresa Johnson002af9b2016-10-31 22:12:21 +000031static cl::opt<char>
32 OptLevel("O", cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
33 "(default = '-O2')"),
34 cl::Prefix, cl::ZeroOrMore, cl::init('2'));
35
Peter Collingbournef4257522016-12-08 05:28:30 +000036static cl::opt<char> CGOptLevel(
37 "cg-opt-level",
38 cl::desc("Codegen optimization level (0, 1, 2 or 3, default = '2')"),
39 cl::init('2'));
40
Teresa Johnson9ba95f92016-08-11 14:58:12 +000041static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
42 cl::desc("<input bitcode files>"));
43
44static cl::opt<std::string> OutputFilename("o", cl::Required,
45 cl::desc("Output filename"),
46 cl::value_desc("filename"));
47
Mehdi Aminiadc0e262016-08-23 21:30:12 +000048static cl::opt<std::string> CacheDir("cache-dir", cl::desc("Cache Directory"),
49 cl::value_desc("directory"));
50
Davide Italianoec9612d2016-09-07 17:46:16 +000051static cl::opt<std::string> OptPipeline("opt-pipeline",
52 cl::desc("Optimizer Pipeline"),
53 cl::value_desc("pipeline"));
54
Davide Italiano14e9e8a2016-09-16 21:03:21 +000055static cl::opt<std::string> AAPipeline("aa-pipeline",
56 cl::desc("Alias Analysis Pipeline"),
57 cl::value_desc("aapipeline"));
58
Teresa Johnson9ba95f92016-08-11 14:58:12 +000059static cl::opt<bool> SaveTemps("save-temps", cl::desc("Save temporary files"));
60
Mehdi Amini458f8052016-08-19 23:54:40 +000061static cl::opt<bool>
62 ThinLTODistributedIndexes("thinlto-distributed-indexes", cl::init(false),
63 cl::desc("Write out individual index and "
64 "import files for the "
65 "distributed backend case"));
66
Mehdi Amini95c1f912016-12-23 23:54:34 +000067static cl::opt<int> Threads("thinlto-threads",
Teresa Johnsonec544c52016-10-19 17:35:01 +000068 cl::init(llvm::heavyweight_hardware_concurrency()));
Mehdi Amini458f8052016-08-19 23:54:40 +000069
Teresa Johnson9ba95f92016-08-11 14:58:12 +000070static cl::list<std::string> SymbolResolutions(
71 "r",
72 cl::desc("Specify a symbol resolution: filename,symbolname,resolution\n"
73 "where \"resolution\" is a sequence (which may be empty) of the\n"
74 "following characters:\n"
75 " p - prevailing: the linker has chosen this definition of the\n"
76 " symbol\n"
77 " l - local: the definition of this symbol is unpreemptable at\n"
78 " runtime and is known to be in this linkage unit\n"
79 " x - externally visible: the definition of this symbol is\n"
80 " visible outside of the LTO unit\n"
81 "A resolution for each symbol must be specified."),
82 cl::ZeroOrMore);
83
Peter Collingbournef4257522016-12-08 05:28:30 +000084static cl::opt<std::string> OverrideTriple(
85 "override-triple",
86 cl::desc("Replace target triples in input files with this triple"));
87
88static cl::opt<std::string> DefaultTriple(
89 "default-triple",
90 cl::desc(
91 "Replace unspecified target triples in input files with this triple"));
92
Davide Italianoebd47192017-02-12 03:31:30 +000093static cl::opt<std::string>
94 OptRemarksOutput("pass-remarks-output",
95 cl::desc("YAML output file for optimization remarks"));
96
Davide Italiano6cb6f992017-02-12 05:05:35 +000097static cl::opt<bool> OptRemarksWithsHotness(
98 "pass-remarks-with-hotness",
99 cl::desc("Whether to include hotness informations in the remarks.\n"
100 "Has effect only if -pass-remarks-output is specified."));
101
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000102static void check(Error E, std::string Msg) {
103 if (!E)
104 return;
105 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) {
Davide Italianofb6ed912017-02-12 03:42:09 +0000106 errs() << "llvm-lto2: " << Msg << ": " << EIB.message().c_str() << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000107 });
108 exit(1);
109}
110
111template <typename T> static T check(Expected<T> E, std::string Msg) {
112 if (E)
113 return std::move(*E);
114 check(E.takeError(), Msg);
115 return T();
116}
117
118static void check(std::error_code EC, std::string Msg) {
119 check(errorCodeToError(EC), Msg);
120}
121
122template <typename T> static T check(ErrorOr<T> E, std::string Msg) {
123 if (E)
124 return std::move(*E);
125 check(E.getError(), Msg);
126 return T();
127}
128
129int main(int argc, char **argv) {
130 InitializeAllTargets();
131 InitializeAllTargetMCs();
132 InitializeAllAsmPrinters();
133 InitializeAllAsmParsers();
134
135 cl::ParseCommandLineOptions(argc, argv, "Resolution-based LTO test harness");
136
Peter Collingbournea5b71642016-11-30 23:19:05 +0000137 // FIXME: Workaround PR30396 which means that a symbol can appear
138 // more than once if it is defined in module-level assembly and
139 // has a GV declaration. We allow (file, symbol) pairs to have multiple
140 // resolutions and apply them in the order observed.
141 std::map<std::pair<std::string, std::string>, std::list<SymbolResolution>>
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000142 CommandLineResolutions;
143 for (std::string R : SymbolResolutions) {
144 StringRef Rest = R;
145 StringRef FileName, SymbolName;
146 std::tie(FileName, Rest) = Rest.split(',');
147 if (Rest.empty()) {
148 llvm::errs() << "invalid resolution: " << R << '\n';
149 return 1;
150 }
151 std::tie(SymbolName, Rest) = Rest.split(',');
152 SymbolResolution Res;
153 for (char C : Rest) {
154 if (C == 'p')
155 Res.Prevailing = true;
156 else if (C == 'l')
157 Res.FinalDefinitionInLinkageUnit = true;
158 else if (C == 'x')
159 Res.VisibleToRegularObj = true;
160 else
161 llvm::errs() << "invalid character " << C << " in resolution: " << R
162 << '\n';
163 }
Peter Collingbournea5b71642016-11-30 23:19:05 +0000164 CommandLineResolutions[{FileName, SymbolName}].push_back(Res);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000165 }
166
167 std::vector<std::unique_ptr<MemoryBuffer>> MBs;
168
169 Config Conf;
Mehdi Amini14f19bd2016-12-23 23:54:17 +0000170 Conf.DiagHandler = [](const DiagnosticInfo &DI) {
171 DiagnosticPrinterRawOStream DP(errs());
172 DI.print(DP);
173 errs() << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000174 exit(1);
175 };
176
Peter Collingbournef4257522016-12-08 05:28:30 +0000177 Conf.CPU = MCPU;
178 Conf.Options = InitTargetOptionsFromCodeGenFlags();
179 Conf.MAttrs = MAttrs;
180 if (auto RM = getRelocModel())
181 Conf.RelocModel = *RM;
182 Conf.CodeModel = CMModel;
183
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000184 if (SaveTemps)
Mehdi Aminieccffad2016-08-18 00:12:33 +0000185 check(Conf.addSaveTemps(OutputFilename + "."),
186 "Config::addSaveTemps failed");
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000187
Davide Italianoebd47192017-02-12 03:31:30 +0000188 // Optimization remarks.
189 Conf.RemarksFilename = OptRemarksOutput;
Davide Italiano6cb6f992017-02-12 05:05:35 +0000190 Conf.RemarksWithHotness = OptRemarksWithsHotness;
Davide Italianoebd47192017-02-12 03:31:30 +0000191
Davide Italianoec9612d2016-09-07 17:46:16 +0000192 // Run a custom pipeline, if asked for.
193 Conf.OptPipeline = OptPipeline;
Davide Italiano14e9e8a2016-09-16 21:03:21 +0000194 Conf.AAPipeline = AAPipeline;
Davide Italianoec9612d2016-09-07 17:46:16 +0000195
Teresa Johnson002af9b2016-10-31 22:12:21 +0000196 Conf.OptLevel = OptLevel - '0';
Peter Collingbournef4257522016-12-08 05:28:30 +0000197 switch (CGOptLevel) {
198 case '0':
199 Conf.CGOptLevel = CodeGenOpt::None;
200 break;
201 case '1':
202 Conf.CGOptLevel = CodeGenOpt::Less;
203 break;
204 case '2':
205 Conf.CGOptLevel = CodeGenOpt::Default;
206 break;
207 case '3':
208 Conf.CGOptLevel = CodeGenOpt::Aggressive;
209 break;
210 default:
211 llvm::errs() << "invalid cg optimization level: " << CGOptLevel << '\n';
212 return 1;
213 }
214
215 Conf.OverrideTriple = OverrideTriple;
216 Conf.DefaultTriple = DefaultTriple;
Teresa Johnson002af9b2016-10-31 22:12:21 +0000217
Mehdi Amini458f8052016-08-19 23:54:40 +0000218 ThinBackend Backend;
219 if (ThinLTODistributedIndexes)
220 Backend = createWriteIndexesThinBackend("", "", true, "");
221 else
222 Backend = createInProcessThinBackend(Threads);
223 LTO Lto(std::move(Conf), std::move(Backend));
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000224
225 bool HasErrors = false;
226 for (std::string F : InputFilenames) {
227 std::unique_ptr<MemoryBuffer> MB = check(MemoryBuffer::getFile(F), F);
228 std::unique_ptr<InputFile> Input =
229 check(InputFile::create(MB->getMemBufferRef()), F);
230
231 std::vector<SymbolResolution> Res;
232 for (const InputFile::Symbol &Sym : Input->symbols()) {
233 auto I = CommandLineResolutions.find({F, Sym.getName()});
234 if (I == CommandLineResolutions.end()) {
235 llvm::errs() << argv[0] << ": missing symbol resolution for " << F
236 << ',' << Sym.getName() << '\n';
237 HasErrors = true;
238 } else {
Peter Collingbournea5b71642016-11-30 23:19:05 +0000239 Res.push_back(I->second.front());
240 I->second.pop_front();
241 if (I->second.empty())
242 CommandLineResolutions.erase(I);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000243 }
244 }
245
246 if (HasErrors)
247 continue;
248
249 MBs.push_back(std::move(MB));
250 check(Lto.add(std::move(Input), Res), F);
251 }
252
253 if (!CommandLineResolutions.empty()) {
254 HasErrors = true;
255 for (auto UnusedRes : CommandLineResolutions)
256 llvm::errs() << argv[0] << ": unused symbol resolution for "
257 << UnusedRes.first.first << ',' << UnusedRes.first.second
258 << '\n';
259 }
260 if (HasErrors)
261 return 1;
262
Peter Collingbourne80186a52016-09-23 21:33:43 +0000263 auto AddStream =
264 [&](size_t Task) -> std::unique_ptr<lto::NativeObjectStream> {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000265 std::string Path = OutputFilename + "." + utostr(Task);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000266
Peter Collingbourne80186a52016-09-23 21:33:43 +0000267 std::error_code EC;
268 auto S = llvm::make_unique<raw_fd_ostream>(Path, EC, sys::fs::F_None);
269 check(EC, Path);
270 return llvm::make_unique<lto::NativeObjectStream>(std::move(S));
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000271 };
272
Peter Collingbourne80186a52016-09-23 21:33:43 +0000273 auto AddFile = [&](size_t Task, StringRef Path) {
274 auto ReloadedBufferOrErr = MemoryBuffer::getFile(Path);
275 if (auto EC = ReloadedBufferOrErr.getError())
276 report_fatal_error(Twine("Can't reload cached file '") + Path + "': " +
277 EC.message() + "\n");
278
279 *AddStream(Task)->OS << (*ReloadedBufferOrErr)->getBuffer();
280 };
281
282 NativeObjectCache Cache;
283 if (!CacheDir.empty())
284 Cache = localCache(CacheDir, AddFile);
285
286 check(Lto.run(AddStream, Cache), "LTO::run failed");
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000287}