]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/Driver.cpp
Merge ^/head r312720 through r312893.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / ELF / Driver.cpp
1 //===- Driver.cpp ---------------------------------------------------------===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "Driver.h"
11 #include "Config.h"
12 #include "Error.h"
13 #include "ICF.h"
14 #include "InputFiles.h"
15 #include "InputSection.h"
16 #include "LinkerScript.h"
17 #include "Memory.h"
18 #include "Strings.h"
19 #include "SymbolTable.h"
20 #include "Target.h"
21 #include "Threads.h"
22 #include "Writer.h"
23 #include "lld/Config/Version.h"
24 #include "lld/Driver/Driver.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/ADT/StringSwitch.h"
27 #include "llvm/Object/Decompressor.h"
28 #include "llvm/Support/CommandLine.h"
29 #include "llvm/Support/Path.h"
30 #include "llvm/Support/TarWriter.h"
31 #include "llvm/Support/TargetSelect.h"
32 #include "llvm/Support/raw_ostream.h"
33 #include <cstdlib>
34 #include <utility>
35
36 using namespace llvm;
37 using namespace llvm::ELF;
38 using namespace llvm::object;
39 using namespace llvm::sys;
40
41 using namespace lld;
42 using namespace lld::elf;
43
44 Configuration *elf::Config;
45 LinkerDriver *elf::Driver;
46
47 BumpPtrAllocator elf::BAlloc;
48 StringSaver elf::Saver{BAlloc};
49 std::vector<SpecificAllocBase *> elf::SpecificAllocBase::Instances;
50
51 bool elf::link(ArrayRef<const char *> Args, bool CanExitEarly,
52                raw_ostream &Error) {
53   ErrorCount = 0;
54   ErrorOS = &Error;
55   Argv0 = Args[0];
56   Tar = nullptr;
57
58   Config = make<Configuration>();
59   Driver = make<LinkerDriver>();
60   ScriptConfig = make<ScriptConfiguration>();
61
62   Driver->main(Args, CanExitEarly);
63   freeArena();
64   return !ErrorCount;
65 }
66
67 // Parses a linker -m option.
68 static std::tuple<ELFKind, uint16_t, uint8_t> parseEmulation(StringRef Emul) {
69   uint8_t OSABI = 0;
70   StringRef S = Emul;
71   if (S.endswith("_fbsd")) {
72     S = S.drop_back(5);
73     OSABI = ELFOSABI_FREEBSD;
74   }
75
76   std::pair<ELFKind, uint16_t> Ret =
77       StringSwitch<std::pair<ELFKind, uint16_t>>(S)
78           .Cases("aarch64elf", "aarch64linux", {ELF64LEKind, EM_AARCH64})
79           .Case("armelf_linux_eabi", {ELF32LEKind, EM_ARM})
80           .Case("elf32_x86_64", {ELF32LEKind, EM_X86_64})
81           .Case("elf32btsmip", {ELF32BEKind, EM_MIPS})
82           .Case("elf32ltsmip", {ELF32LEKind, EM_MIPS})
83           .Case("elf32btsmipn32", {ELF32BEKind, EM_MIPS})
84           .Case("elf32ltsmipn32", {ELF32LEKind, EM_MIPS})
85           .Case("elf32ppc", {ELF32BEKind, EM_PPC})
86           .Case("elf64btsmip", {ELF64BEKind, EM_MIPS})
87           .Case("elf64ltsmip", {ELF64LEKind, EM_MIPS})
88           .Case("elf64ppc", {ELF64BEKind, EM_PPC64})
89           .Cases("elf_amd64", "elf_x86_64", {ELF64LEKind, EM_X86_64})
90           .Case("elf_i386", {ELF32LEKind, EM_386})
91           .Case("elf_iamcu", {ELF32LEKind, EM_IAMCU})
92           .Default({ELFNoneKind, EM_NONE});
93
94   if (Ret.first == ELFNoneKind) {
95     if (S == "i386pe" || S == "i386pep" || S == "thumb2pe")
96       error("Windows targets are not supported on the ELF frontend: " + Emul);
97     else
98       error("unknown emulation: " + Emul);
99   }
100   return std::make_tuple(Ret.first, Ret.second, OSABI);
101 }
102
103 // Returns slices of MB by parsing MB as an archive file.
104 // Each slice consists of a member file in the archive.
105 std::vector<MemoryBufferRef>
106 LinkerDriver::getArchiveMembers(MemoryBufferRef MB) {
107   std::unique_ptr<Archive> File =
108       check(Archive::create(MB),
109             MB.getBufferIdentifier() + ": failed to parse archive");
110
111   std::vector<MemoryBufferRef> V;
112   Error Err = Error::success();
113   for (const ErrorOr<Archive::Child> &COrErr : File->children(Err)) {
114     Archive::Child C =
115         check(COrErr, MB.getBufferIdentifier() +
116                           ": could not get the child of the archive");
117     MemoryBufferRef MBRef =
118         check(C.getMemoryBufferRef(),
119               MB.getBufferIdentifier() +
120                   ": could not get the buffer for a child of the archive");
121     V.push_back(MBRef);
122   }
123   if (Err)
124     fatal(MB.getBufferIdentifier() + ": Archive::children failed: " +
125           toString(std::move(Err)));
126
127   // Take ownership of memory buffers created for members of thin archives.
128   for (std::unique_ptr<MemoryBuffer> &MB : File->takeThinBuffers())
129     make<std::unique_ptr<MemoryBuffer>>(std::move(MB));
130
131   return V;
132 }
133
134 // Opens and parses a file. Path has to be resolved already.
135 // Newly created memory buffers are owned by this driver.
136 void LinkerDriver::addFile(StringRef Path) {
137   using namespace sys::fs;
138
139   Optional<MemoryBufferRef> Buffer = readFile(Path);
140   if (!Buffer.hasValue())
141     return;
142   MemoryBufferRef MBRef = *Buffer;
143
144   if (InBinary) {
145     Files.push_back(make<BinaryFile>(MBRef));
146     return;
147   }
148
149   switch (identify_magic(MBRef.getBuffer())) {
150   case file_magic::unknown:
151     readLinkerScript(MBRef);
152     return;
153   case file_magic::archive:
154     if (InWholeArchive) {
155       for (MemoryBufferRef MB : getArchiveMembers(MBRef))
156         Files.push_back(createObjectFile(MB, Path));
157       return;
158     }
159     Files.push_back(make<ArchiveFile>(MBRef));
160     return;
161   case file_magic::elf_shared_object:
162     if (Config->Relocatable) {
163       error("attempted static link of dynamic object " + Path);
164       return;
165     }
166     Files.push_back(createSharedFile(MBRef));
167     return;
168   default:
169     if (InLib)
170       Files.push_back(make<LazyObjectFile>(MBRef));
171     else
172       Files.push_back(createObjectFile(MBRef));
173   }
174 }
175
176 // Add a given library by searching it from input search paths.
177 void LinkerDriver::addLibrary(StringRef Name) {
178   if (Optional<std::string> Path = searchLibrary(Name))
179     addFile(*Path);
180   else
181     error("unable to find library -l" + Name);
182 }
183
184 // This function is called on startup. We need this for LTO since
185 // LTO calls LLVM functions to compile bitcode files to native code.
186 // Technically this can be delayed until we read bitcode files, but
187 // we don't bother to do lazily because the initialization is fast.
188 static void initLLVM(opt::InputArgList &Args) {
189   InitializeAllTargets();
190   InitializeAllTargetMCs();
191   InitializeAllAsmPrinters();
192   InitializeAllAsmParsers();
193
194   // Parse and evaluate -mllvm options.
195   std::vector<const char *> V;
196   V.push_back("lld (LLVM option parsing)");
197   for (auto *Arg : Args.filtered(OPT_mllvm))
198     V.push_back(Arg->getValue());
199   cl::ParseCommandLineOptions(V.size(), V.data());
200 }
201
202 // Some command line options or some combinations of them are not allowed.
203 // This function checks for such errors.
204 static void checkOptions(opt::InputArgList &Args) {
205   // The MIPS ABI as of 2016 does not support the GNU-style symbol lookup
206   // table which is a relatively new feature.
207   if (Config->EMachine == EM_MIPS && Config->GnuHash)
208     error("the .gnu.hash section is not compatible with the MIPS target.");
209
210   if (Config->Pie && Config->Shared)
211     error("-shared and -pie may not be used together");
212
213   if (Config->Relocatable) {
214     if (Config->Shared)
215       error("-r and -shared may not be used together");
216     if (Config->GcSections)
217       error("-r and --gc-sections may not be used together");
218     if (Config->ICF)
219       error("-r and --icf may not be used together");
220     if (Config->Pie)
221       error("-r and -pie may not be used together");
222   }
223 }
224
225 static StringRef getString(opt::InputArgList &Args, unsigned Key,
226                            StringRef Default = "") {
227   if (auto *Arg = Args.getLastArg(Key))
228     return Arg->getValue();
229   return Default;
230 }
231
232 static int getInteger(opt::InputArgList &Args, unsigned Key, int Default) {
233   int V = Default;
234   if (auto *Arg = Args.getLastArg(Key)) {
235     StringRef S = Arg->getValue();
236     if (S.getAsInteger(10, V))
237       error(Arg->getSpelling() + ": number expected, but got " + S);
238   }
239   return V;
240 }
241
242 static const char *getReproduceOption(opt::InputArgList &Args) {
243   if (auto *Arg = Args.getLastArg(OPT_reproduce))
244     return Arg->getValue();
245   return getenv("LLD_REPRODUCE");
246 }
247
248 static bool hasZOption(opt::InputArgList &Args, StringRef Key) {
249   for (auto *Arg : Args.filtered(OPT_z))
250     if (Key == Arg->getValue())
251       return true;
252   return false;
253 }
254
255 static uint64_t getZOptionValue(opt::InputArgList &Args, StringRef Key,
256                                 uint64_t Default) {
257   for (auto *Arg : Args.filtered(OPT_z)) {
258     StringRef Value = Arg->getValue();
259     size_t Pos = Value.find("=");
260     if (Pos != StringRef::npos && Key == Value.substr(0, Pos)) {
261       Value = Value.substr(Pos + 1);
262       uint64_t Result;
263       if (Value.getAsInteger(0, Result))
264         error("invalid " + Key + ": " + Value);
265       return Result;
266     }
267   }
268   return Default;
269 }
270
271 void LinkerDriver::main(ArrayRef<const char *> ArgsArr, bool CanExitEarly) {
272   ELFOptTable Parser;
273   opt::InputArgList Args = Parser.parse(ArgsArr.slice(1));
274
275   // Interpret this flag early because error() depends on them.
276   Config->ErrorLimit = getInteger(Args, OPT_error_limit, 20);
277
278   // Handle -help
279   if (Args.hasArg(OPT_help)) {
280     printHelp(ArgsArr[0]);
281     return;
282   }
283
284   // GNU linkers disagree here. Though both -version and -v are mentioned
285   // in help to print the version information, GNU ld just normally exits,
286   // while gold can continue linking. We are compatible with ld.bfd here.
287   if (Args.hasArg(OPT_version) || Args.hasArg(OPT_v))
288     outs() << getLLDVersion() << "\n";
289   if (Args.hasArg(OPT_version))
290     return;
291
292   Config->ExitEarly = CanExitEarly && !Args.hasArg(OPT_full_shutdown);
293
294   if (const char *Path = getReproduceOption(Args)) {
295     // Note that --reproduce is a debug option so you can ignore it
296     // if you are trying to understand the whole picture of the code.
297     Expected<std::unique_ptr<TarWriter>> ErrOrWriter =
298         TarWriter::create(Path, path::stem(Path));
299     if (ErrOrWriter) {
300       Tar = ErrOrWriter->get();
301       Tar->append("response.txt", createResponseFile(Args));
302       Tar->append("version.txt", getLLDVersion() + "\n");
303       make<std::unique_ptr<TarWriter>>(std::move(*ErrOrWriter));
304     } else {
305       error(Twine("--reproduce: failed to open ") + Path + ": " +
306             toString(ErrOrWriter.takeError()));
307     }
308   }
309
310   readConfigs(Args);
311   initLLVM(Args);
312   createFiles(Args);
313   inferMachineType();
314   checkOptions(Args);
315   if (ErrorCount)
316     return;
317
318   switch (Config->EKind) {
319   case ELF32LEKind:
320     link<ELF32LE>(Args);
321     return;
322   case ELF32BEKind:
323     link<ELF32BE>(Args);
324     return;
325   case ELF64LEKind:
326     link<ELF64LE>(Args);
327     return;
328   case ELF64BEKind:
329     link<ELF64BE>(Args);
330     return;
331   default:
332     llvm_unreachable("unknown Config->EKind");
333   }
334 }
335
336 static UnresolvedPolicy getUnresolvedSymbolOption(opt::InputArgList &Args) {
337   if (Args.hasArg(OPT_noinhibit_exec))
338     return UnresolvedPolicy::Warn;
339   if (Args.hasArg(OPT_no_undefined) || hasZOption(Args, "defs"))
340     return UnresolvedPolicy::NoUndef;
341   if (Config->Relocatable)
342     return UnresolvedPolicy::Ignore;
343
344   if (auto *Arg = Args.getLastArg(OPT_unresolved_symbols)) {
345     StringRef S = Arg->getValue();
346     if (S == "ignore-all" || S == "ignore-in-object-files")
347       return UnresolvedPolicy::Ignore;
348     if (S == "ignore-in-shared-libs" || S == "report-all")
349       return UnresolvedPolicy::ReportError;
350     error("unknown --unresolved-symbols value: " + S);
351   }
352   return UnresolvedPolicy::ReportError;
353 }
354
355 static Target2Policy getTarget2Option(opt::InputArgList &Args) {
356   if (auto *Arg = Args.getLastArg(OPT_target2)) {
357     StringRef S = Arg->getValue();
358     if (S == "rel")
359       return Target2Policy::Rel;
360     if (S == "abs")
361       return Target2Policy::Abs;
362     if (S == "got-rel")
363       return Target2Policy::GotRel;
364     error("unknown --target2 option: " + S);
365   }
366   return Target2Policy::GotRel;
367 }
368
369 static bool isOutputFormatBinary(opt::InputArgList &Args) {
370   if (auto *Arg = Args.getLastArg(OPT_oformat)) {
371     StringRef S = Arg->getValue();
372     if (S == "binary")
373       return true;
374     error("unknown --oformat value: " + S);
375   }
376   return false;
377 }
378
379 static bool getArg(opt::InputArgList &Args, unsigned K1, unsigned K2,
380                    bool Default) {
381   if (auto *Arg = Args.getLastArg(K1, K2))
382     return Arg->getOption().getID() == K1;
383   return Default;
384 }
385
386 static DiscardPolicy getDiscardOption(opt::InputArgList &Args) {
387   if (Config->Relocatable)
388     return DiscardPolicy::None;
389   auto *Arg =
390       Args.getLastArg(OPT_discard_all, OPT_discard_locals, OPT_discard_none);
391   if (!Arg)
392     return DiscardPolicy::Default;
393   if (Arg->getOption().getID() == OPT_discard_all)
394     return DiscardPolicy::All;
395   if (Arg->getOption().getID() == OPT_discard_locals)
396     return DiscardPolicy::Locals;
397   return DiscardPolicy::None;
398 }
399
400 static StripPolicy getStripOption(opt::InputArgList &Args) {
401   if (auto *Arg = Args.getLastArg(OPT_strip_all, OPT_strip_debug)) {
402     if (Arg->getOption().getID() == OPT_strip_all)
403       return StripPolicy::All;
404     return StripPolicy::Debug;
405   }
406   return StripPolicy::None;
407 }
408
409 static uint64_t parseSectionAddress(StringRef S, opt::Arg *Arg) {
410   uint64_t VA = 0;
411   if (S.startswith("0x"))
412     S = S.drop_front(2);
413   if (S.getAsInteger(16, VA))
414     error("invalid argument: " + toString(Arg));
415   return VA;
416 }
417
418 static StringMap<uint64_t> getSectionStartMap(opt::InputArgList &Args) {
419   StringMap<uint64_t> Ret;
420   for (auto *Arg : Args.filtered(OPT_section_start)) {
421     StringRef Name;
422     StringRef Addr;
423     std::tie(Name, Addr) = StringRef(Arg->getValue()).split('=');
424     Ret[Name] = parseSectionAddress(Addr, Arg);
425   }
426
427   if (auto *Arg = Args.getLastArg(OPT_Ttext))
428     Ret[".text"] = parseSectionAddress(Arg->getValue(), Arg);
429   if (auto *Arg = Args.getLastArg(OPT_Tdata))
430     Ret[".data"] = parseSectionAddress(Arg->getValue(), Arg);
431   if (auto *Arg = Args.getLastArg(OPT_Tbss))
432     Ret[".bss"] = parseSectionAddress(Arg->getValue(), Arg);
433   return Ret;
434 }
435
436 static SortSectionPolicy getSortKind(opt::InputArgList &Args) {
437   StringRef S = getString(Args, OPT_sort_section);
438   if (S == "alignment")
439     return SortSectionPolicy::Alignment;
440   if (S == "name")
441     return SortSectionPolicy::Name;
442   if (!S.empty())
443     error("unknown --sort-section rule: " + S);
444   return SortSectionPolicy::Default;
445 }
446
447 static std::vector<StringRef> getLines(MemoryBufferRef MB) {
448   SmallVector<StringRef, 0> Arr;
449   MB.getBuffer().split(Arr, '\n');
450
451   std::vector<StringRef> Ret;
452   for (StringRef S : Arr) {
453     S = S.trim();
454     if (!S.empty())
455       Ret.push_back(S);
456   }
457   return Ret;
458 }
459
460 // Initializes Config members by the command line options.
461 void LinkerDriver::readConfigs(opt::InputArgList &Args) {
462   for (auto *Arg : Args.filtered(OPT_L))
463     Config->SearchPaths.push_back(Arg->getValue());
464
465   std::vector<StringRef> RPaths;
466   for (auto *Arg : Args.filtered(OPT_rpath))
467     RPaths.push_back(Arg->getValue());
468   if (!RPaths.empty())
469     Config->RPath = llvm::join(RPaths.begin(), RPaths.end(), ":");
470
471   if (auto *Arg = Args.getLastArg(OPT_m)) {
472     // Parse ELF{32,64}{LE,BE} and CPU type.
473     StringRef S = Arg->getValue();
474     std::tie(Config->EKind, Config->EMachine, Config->OSABI) =
475         parseEmulation(S);
476     Config->MipsN32Abi = (S == "elf32btsmipn32" || S == "elf32ltsmipn32");
477     Config->Emulation = S;
478   }
479
480   Config->AllowMultipleDefinition = Args.hasArg(OPT_allow_multiple_definition);
481   Config->Bsymbolic = Args.hasArg(OPT_Bsymbolic);
482   Config->BsymbolicFunctions = Args.hasArg(OPT_Bsymbolic_functions);
483   Config->Demangle = getArg(Args, OPT_demangle, OPT_no_demangle, true);
484   Config->DisableVerify = Args.hasArg(OPT_disable_verify);
485   Config->EhFrameHdr = Args.hasArg(OPT_eh_frame_hdr);
486   Config->EnableNewDtags = !Args.hasArg(OPT_disable_new_dtags);
487   Config->ExportDynamic = Args.hasArg(OPT_export_dynamic);
488   Config->FatalWarnings = Args.hasArg(OPT_fatal_warnings);
489   Config->GcSections = getArg(Args, OPT_gc_sections, OPT_no_gc_sections, false);
490   Config->GdbIndex = Args.hasArg(OPT_gdb_index);
491   Config->ICF = Args.hasArg(OPT_icf);
492   Config->NoGnuUnique = Args.hasArg(OPT_no_gnu_unique);
493   Config->NoUndefinedVersion = Args.hasArg(OPT_no_undefined_version);
494   Config->Nostdlib = Args.hasArg(OPT_nostdlib);
495   Config->OMagic = Args.hasArg(OPT_omagic);
496   Config->Pie = getArg(Args, OPT_pie, OPT_nopie, false);
497   Config->PrintGcSections = Args.hasArg(OPT_print_gc_sections);
498   Config->Relocatable = Args.hasArg(OPT_relocatable);
499   Config->Discard = getDiscardOption(Args);
500   Config->SaveTemps = Args.hasArg(OPT_save_temps);
501   Config->SingleRoRx = Args.hasArg(OPT_no_rosegment);
502   Config->Shared = Args.hasArg(OPT_shared);
503   Config->Target1Rel = getArg(Args, OPT_target1_rel, OPT_target1_abs, false);
504   Config->Threads = getArg(Args, OPT_threads, OPT_no_threads, true);
505   Config->Trace = Args.hasArg(OPT_trace);
506   Config->Verbose = Args.hasArg(OPT_verbose);
507   Config->WarnCommon = Args.hasArg(OPT_warn_common);
508
509   Config->DynamicLinker = getString(Args, OPT_dynamic_linker);
510   Config->Entry = getString(Args, OPT_entry);
511   Config->Fini = getString(Args, OPT_fini, "_fini");
512   Config->Init = getString(Args, OPT_init, "_init");
513   Config->LTOAAPipeline = getString(Args, OPT_lto_aa_pipeline);
514   Config->LTONewPmPasses = getString(Args, OPT_lto_newpm_passes);
515   Config->OutputFile = getString(Args, OPT_o);
516   Config->SoName = getString(Args, OPT_soname);
517   Config->Sysroot = getString(Args, OPT_sysroot);
518
519   Config->Optimize = getInteger(Args, OPT_O, 1);
520   Config->LTOO = getInteger(Args, OPT_lto_O, 2);
521   if (Config->LTOO > 3)
522     error("invalid optimization level for LTO: " + getString(Args, OPT_lto_O));
523   Config->LTOPartitions = getInteger(Args, OPT_lto_partitions, 1);
524   if (Config->LTOPartitions == 0)
525     error("--lto-partitions: number of threads must be > 0");
526   Config->ThinLTOJobs = getInteger(Args, OPT_thinlto_jobs, -1u);
527   if (Config->ThinLTOJobs == 0)
528     error("--thinlto-jobs: number of threads must be > 0");
529
530   Config->ZCombreloc = !hasZOption(Args, "nocombreloc");
531   Config->ZExecstack = hasZOption(Args, "execstack");
532   Config->ZNodelete = hasZOption(Args, "nodelete");
533   Config->ZNow = hasZOption(Args, "now");
534   Config->ZOrigin = hasZOption(Args, "origin");
535   Config->ZRelro = !hasZOption(Args, "norelro");
536   Config->ZStackSize = getZOptionValue(Args, "stack-size", -1);
537   Config->ZWxneeded = hasZOption(Args, "wxneeded");
538
539   Config->OFormatBinary = isOutputFormatBinary(Args);
540   Config->SectionStartMap = getSectionStartMap(Args);
541   Config->SortSection = getSortKind(Args);
542   Config->Target2 = getTarget2Option(Args);
543   Config->UnresolvedSymbols = getUnresolvedSymbolOption(Args);
544
545   // --omagic is an option to create old-fashioned executables in which
546   // .text segments are writable. Today, the option is still in use to
547   // create special-purpose programs such as boot loaders. It doesn't
548   // make sense to create PT_GNU_RELRO for such executables.
549   if (Config->OMagic)
550     Config->ZRelro = false;
551
552   if (!Config->Relocatable)
553     Config->Strip = getStripOption(Args);
554
555   // Config->Pic is true if we are generating position-independent code.
556   Config->Pic = Config->Pie || Config->Shared;
557
558   if (auto *Arg = Args.getLastArg(OPT_hash_style)) {
559     StringRef S = Arg->getValue();
560     if (S == "gnu") {
561       Config->GnuHash = true;
562       Config->SysvHash = false;
563     } else if (S == "both") {
564       Config->GnuHash = true;
565     } else if (S != "sysv")
566       error("unknown hash style: " + S);
567   }
568
569   // Parse --build-id or --build-id=<style>.
570   if (Args.hasArg(OPT_build_id))
571     Config->BuildId = BuildIdKind::Fast;
572   if (auto *Arg = Args.getLastArg(OPT_build_id_eq)) {
573     StringRef S = Arg->getValue();
574     if (S == "md5") {
575       Config->BuildId = BuildIdKind::Md5;
576     } else if (S == "sha1" || S == "tree") {
577       Config->BuildId = BuildIdKind::Sha1;
578     } else if (S == "uuid") {
579       Config->BuildId = BuildIdKind::Uuid;
580     } else if (S == "none") {
581       Config->BuildId = BuildIdKind::None;
582     } else if (S.startswith("0x")) {
583       Config->BuildId = BuildIdKind::Hexstring;
584       Config->BuildIdVector = parseHex(S.substr(2));
585     } else {
586       error("unknown --build-id style: " + S);
587     }
588   }
589
590   for (auto *Arg : Args.filtered(OPT_auxiliary))
591     Config->AuxiliaryList.push_back(Arg->getValue());
592   if (!Config->Shared && !Config->AuxiliaryList.empty())
593     error("-f may not be used without -shared");
594
595   for (auto *Arg : Args.filtered(OPT_undefined))
596     Config->Undefined.push_back(Arg->getValue());
597
598   if (auto *Arg = Args.getLastArg(OPT_dynamic_list))
599     if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
600       readDynamicList(*Buffer);
601
602   if (auto *Arg = Args.getLastArg(OPT_symbol_ordering_file))
603     if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
604       Config->SymbolOrderingFile = getLines(*Buffer);
605
606   // If --retain-symbol-file is used, we'll retail only the symbols listed in
607   // the file and discard all others.
608   if (auto *Arg = Args.getLastArg(OPT_retain_symbols_file)) {
609     Config->Discard = DiscardPolicy::RetainFile;
610     if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
611       for (StringRef S : getLines(*Buffer))
612         Config->RetainSymbolsFile.insert(S);
613   }
614
615   for (auto *Arg : Args.filtered(OPT_export_dynamic_symbol))
616     Config->VersionScriptGlobals.push_back(
617         {Arg->getValue(), /*IsExternCpp*/ false, /*HasWildcard*/ false});
618
619   // Dynamic lists are a simplified linker script that doesn't need the
620   // "global:" and implicitly ends with a "local:*". Set the variables needed to
621   // simulate that.
622   if (Args.hasArg(OPT_dynamic_list) || Args.hasArg(OPT_export_dynamic_symbol)) {
623     Config->ExportDynamic = true;
624     if (!Config->Shared)
625       Config->DefaultSymbolVersion = VER_NDX_LOCAL;
626   }
627
628   if (auto *Arg = Args.getLastArg(OPT_version_script))
629     if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
630       readVersionScript(*Buffer);
631 }
632
633 // Returns a value of "-format" option.
634 static bool getBinaryOption(StringRef S) {
635   if (S == "binary")
636     return true;
637   if (S == "elf" || S == "default")
638     return false;
639   error("unknown -format value: " + S +
640         " (supported formats: elf, default, binary)");
641   return false;
642 }
643
644 void LinkerDriver::createFiles(opt::InputArgList &Args) {
645   for (auto *Arg : Args) {
646     switch (Arg->getOption().getID()) {
647     case OPT_l:
648       addLibrary(Arg->getValue());
649       break;
650     case OPT_INPUT:
651       addFile(Arg->getValue());
652       break;
653     case OPT_alias_script_T:
654     case OPT_script:
655       if (Optional<MemoryBufferRef> MB = readFile(Arg->getValue()))
656         readLinkerScript(*MB);
657       break;
658     case OPT_as_needed:
659       Config->AsNeeded = true;
660       break;
661     case OPT_format:
662       InBinary = getBinaryOption(Arg->getValue());
663       break;
664     case OPT_no_as_needed:
665       Config->AsNeeded = false;
666       break;
667     case OPT_Bstatic:
668       Config->Static = true;
669       break;
670     case OPT_Bdynamic:
671       Config->Static = false;
672       break;
673     case OPT_whole_archive:
674       InWholeArchive = true;
675       break;
676     case OPT_no_whole_archive:
677       InWholeArchive = false;
678       break;
679     case OPT_start_lib:
680       InLib = true;
681       break;
682     case OPT_end_lib:
683       InLib = false;
684       break;
685     }
686   }
687
688   if (Files.empty() && ErrorCount == 0)
689     error("no input files");
690 }
691
692 // If -m <machine_type> was not given, infer it from object files.
693 void LinkerDriver::inferMachineType() {
694   if (Config->EKind != ELFNoneKind)
695     return;
696
697   for (InputFile *F : Files) {
698     if (F->EKind == ELFNoneKind)
699       continue;
700     Config->EKind = F->EKind;
701     Config->EMachine = F->EMachine;
702     Config->OSABI = F->OSABI;
703     Config->MipsN32Abi = Config->EMachine == EM_MIPS && isMipsN32Abi(F);
704     return;
705   }
706   error("target emulation unknown: -m or at least one .o file required");
707 }
708
709 // Parse -z max-page-size=<value>. The default value is defined by
710 // each target.
711 static uint64_t getMaxPageSize(opt::InputArgList &Args) {
712   uint64_t Val =
713       getZOptionValue(Args, "max-page-size", Target->DefaultMaxPageSize);
714   if (!isPowerOf2_64(Val))
715     error("max-page-size: value isn't a power of 2");
716   return Val;
717 }
718
719 // Parses -image-base option.
720 static uint64_t getImageBase(opt::InputArgList &Args) {
721   // Use default if no -image-base option is given.
722   // Because we are using "Target" here, this function
723   // has to be called after the variable is initialized.
724   auto *Arg = Args.getLastArg(OPT_image_base);
725   if (!Arg)
726     return Config->Pic ? 0 : Target->DefaultImageBase;
727
728   StringRef S = Arg->getValue();
729   uint64_t V;
730   if (S.getAsInteger(0, V)) {
731     error("-image-base: number expected, but got " + S);
732     return 0;
733   }
734   if ((V % Config->MaxPageSize) != 0)
735     warn("-image-base: address isn't multiple of page size: " + S);
736   return V;
737 }
738
739 // Do actual linking. Note that when this function is called,
740 // all linker scripts have already been parsed.
741 template <class ELFT> void LinkerDriver::link(opt::InputArgList &Args) {
742   SymbolTable<ELFT> Symtab;
743   elf::Symtab<ELFT>::X = &Symtab;
744   Target = createTarget();
745   ScriptBase = Script<ELFT>::X = make<LinkerScript<ELFT>>();
746
747   Config->Rela =
748       ELFT::Is64Bits || Config->EMachine == EM_X86_64 || Config->MipsN32Abi;
749   Config->Mips64EL =
750       (Config->EMachine == EM_MIPS && Config->EKind == ELF64LEKind);
751   Config->MaxPageSize = getMaxPageSize(Args);
752   Config->ImageBase = getImageBase(Args);
753
754   // Default output filename is "a.out" by the Unix tradition.
755   if (Config->OutputFile.empty())
756     Config->OutputFile = "a.out";
757
758   // Use default entry point name if no name was given via the command
759   // line nor linker scripts. For some reason, MIPS entry point name is
760   // different from others.
761   Config->WarnMissingEntry =
762       (!Config->Entry.empty() || (!Config->Shared && !Config->Relocatable));
763   if (Config->Entry.empty() && !Config->Relocatable)
764     Config->Entry = (Config->EMachine == EM_MIPS) ? "__start" : "_start";
765
766   // Handle --trace-symbol.
767   for (auto *Arg : Args.filtered(OPT_trace_symbol))
768     Symtab.trace(Arg->getValue());
769
770   // Add all files to the symbol table. This will add almost all
771   // symbols that we need to the symbol table.
772   for (InputFile *F : Files)
773     Symtab.addFile(F);
774
775   // If an entry symbol is in a static archive, pull out that file now
776   // to complete the symbol table. After this, no new names except a
777   // few linker-synthesized ones will be added to the symbol table.
778   if (Symtab.find(Config->Entry))
779     Symtab.addUndefined(Config->Entry);
780
781   // Return if there were name resolution errors.
782   if (ErrorCount)
783     return;
784
785   Symtab.scanUndefinedFlags();
786   Symtab.scanShlibUndefined();
787   Symtab.scanVersionScript();
788
789   Symtab.addCombinedLTOObject();
790   if (ErrorCount)
791     return;
792
793   for (auto *Arg : Args.filtered(OPT_wrap))
794     Symtab.wrap(Arg->getValue());
795
796   // Now that we have a complete list of input files.
797   // Beyond this point, no new files are added.
798   // Aggregate all input sections into one place.
799   for (elf::ObjectFile<ELFT> *F : Symtab.getObjectFiles())
800     for (InputSectionBase<ELFT> *S : F->getSections())
801       if (S && S != &InputSection<ELFT>::Discarded)
802         Symtab.Sections.push_back(S);
803   for (BinaryFile *F : Symtab.getBinaryFiles())
804     for (InputSectionData *S : F->getSections())
805       Symtab.Sections.push_back(cast<InputSection<ELFT>>(S));
806
807   // Do size optimizations: garbage collection and identical code folding.
808   if (Config->GcSections)
809     markLive<ELFT>();
810   if (Config->ICF)
811     doIcf<ELFT>();
812
813   // MergeInputSection::splitIntoPieces needs to be called before
814   // any call of MergeInputSection::getOffset. Do that.
815   forEach(Symtab.Sections.begin(), Symtab.Sections.end(),
816           [](InputSectionBase<ELFT> *S) {
817             if (!S->Live)
818               return;
819             if (Decompressor::isCompressedELFSection(S->Flags, S->Name))
820               S->uncompress();
821             if (auto *MS = dyn_cast<MergeInputSection<ELFT>>(S))
822               MS->splitIntoPieces();
823           });
824
825   // Write the result to the file.
826   writeResult<ELFT>();
827 }