2015-07-25 05:03:07 +08:00
|
|
|
//===- Driver.cpp ---------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2017-01-26 09:52:05 +08:00
|
|
|
//
|
|
|
|
// The driver drives the entire linking process. It is responsible for
|
|
|
|
// parsing command line options and doing whatever it is instructed to do.
|
|
|
|
//
|
|
|
|
// One notable thing in the LLD's driver when compared to other linkers is
|
|
|
|
// that the LLD's driver is agnostic on the host operating system.
|
|
|
|
// Other linkers usually have implicit default values (such as a dynamic
|
|
|
|
// linker path or library paths) for each host OS.
|
|
|
|
//
|
|
|
|
// I don't think implicit default values are useful because they are
|
|
|
|
// usually explicitly specified by the compiler driver. They can even
|
|
|
|
// be harmful when you are doing cross-linking. Therefore, in LLD, we
|
2017-03-24 08:15:57 +08:00
|
|
|
// simply trust the compiler driver to pass all required options and
|
|
|
|
// don't try to make effort on our side.
|
2017-01-26 09:52:05 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-08-06 07:24:46 +08:00
|
|
|
#include "Driver.h"
|
2015-08-06 23:08:23 +08:00
|
|
|
#include "Config.h"
|
2017-03-24 08:15:16 +08:00
|
|
|
#include "Filesystem.h"
|
2016-02-26 02:43:51 +08:00
|
|
|
#include "ICF.h"
|
2015-08-06 07:24:46 +08:00
|
|
|
#include "InputFiles.h"
|
2016-05-24 00:55:43 +08:00
|
|
|
#include "InputSection.h"
|
2016-02-12 05:17:59 +08:00
|
|
|
#include "LinkerScript.h"
|
2017-03-20 18:09:58 +08:00
|
|
|
#include "OutputSections.h"
|
2017-04-05 13:07:39 +08:00
|
|
|
#include "ScriptParser.h"
|
2016-06-29 16:01:32 +08:00
|
|
|
#include "Strings.h"
|
2015-08-06 07:24:46 +08:00
|
|
|
#include "SymbolTable.h"
|
2017-06-12 08:00:51 +08:00
|
|
|
#include "SyntheticSections.h"
|
2015-10-10 05:12:40 +08:00
|
|
|
#include "Target.h"
|
2015-07-25 05:03:07 +08:00
|
|
|
#include "Writer.h"
|
2017-11-29 03:58:45 +08:00
|
|
|
#include "lld/Common/Args.h"
|
2017-10-03 05:00:41 +08:00
|
|
|
#include "lld/Common/Driver.h"
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
#include "lld/Common/ErrorHandler.h"
|
2017-11-29 04:39:17 +08:00
|
|
|
#include "lld/Common/Memory.h"
|
2017-10-14 02:22:55 +08:00
|
|
|
#include "lld/Common/Threads.h"
|
2017-10-03 05:00:41 +08:00
|
|
|
#include "lld/Common/Version.h"
|
2015-09-12 05:18:56 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2016-06-08 01:55:05 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2016-11-12 03:50:24 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2017-04-17 16:58:12 +08:00
|
|
|
#include "llvm/Support/Compression.h"
|
2017-01-06 10:33:53 +08:00
|
|
|
#include "llvm/Support/Path.h"
|
2017-01-09 09:42:02 +08:00
|
|
|
#include "llvm/Support/TarWriter.h"
|
2016-02-13 04:54:57 +08:00
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2015-10-11 10:03:03 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2016-06-25 02:02:50 +08:00
|
|
|
#include <cstdlib>
|
2015-10-11 10:22:31 +08:00
|
|
|
#include <utility>
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
2015-10-07 17:13:03 +08:00
|
|
|
using namespace llvm::ELF;
|
2015-10-10 05:07:25 +08:00
|
|
|
using namespace llvm::object;
|
2016-04-27 04:36:46 +08:00
|
|
|
using namespace llvm::sys;
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
using namespace lld;
|
2016-02-28 08:25:54 +08:00
|
|
|
using namespace lld::elf;
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2016-02-28 08:25:54 +08:00
|
|
|
Configuration *elf::Config;
|
|
|
|
LinkerDriver *elf::Driver;
|
2015-10-01 01:06:09 +08:00
|
|
|
|
2017-03-18 07:29:01 +08:00
|
|
|
static void setConfigs();
|
|
|
|
|
2016-10-27 02:59:00 +08:00
|
|
|
bool elf::link(ArrayRef<const char *> Args, bool CanExitEarly,
|
|
|
|
raw_ostream &Error) {
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
errorHandler().LogName = Args[0];
|
|
|
|
errorHandler().ErrorLimitExceededMsg =
|
|
|
|
"too many errors emitted, stopping now (use "
|
|
|
|
"-error-limit=0 to see all errors)";
|
|
|
|
errorHandler().ErrorOS = &Error;
|
|
|
|
errorHandler().ColorDiagnostics = Error.has_colors();
|
2017-02-27 10:32:08 +08:00
|
|
|
InputSections.clear();
|
2017-09-25 22:42:15 +08:00
|
|
|
OutputSections.clear();
|
2017-01-09 09:42:02 +08:00
|
|
|
Tar = nullptr;
|
2017-09-25 22:42:15 +08:00
|
|
|
BinaryFiles.clear();
|
|
|
|
BitcodeFiles.clear();
|
|
|
|
ObjectFiles.clear();
|
|
|
|
SharedFiles.clear();
|
2016-04-21 04:13:41 +08:00
|
|
|
|
2016-12-09 01:48:52 +08:00
|
|
|
Config = make<Configuration>();
|
|
|
|
Driver = make<LinkerDriver>();
|
2017-03-22 07:03:09 +08:00
|
|
|
Script = make<LinkerScript>();
|
2017-07-27 02:42:48 +08:00
|
|
|
Symtab = make<SymbolTable>();
|
2017-07-11 05:01:37 +08:00
|
|
|
Config->Argv = {Args.begin(), Args.end()};
|
2016-04-21 04:13:41 +08:00
|
|
|
|
2016-10-27 02:59:00 +08:00
|
|
|
Driver->main(Args, CanExitEarly);
|
2017-10-04 08:50:11 +08:00
|
|
|
|
|
|
|
// Exit immediately if we don't need to return to the caller.
|
|
|
|
// This saves time because the overhead of calling destructors
|
|
|
|
// for all globally-allocated objects is not negligible.
|
|
|
|
if (Config->ExitEarly)
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
exitLld(errorCount() ? 1 : 0);
|
2017-10-04 08:50:11 +08:00
|
|
|
|
2016-10-29 04:57:25 +08:00
|
|
|
freeArena();
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
return !errorCount();
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
2016-06-08 01:55:05 +08:00
|
|
|
// Parses a linker -m option.
|
2016-11-10 06:32:43 +08:00
|
|
|
static std::tuple<ELFKind, uint16_t, uint8_t> parseEmulation(StringRef Emul) {
|
2016-10-27 22:00:51 +08:00
|
|
|
uint8_t OSABI = 0;
|
2016-09-09 03:36:22 +08:00
|
|
|
StringRef S = Emul;
|
2016-10-27 22:00:51 +08:00
|
|
|
if (S.endswith("_fbsd")) {
|
2016-04-01 04:26:30 +08:00
|
|
|
S = S.drop_back(5);
|
2016-10-27 22:00:51 +08:00
|
|
|
OSABI = ELFOSABI_FREEBSD;
|
|
|
|
}
|
2016-06-08 01:55:05 +08:00
|
|
|
|
|
|
|
std::pair<ELFKind, uint16_t> Ret =
|
|
|
|
StringSwitch<std::pair<ELFKind, uint16_t>>(S)
|
2016-10-01 06:01:25 +08:00
|
|
|
.Cases("aarch64elf", "aarch64linux", {ELF64LEKind, EM_AARCH64})
|
2017-06-14 16:25:38 +08:00
|
|
|
.Cases("armelf", "armelf_linux_eabi", {ELF32LEKind, EM_ARM})
|
2016-07-13 07:28:33 +08:00
|
|
|
.Case("elf32_x86_64", {ELF32LEKind, EM_X86_64})
|
2017-01-30 09:50:16 +08:00
|
|
|
.Cases("elf32btsmip", "elf32btsmipn32", {ELF32BEKind, EM_MIPS})
|
|
|
|
.Cases("elf32ltsmip", "elf32ltsmipn32", {ELF32LEKind, EM_MIPS})
|
2016-06-08 01:55:05 +08:00
|
|
|
.Case("elf32ppc", {ELF32BEKind, EM_PPC})
|
|
|
|
.Case("elf64btsmip", {ELF64BEKind, EM_MIPS})
|
|
|
|
.Case("elf64ltsmip", {ELF64LEKind, EM_MIPS})
|
|
|
|
.Case("elf64ppc", {ELF64BEKind, EM_PPC64})
|
2016-10-01 06:01:25 +08:00
|
|
|
.Cases("elf_amd64", "elf_x86_64", {ELF64LEKind, EM_X86_64})
|
2016-06-08 01:55:05 +08:00
|
|
|
.Case("elf_i386", {ELF32LEKind, EM_386})
|
2016-08-04 04:15:56 +08:00
|
|
|
.Case("elf_iamcu", {ELF32LEKind, EM_IAMCU})
|
2016-06-08 01:55:05 +08:00
|
|
|
.Default({ELFNoneKind, EM_NONE});
|
|
|
|
|
2017-09-12 01:02:59 +08:00
|
|
|
if (Ret.first == ELFNoneKind)
|
|
|
|
error("unknown emulation: " + Emul);
|
2016-11-10 06:32:43 +08:00
|
|
|
return std::make_tuple(Ret.first, Ret.second, OSABI);
|
2015-10-07 17:13:03 +08:00
|
|
|
}
|
|
|
|
|
2016-01-06 08:51:35 +08:00
|
|
|
// Returns slices of MB by parsing MB as an archive file.
|
|
|
|
// Each slice consists of a member file in the archive.
|
2017-05-05 23:08:06 +08:00
|
|
|
std::vector<std::pair<MemoryBufferRef, uint64_t>> static getArchiveMembers(
|
|
|
|
MemoryBufferRef MB) {
|
2016-03-04 00:21:44 +08:00
|
|
|
std::unique_ptr<Archive> File =
|
2017-12-07 06:08:17 +08:00
|
|
|
CHECK(Archive::create(MB),
|
2016-11-21 17:28:07 +08:00
|
|
|
MB.getBufferIdentifier() + ": failed to parse archive");
|
2016-01-06 08:51:35 +08:00
|
|
|
|
2017-05-05 23:08:06 +08:00
|
|
|
std::vector<std::pair<MemoryBufferRef, uint64_t>> V;
|
2016-11-11 12:28:40 +08:00
|
|
|
Error Err = Error::success();
|
2017-09-21 06:59:50 +08:00
|
|
|
bool AddToTar = File->isThin() && Tar;
|
2016-07-14 10:35:18 +08:00
|
|
|
for (const ErrorOr<Archive::Child> &COrErr : File->children(Err)) {
|
2016-11-21 17:28:07 +08:00
|
|
|
Archive::Child C =
|
2017-12-07 06:08:17 +08:00
|
|
|
CHECK(COrErr, MB.getBufferIdentifier() +
|
2016-11-21 17:28:07 +08:00
|
|
|
": could not get the child of the archive");
|
2016-04-03 03:09:07 +08:00
|
|
|
MemoryBufferRef MBRef =
|
2017-12-07 06:08:17 +08:00
|
|
|
CHECK(C.getMemoryBufferRef(),
|
2016-11-21 17:28:07 +08:00
|
|
|
MB.getBufferIdentifier() +
|
|
|
|
": could not get the buffer for a child of the archive");
|
2017-09-21 06:59:50 +08:00
|
|
|
if (AddToTar)
|
|
|
|
Tar->append(relativeToRoot(check(C.getFullName())), MBRef.getBuffer());
|
2017-05-05 23:08:06 +08:00
|
|
|
V.push_back(std::make_pair(MBRef, C.getChildOffset()));
|
2016-01-06 08:51:35 +08:00
|
|
|
}
|
2016-07-15 10:01:03 +08:00
|
|
|
if (Err)
|
2016-11-21 17:28:07 +08:00
|
|
|
fatal(MB.getBufferIdentifier() + ": Archive::children failed: " +
|
|
|
|
toString(std::move(Err)));
|
2016-04-01 07:12:18 +08:00
|
|
|
|
|
|
|
// Take ownership of memory buffers created for members of thin archives.
|
|
|
|
for (std::unique_ptr<MemoryBuffer> &MB : File->takeThinBuffers())
|
2016-12-23 11:19:09 +08:00
|
|
|
make<std::unique_ptr<MemoryBuffer>>(std::move(MB));
|
2016-04-01 07:12:18 +08:00
|
|
|
|
2016-01-06 08:51:35 +08:00
|
|
|
return V;
|
|
|
|
}
|
|
|
|
|
2017-05-04 07:10:33 +08:00
|
|
|
// Opens a file and create a file object. Path has to be resolved already.
|
2017-04-12 08:13:48 +08:00
|
|
|
void LinkerDriver::addFile(StringRef Path, bool WithLOption) {
|
2016-05-03 03:59:56 +08:00
|
|
|
using namespace sys::fs;
|
2016-04-26 08:22:24 +08:00
|
|
|
|
2016-04-14 02:51:11 +08:00
|
|
|
Optional<MemoryBufferRef> Buffer = readFile(Path);
|
|
|
|
if (!Buffer.hasValue())
|
2016-02-03 05:13:09 +08:00
|
|
|
return;
|
2016-04-14 02:51:11 +08:00
|
|
|
MemoryBufferRef MBRef = *Buffer;
|
2015-10-01 23:23:09 +08:00
|
|
|
|
2016-10-20 13:12:29 +08:00
|
|
|
if (InBinary) {
|
2016-11-02 06:53:18 +08:00
|
|
|
Files.push_back(make<BinaryFile>(MBRef));
|
2016-09-10 06:08:04 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-01 23:23:09 +08:00
|
|
|
switch (identify_magic(MBRef.getBuffer())) {
|
|
|
|
case file_magic::unknown:
|
2016-04-21 04:13:41 +08:00
|
|
|
readLinkerScript(MBRef);
|
2015-10-01 23:23:09 +08:00
|
|
|
return;
|
2017-05-04 05:03:08 +08:00
|
|
|
case file_magic::archive: {
|
|
|
|
// Handle -whole-archive.
|
2016-10-26 12:01:07 +08:00
|
|
|
if (InWholeArchive) {
|
2017-05-05 23:08:06 +08:00
|
|
|
for (const auto &P : getArchiveMembers(MBRef))
|
|
|
|
Files.push_back(createObjectFile(P.first, Path, P.second));
|
2015-10-10 05:07:25 +08:00
|
|
|
return;
|
|
|
|
}
|
2017-05-04 05:03:08 +08:00
|
|
|
|
|
|
|
std::unique_ptr<Archive> File =
|
2017-12-07 06:08:17 +08:00
|
|
|
CHECK(Archive::create(MBRef), Path + ": failed to parse archive");
|
2017-05-04 05:03:08 +08:00
|
|
|
|
|
|
|
// If an archive file has no symbol table, it is likely that a user
|
|
|
|
// is attempting LTO and using a default ar command that doesn't
|
|
|
|
// understand the LLVM bitcode file. It is a pretty common error, so
|
|
|
|
// we'll handle it as if it had a symbol table.
|
2017-06-09 20:26:57 +08:00
|
|
|
if (!File->isEmpty() && !File->hasSymbolTable()) {
|
2017-05-05 23:08:06 +08:00
|
|
|
for (const auto &P : getArchiveMembers(MBRef))
|
2017-07-27 06:13:32 +08:00
|
|
|
Files.push_back(make<LazyObjFile>(P.first, Path, P.second));
|
2017-05-04 05:03:08 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle the regular case.
|
|
|
|
Files.push_back(make<ArchiveFile>(std::move(File)));
|
2015-10-01 23:23:09 +08:00
|
|
|
return;
|
2017-05-04 05:03:08 +08:00
|
|
|
}
|
2015-10-12 09:55:32 +08:00
|
|
|
case file_magic::elf_shared_object:
|
2016-02-25 16:23:37 +08:00
|
|
|
if (Config->Relocatable) {
|
2016-03-12 16:31:34 +08:00
|
|
|
error("attempted static link of dynamic object " + Path);
|
2016-02-25 16:23:37 +08:00
|
|
|
return;
|
|
|
|
}
|
2017-06-21 11:05:08 +08:00
|
|
|
|
2017-04-13 08:23:32 +08:00
|
|
|
// DSOs usually have DT_SONAME tags in their ELF headers, and the
|
|
|
|
// sonames are used to identify DSOs. But if they are missing,
|
|
|
|
// they are identified by filenames. We don't know whether the new
|
|
|
|
// file has a DT_SONAME or not because we haven't parsed it yet.
|
|
|
|
// Here, we set the default soname for the file because we might
|
|
|
|
// need it later.
|
|
|
|
//
|
|
|
|
// If a file was specified by -lfoo, the directory part is not
|
|
|
|
// significant, as a user did not specify it. This behavior is
|
|
|
|
// compatible with GNU.
|
2017-06-21 11:05:08 +08:00
|
|
|
Files.push_back(
|
|
|
|
createSharedFile(MBRef, WithLOption ? path::filename(Path) : Path));
|
2015-10-01 23:23:09 +08:00
|
|
|
return;
|
|
|
|
default:
|
2016-04-08 03:24:51 +08:00
|
|
|
if (InLib)
|
2017-07-27 06:13:32 +08:00
|
|
|
Files.push_back(make<LazyObjFile>(MBRef, "", 0));
|
2016-04-08 03:24:51 +08:00
|
|
|
else
|
2016-10-29 04:57:25 +08:00
|
|
|
Files.push_back(createObjectFile(MBRef));
|
2015-10-01 23:23:09 +08:00
|
|
|
}
|
2015-10-01 01:06:09 +08:00
|
|
|
}
|
|
|
|
|
2016-02-03 05:13:09 +08:00
|
|
|
// Add a given library by searching it from input search paths.
|
|
|
|
void LinkerDriver::addLibrary(StringRef Name) {
|
2016-11-20 03:23:58 +08:00
|
|
|
if (Optional<std::string> Path = searchLibrary(Name))
|
2017-04-12 08:13:48 +08:00
|
|
|
addFile(*Path, /*WithLOption=*/true);
|
2016-04-25 02:23:21 +08:00
|
|
|
else
|
2016-11-20 03:23:58 +08:00
|
|
|
error("unable to find library -l" + Name);
|
2016-02-03 05:13:09 +08:00
|
|
|
}
|
|
|
|
|
2016-04-03 02:18:44 +08:00
|
|
|
// This function is called on startup. We need this for LTO since
|
|
|
|
// LTO calls LLVM functions to compile bitcode files to native code.
|
|
|
|
// Technically this can be delayed until we read bitcode files, but
|
|
|
|
// we don't bother to do lazily because the initialization is fast.
|
|
|
|
static void initLLVM(opt::InputArgList &Args) {
|
|
|
|
InitializeAllTargets();
|
|
|
|
InitializeAllTargetMCs();
|
|
|
|
InitializeAllAsmPrinters();
|
|
|
|
InitializeAllAsmParsers();
|
|
|
|
|
|
|
|
// Parse and evaluate -mllvm options.
|
|
|
|
std::vector<const char *> V;
|
|
|
|
V.push_back("lld (LLVM option parsing)");
|
|
|
|
for (auto *Arg : Args.filtered(OPT_mllvm))
|
|
|
|
V.push_back(Arg->getValue());
|
|
|
|
cl::ParseCommandLineOptions(V.size(), V.data());
|
|
|
|
}
|
|
|
|
|
2016-01-08 01:33:25 +08:00
|
|
|
// Some command line options or some combinations of them are not allowed.
|
|
|
|
// This function checks for such errors.
|
|
|
|
static void checkOptions(opt::InputArgList &Args) {
|
|
|
|
// The MIPS ABI as of 2016 does not support the GNU-style symbol lookup
|
|
|
|
// table which is a relatively new feature.
|
|
|
|
if (Config->EMachine == EM_MIPS && Config->GnuHash)
|
2016-03-12 16:31:34 +08:00
|
|
|
error("the .gnu.hash section is not compatible with the MIPS target.");
|
2016-01-08 01:33:25 +08:00
|
|
|
|
2017-12-05 23:59:05 +08:00
|
|
|
if (Config->FixCortexA53Errata843419 && Config->EMachine != EM_AARCH64)
|
|
|
|
error("--fix-cortex-a53-843419 is only supported on AArch64 targets.");
|
|
|
|
|
2016-03-17 13:57:33 +08:00
|
|
|
if (Config->Pie && Config->Shared)
|
|
|
|
error("-shared and -pie may not be used together");
|
|
|
|
|
2017-07-17 17:43:18 +08:00
|
|
|
if (!Config->Shared && !Config->FilterList.empty())
|
|
|
|
error("-F may not be used without -shared");
|
|
|
|
|
2017-04-27 05:27:33 +08:00
|
|
|
if (!Config->Shared && !Config->AuxiliaryList.empty())
|
|
|
|
error("-f may not be used without -shared");
|
|
|
|
|
2017-12-01 04:46:33 +08:00
|
|
|
if (!Config->Relocatable && !Config->DefineCommon)
|
|
|
|
error("-no-define-common not supported in non relocatable output");
|
|
|
|
|
2016-04-03 02:52:23 +08:00
|
|
|
if (Config->Relocatable) {
|
|
|
|
if (Config->Shared)
|
|
|
|
error("-r and -shared may not be used together");
|
|
|
|
if (Config->GcSections)
|
|
|
|
error("-r and --gc-sections may not be used together");
|
|
|
|
if (Config->ICF)
|
|
|
|
error("-r and --icf may not be used together");
|
|
|
|
if (Config->Pie)
|
|
|
|
error("-r and -pie may not be used together");
|
|
|
|
}
|
2016-01-08 01:33:25 +08:00
|
|
|
}
|
|
|
|
|
2016-06-25 02:02:50 +08:00
|
|
|
static const char *getReproduceOption(opt::InputArgList &Args) {
|
2016-06-25 12:37:56 +08:00
|
|
|
if (auto *Arg = Args.getLastArg(OPT_reproduce))
|
|
|
|
return Arg->getValue();
|
2016-06-25 02:02:50 +08:00
|
|
|
return getenv("LLD_REPRODUCE");
|
|
|
|
}
|
|
|
|
|
2015-11-13 03:00:37 +08:00
|
|
|
static bool hasZOption(opt::InputArgList &Args, StringRef Key) {
|
|
|
|
for (auto *Arg : Args.filtered(OPT_z))
|
|
|
|
if (Key == Arg->getValue())
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-10-27 02:59:00 +08:00
|
|
|
void LinkerDriver::main(ArrayRef<const char *> ArgsArr, bool CanExitEarly) {
|
2016-03-16 02:20:50 +08:00
|
|
|
ELFOptTable Parser;
|
|
|
|
opt::InputArgList Args = Parser.parse(ArgsArr.slice(1));
|
2016-11-26 23:10:01 +08:00
|
|
|
|
2016-12-20 10:17:24 +08:00
|
|
|
// Interpret this flag early because error() depends on them.
|
2017-11-29 03:58:45 +08:00
|
|
|
errorHandler().ErrorLimit = args::getInteger(Args, OPT_error_limit, 20);
|
2016-11-26 23:10:01 +08:00
|
|
|
|
|
|
|
// Handle -help
|
2016-02-28 11:18:09 +08:00
|
|
|
if (Args.hasArg(OPT_help)) {
|
|
|
|
printHelp(ArgsArr[0]);
|
|
|
|
return;
|
|
|
|
}
|
2016-11-20 02:14:24 +08:00
|
|
|
|
2017-03-23 02:04:57 +08:00
|
|
|
// Handle -v or -version.
|
|
|
|
//
|
|
|
|
// A note about "compatible with GNU linkers" message: this is a hack for
|
|
|
|
// scripts generated by GNU Libtool 2.4.6 (released in February 2014 and
|
|
|
|
// still the newest version in March 2017) or earlier to recognize LLD as
|
|
|
|
// a GNU compatible linker. As long as an output for the -v option
|
|
|
|
// contains "GNU" or "with BFD", they recognize us as GNU-compatible.
|
|
|
|
//
|
|
|
|
// This is somewhat ugly hack, but in reality, we had no choice other
|
|
|
|
// than doing this. Considering the very long release cycle of Libtool,
|
|
|
|
// it is not easy to improve it to recognize LLD as a GNU compatible
|
|
|
|
// linker in a timely manner. Even if we can make it, there are still a
|
|
|
|
// lot of "configure" scripts out there that are generated by old version
|
|
|
|
// of Libtool. We cannot convince every software developer to migrate to
|
|
|
|
// the latest version and re-generate scripts. So we have this hack.
|
|
|
|
if (Args.hasArg(OPT_v) || Args.hasArg(OPT_version))
|
|
|
|
message(getLLDVersion() + " (compatible with GNU linkers)");
|
|
|
|
|
2017-12-05 08:03:41 +08:00
|
|
|
// The behavior of -v or --version is a bit strange, but this is
|
|
|
|
// needed for compatibility with GNU linkers.
|
|
|
|
if (Args.hasArg(OPT_v) && !Args.hasArg(OPT_INPUT))
|
|
|
|
return;
|
2016-11-20 02:14:24 +08:00
|
|
|
if (Args.hasArg(OPT_version))
|
|
|
|
return;
|
|
|
|
|
2016-10-27 02:59:00 +08:00
|
|
|
Config->ExitEarly = CanExitEarly && !Args.hasArg(OPT_full_shutdown);
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
errorHandler().ExitEarly = Config->ExitEarly;
|
2016-02-28 11:18:07 +08:00
|
|
|
|
2016-06-25 02:02:50 +08:00
|
|
|
if (const char *Path = getReproduceOption(Args)) {
|
2016-05-16 01:10:23 +08:00
|
|
|
// Note that --reproduce is a debug option so you can ignore it
|
|
|
|
// if you are trying to understand the whole picture of the code.
|
2017-01-06 10:33:53 +08:00
|
|
|
Expected<std::unique_ptr<TarWriter>> ErrOrWriter =
|
|
|
|
TarWriter::create(Path, path::stem(Path));
|
|
|
|
if (ErrOrWriter) {
|
2017-01-09 09:42:02 +08:00
|
|
|
Tar = ErrOrWriter->get();
|
2017-01-06 10:33:53 +08:00
|
|
|
Tar->append("response.txt", createResponseFile(Args));
|
|
|
|
Tar->append("version.txt", getLLDVersion() + "\n");
|
2017-01-09 09:42:02 +08:00
|
|
|
make<std::unique_ptr<TarWriter>>(std::move(*ErrOrWriter));
|
2017-01-06 10:33:53 +08:00
|
|
|
} else {
|
|
|
|
error(Twine("--reproduce: failed to open ") + Path + ": " +
|
|
|
|
toString(ErrOrWriter.takeError()));
|
|
|
|
}
|
2016-05-04 01:30:44 +08:00
|
|
|
}
|
2016-04-26 08:22:24 +08:00
|
|
|
|
2016-06-05 21:19:39 +08:00
|
|
|
readConfigs(Args);
|
|
|
|
initLLVM(Args);
|
2015-10-10 05:07:25 +08:00
|
|
|
createFiles(Args);
|
2016-10-20 12:47:47 +08:00
|
|
|
inferMachineType();
|
2017-03-18 07:29:01 +08:00
|
|
|
setConfigs();
|
2016-01-08 01:33:25 +08:00
|
|
|
checkOptions(Args);
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
if (errorCount())
|
2016-02-03 05:13:09 +08:00
|
|
|
return;
|
2015-11-13 02:54:15 +08:00
|
|
|
|
2015-10-14 00:20:50 +08:00
|
|
|
switch (Config->EKind) {
|
2015-10-10 05:07:25 +08:00
|
|
|
case ELF32LEKind:
|
|
|
|
link<ELF32LE>(Args);
|
|
|
|
return;
|
|
|
|
case ELF32BEKind:
|
|
|
|
link<ELF32BE>(Args);
|
|
|
|
return;
|
|
|
|
case ELF64LEKind:
|
|
|
|
link<ELF64LE>(Args);
|
|
|
|
return;
|
|
|
|
case ELF64BEKind:
|
|
|
|
link<ELF64BE>(Args);
|
|
|
|
return;
|
|
|
|
default:
|
2016-10-20 12:47:47 +08:00
|
|
|
llvm_unreachable("unknown Config->EKind");
|
2015-10-10 05:07:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-30 07:06:43 +08:00
|
|
|
static std::string getRpath(opt::InputArgList &Args) {
|
2017-11-29 03:58:45 +08:00
|
|
|
std::vector<StringRef> V = args::getStrings(Args, OPT_rpath);
|
2017-02-25 09:51:44 +08:00
|
|
|
return llvm::join(V.begin(), V.end(), ":");
|
|
|
|
}
|
|
|
|
|
2017-01-29 09:59:11 +08:00
|
|
|
// Determines what we should do if there are remaining unresolved
|
|
|
|
// symbols after the name resolution.
|
|
|
|
static UnresolvedPolicy getUnresolvedSymbolPolicy(opt::InputArgList &Args) {
|
2017-02-25 09:51:25 +08:00
|
|
|
if (Args.hasArg(OPT_relocatable))
|
2017-01-27 23:52:08 +08:00
|
|
|
return UnresolvedPolicy::IgnoreAll;
|
2017-01-26 10:19:20 +08:00
|
|
|
|
2017-10-25 04:59:55 +08:00
|
|
|
UnresolvedPolicy ErrorOrWarn = Args.hasFlag(OPT_error_unresolved_symbols,
|
|
|
|
OPT_warn_unresolved_symbols, true)
|
2017-03-24 02:16:42 +08:00
|
|
|
? UnresolvedPolicy::ReportError
|
|
|
|
: UnresolvedPolicy::Warn;
|
2017-01-29 09:59:11 +08:00
|
|
|
|
|
|
|
// Process the last of -unresolved-symbols, -no-undefined or -z defs.
|
|
|
|
for (auto *Arg : llvm::reverse(Args)) {
|
|
|
|
switch (Arg->getOption().getID()) {
|
|
|
|
case OPT_unresolved_symbols: {
|
|
|
|
StringRef S = Arg->getValue();
|
|
|
|
if (S == "ignore-all" || S == "ignore-in-object-files")
|
|
|
|
return UnresolvedPolicy::Ignore;
|
|
|
|
if (S == "ignore-in-shared-libs" || S == "report-all")
|
|
|
|
return ErrorOrWarn;
|
|
|
|
error("unknown --unresolved-symbols value: " + S);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OPT_no_undefined:
|
|
|
|
return ErrorOrWarn;
|
|
|
|
case OPT_z:
|
|
|
|
if (StringRef(Arg->getValue()) == "defs")
|
|
|
|
return ErrorOrWarn;
|
|
|
|
continue;
|
|
|
|
}
|
2017-01-26 10:19:20 +08:00
|
|
|
}
|
|
|
|
|
2017-01-29 09:59:11 +08:00
|
|
|
// -shared implies -unresolved-symbols=ignore-all because missing
|
|
|
|
// symbols are likely to be resolved at runtime using other DSOs.
|
|
|
|
if (Config->Shared)
|
|
|
|
return UnresolvedPolicy::Ignore;
|
|
|
|
return ErrorOrWarn;
|
2016-06-29 20:35:04 +08:00
|
|
|
}
|
|
|
|
|
2017-02-25 10:23:28 +08:00
|
|
|
static Target2Policy getTarget2(opt::InputArgList &Args) {
|
2017-06-14 16:01:26 +08:00
|
|
|
StringRef S = Args.getLastArgValue(OPT_target2, "got-rel");
|
2017-04-30 06:56:38 +08:00
|
|
|
if (S == "rel")
|
|
|
|
return Target2Policy::Rel;
|
|
|
|
if (S == "abs")
|
|
|
|
return Target2Policy::Abs;
|
|
|
|
if (S == "got-rel")
|
|
|
|
return Target2Policy::GotRel;
|
|
|
|
error("unknown --target2 option: " + S);
|
2016-10-18 02:12:24 +08:00
|
|
|
return Target2Policy::GotRel;
|
|
|
|
}
|
|
|
|
|
2016-08-25 17:05:47 +08:00
|
|
|
static bool isOutputFormatBinary(opt::InputArgList &Args) {
|
|
|
|
if (auto *Arg = Args.getLastArg(OPT_oformat)) {
|
|
|
|
StringRef S = Arg->getValue();
|
|
|
|
if (S == "binary")
|
|
|
|
return true;
|
|
|
|
error("unknown --oformat value: " + S);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-25 10:23:28 +08:00
|
|
|
static DiscardPolicy getDiscard(opt::InputArgList &Args) {
|
2017-02-25 09:51:25 +08:00
|
|
|
if (Args.hasArg(OPT_relocatable))
|
2016-12-04 16:34:17 +08:00
|
|
|
return DiscardPolicy::None;
|
2017-02-25 10:12:37 +08:00
|
|
|
|
2016-08-31 16:46:30 +08:00
|
|
|
auto *Arg =
|
|
|
|
Args.getLastArg(OPT_discard_all, OPT_discard_locals, OPT_discard_none);
|
|
|
|
if (!Arg)
|
|
|
|
return DiscardPolicy::Default;
|
2016-09-03 03:49:27 +08:00
|
|
|
if (Arg->getOption().getID() == OPT_discard_all)
|
2016-08-31 16:46:30 +08:00
|
|
|
return DiscardPolicy::All;
|
2016-09-03 03:49:27 +08:00
|
|
|
if (Arg->getOption().getID() == OPT_discard_locals)
|
2016-08-31 16:46:30 +08:00
|
|
|
return DiscardPolicy::Locals;
|
2016-09-03 03:49:27 +08:00
|
|
|
return DiscardPolicy::None;
|
2016-08-31 16:46:30 +08:00
|
|
|
}
|
|
|
|
|
2017-02-25 10:23:28 +08:00
|
|
|
static StringRef getDynamicLinker(opt::InputArgList &Args) {
|
2017-02-24 16:26:18 +08:00
|
|
|
auto *Arg = Args.getLastArg(OPT_dynamic_linker, OPT_no_dynamic_linker);
|
|
|
|
if (!Arg || Arg->getOption().getID() == OPT_no_dynamic_linker)
|
|
|
|
return "";
|
|
|
|
return Arg->getValue();
|
|
|
|
}
|
|
|
|
|
2017-02-25 10:23:28 +08:00
|
|
|
static StripPolicy getStrip(opt::InputArgList &Args) {
|
2017-02-25 10:12:37 +08:00
|
|
|
if (Args.hasArg(OPT_relocatable))
|
|
|
|
return StripPolicy::None;
|
|
|
|
|
|
|
|
auto *Arg = Args.getLastArg(OPT_strip_all, OPT_strip_debug);
|
|
|
|
if (!Arg)
|
|
|
|
return StripPolicy::None;
|
|
|
|
if (Arg->getOption().getID() == OPT_strip_all)
|
|
|
|
return StripPolicy::All;
|
|
|
|
return StripPolicy::Debug;
|
2016-08-31 16:38:11 +08:00
|
|
|
}
|
|
|
|
|
2017-12-06 00:50:46 +08:00
|
|
|
static uint64_t parseSectionAddress(StringRef S, const opt::Arg &Arg) {
|
2016-09-14 21:07:13 +08:00
|
|
|
uint64_t VA = 0;
|
|
|
|
if (S.startswith("0x"))
|
|
|
|
S = S.drop_front(2);
|
2017-05-16 16:19:25 +08:00
|
|
|
if (!to_integer(S, VA, 16))
|
2017-01-06 18:04:35 +08:00
|
|
|
error("invalid argument: " + toString(Arg));
|
2016-09-14 21:07:13 +08:00
|
|
|
return VA;
|
|
|
|
}
|
|
|
|
|
|
|
|
static StringMap<uint64_t> getSectionStartMap(opt::InputArgList &Args) {
|
|
|
|
StringMap<uint64_t> Ret;
|
|
|
|
for (auto *Arg : Args.filtered(OPT_section_start)) {
|
|
|
|
StringRef Name;
|
|
|
|
StringRef Addr;
|
|
|
|
std::tie(Name, Addr) = StringRef(Arg->getValue()).split('=');
|
2017-12-06 00:50:46 +08:00
|
|
|
Ret[Name] = parseSectionAddress(Addr, *Arg);
|
2016-09-14 21:07:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (auto *Arg = Args.getLastArg(OPT_Ttext))
|
2017-12-06 00:50:46 +08:00
|
|
|
Ret[".text"] = parseSectionAddress(Arg->getValue(), *Arg);
|
2016-09-14 21:07:13 +08:00
|
|
|
if (auto *Arg = Args.getLastArg(OPT_Tdata))
|
2017-12-06 00:50:46 +08:00
|
|
|
Ret[".data"] = parseSectionAddress(Arg->getValue(), *Arg);
|
2016-09-14 21:07:13 +08:00
|
|
|
if (auto *Arg = Args.getLastArg(OPT_Tbss))
|
2017-12-06 00:50:46 +08:00
|
|
|
Ret[".bss"] = parseSectionAddress(Arg->getValue(), *Arg);
|
2016-09-14 21:07:13 +08:00
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
2017-02-25 10:23:28 +08:00
|
|
|
static SortSectionPolicy getSortSection(opt::InputArgList &Args) {
|
2017-06-14 16:01:26 +08:00
|
|
|
StringRef S = Args.getLastArgValue(OPT_sort_section);
|
2016-09-17 04:21:55 +08:00
|
|
|
if (S == "alignment")
|
|
|
|
return SortSectionPolicy::Alignment;
|
|
|
|
if (S == "name")
|
|
|
|
return SortSectionPolicy::Name;
|
|
|
|
if (!S.empty())
|
|
|
|
error("unknown --sort-section rule: " + S);
|
2016-09-17 05:14:55 +08:00
|
|
|
return SortSectionPolicy::Default;
|
2016-09-17 04:21:55 +08:00
|
|
|
}
|
|
|
|
|
2017-10-25 23:20:30 +08:00
|
|
|
static OrphanHandlingPolicy getOrphanHandling(opt::InputArgList &Args) {
|
|
|
|
StringRef S = Args.getLastArgValue(OPT_orphan_handling, "place");
|
|
|
|
if (S == "warn")
|
|
|
|
return OrphanHandlingPolicy::Warn;
|
|
|
|
if (S == "error")
|
|
|
|
return OrphanHandlingPolicy::Error;
|
|
|
|
if (S != "place")
|
|
|
|
error("unknown --orphan-handling mode: " + S);
|
|
|
|
return OrphanHandlingPolicy::Place;
|
|
|
|
}
|
|
|
|
|
2017-04-27 05:23:11 +08:00
|
|
|
// Parse --build-id or --build-id=<style>. We handle "tree" as a
|
|
|
|
// synonym for "sha1" because all our hash functions including
|
|
|
|
// -build-id=sha1 are actually tree hashes for performance reasons.
|
|
|
|
static std::pair<BuildIdKind, std::vector<uint8_t>>
|
|
|
|
getBuildId(opt::InputArgList &Args) {
|
2017-05-24 05:16:48 +08:00
|
|
|
auto *Arg = Args.getLastArg(OPT_build_id, OPT_build_id_eq);
|
|
|
|
if (!Arg)
|
|
|
|
return {BuildIdKind::None, {}};
|
|
|
|
|
|
|
|
if (Arg->getOption().getID() == OPT_build_id)
|
2017-04-27 05:23:11 +08:00
|
|
|
return {BuildIdKind::Fast, {}};
|
|
|
|
|
2017-05-24 05:16:48 +08:00
|
|
|
StringRef S = Arg->getValue();
|
2017-04-27 05:23:11 +08:00
|
|
|
if (S == "md5")
|
|
|
|
return {BuildIdKind::Md5, {}};
|
|
|
|
if (S == "sha1" || S == "tree")
|
|
|
|
return {BuildIdKind::Sha1, {}};
|
|
|
|
if (S == "uuid")
|
|
|
|
return {BuildIdKind::Uuid, {}};
|
|
|
|
if (S.startswith("0x"))
|
|
|
|
return {BuildIdKind::Hexstring, parseHex(S.substr(2))};
|
|
|
|
|
|
|
|
if (S != "none")
|
|
|
|
error("unknown --build-id style: " + S);
|
|
|
|
return {BuildIdKind::None, {}};
|
|
|
|
}
|
|
|
|
|
2017-04-17 16:58:12 +08:00
|
|
|
static bool getCompressDebugSections(opt::InputArgList &Args) {
|
2017-06-14 16:01:26 +08:00
|
|
|
StringRef S = Args.getLastArgValue(OPT_compress_debug_sections, "none");
|
2017-04-30 06:56:24 +08:00
|
|
|
if (S == "none")
|
|
|
|
return false;
|
|
|
|
if (S != "zlib")
|
|
|
|
error("unknown --compress-debug-sections value: " + S);
|
|
|
|
if (!zlib::isAvailable())
|
|
|
|
error("--compress-debug-sections: zlib is not available");
|
|
|
|
return true;
|
2017-04-17 16:58:12 +08:00
|
|
|
}
|
|
|
|
|
2017-08-14 18:17:30 +08:00
|
|
|
static int parseInt(StringRef S, opt::Arg *Arg) {
|
|
|
|
int V = 0;
|
|
|
|
if (!to_integer(S, V, 10))
|
|
|
|
error(Arg->getSpelling() + ": number expected, but got '" + S + "'");
|
|
|
|
return V;
|
|
|
|
}
|
|
|
|
|
2016-01-08 01:54:19 +08:00
|
|
|
// Initializes Config members by the command line options.
|
|
|
|
void LinkerDriver::readConfigs(opt::InputArgList &Args) {
|
2017-08-12 04:49:48 +08:00
|
|
|
Config->AllowMultipleDefinition =
|
|
|
|
Args.hasArg(OPT_allow_multiple_definition) || hasZOption(Args, "muldefs");
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->AuxiliaryList = args::getStrings(Args, OPT_auxiliary);
|
2015-10-14 05:02:34 +08:00
|
|
|
Config->Bsymbolic = Args.hasArg(OPT_Bsymbolic);
|
2016-02-02 17:28:53 +08:00
|
|
|
Config->BsymbolicFunctions = Args.hasArg(OPT_Bsymbolic_functions);
|
2017-07-21 02:17:55 +08:00
|
|
|
Config->Chroot = Args.getLastArgValue(OPT_chroot);
|
2017-04-17 16:58:12 +08:00
|
|
|
Config->CompressDebugSections = getCompressDebugSections(Args);
|
2017-10-25 04:59:55 +08:00
|
|
|
Config->DefineCommon = Args.hasFlag(OPT_define_common, OPT_no_define_common,
|
|
|
|
!Args.hasArg(OPT_relocatable));
|
|
|
|
Config->Demangle = Args.hasFlag(OPT_demangle, OPT_no_demangle, true);
|
2016-04-03 11:39:09 +08:00
|
|
|
Config->DisableVerify = Args.hasArg(OPT_disable_verify);
|
2017-02-25 10:23:28 +08:00
|
|
|
Config->Discard = getDiscard(Args);
|
|
|
|
Config->DynamicLinker = getDynamicLinker(Args);
|
2017-08-30 00:53:24 +08:00
|
|
|
Config->EhFrameHdr =
|
2017-10-25 04:59:55 +08:00
|
|
|
Args.hasFlag(OPT_eh_frame_hdr, OPT_no_eh_frame_hdr, false);
|
2017-02-25 09:51:25 +08:00
|
|
|
Config->EmitRelocs = Args.hasArg(OPT_emit_relocs);
|
2015-10-07 00:20:00 +08:00
|
|
|
Config->EnableNewDtags = !Args.hasArg(OPT_disable_new_dtags);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->Entry = Args.getLastArgValue(OPT_entry);
|
2017-01-15 11:38:55 +08:00
|
|
|
Config->ExportDynamic =
|
2017-10-25 04:59:55 +08:00
|
|
|
Args.hasFlag(OPT_export_dynamic, OPT_no_export_dynamic, false);
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
errorHandler().FatalWarnings =
|
2017-10-25 04:59:55 +08:00
|
|
|
Args.hasFlag(OPT_fatal_warnings, OPT_no_fatal_warnings, false);
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->FilterList = args::getStrings(Args, OPT_filter);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->Fini = Args.getLastArgValue(OPT_fini, "_fini");
|
2017-12-05 23:59:05 +08:00
|
|
|
Config->FixCortexA53Errata843419 = Args.hasArg(OPT_fix_cortex_a53_843419);
|
2017-10-25 04:59:55 +08:00
|
|
|
Config->GcSections = Args.hasFlag(OPT_gc_sections, OPT_no_gc_sections, false);
|
|
|
|
Config->GdbIndex = Args.hasFlag(OPT_gdb_index, OPT_no_gdb_index, false);
|
|
|
|
Config->ICF = Args.hasFlag(OPT_icf_all, OPT_icf_none, false);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->Init = Args.getLastArgValue(OPT_init, "_init");
|
|
|
|
Config->LTOAAPipeline = Args.getLastArgValue(OPT_lto_aa_pipeline);
|
|
|
|
Config->LTONewPmPasses = Args.getLastArgValue(OPT_lto_newpm_passes);
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->LTOO = args::getInteger(Args, OPT_lto_O, 2);
|
|
|
|
Config->LTOPartitions = args::getInteger(Args, OPT_lto_partitions, 1);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->MapFile = Args.getLastArgValue(OPT_Map);
|
2016-04-08 04:41:41 +08:00
|
|
|
Config->NoGnuUnique = Args.hasArg(OPT_no_gnu_unique);
|
2016-06-28 16:07:26 +08:00
|
|
|
Config->NoUndefinedVersion = Args.hasArg(OPT_no_undefined_version);
|
2017-07-26 17:46:59 +08:00
|
|
|
Config->NoinhibitExec = Args.hasArg(OPT_noinhibit_exec);
|
2016-09-03 03:20:33 +08:00
|
|
|
Config->Nostdlib = Args.hasArg(OPT_nostdlib);
|
2017-02-25 09:51:25 +08:00
|
|
|
Config->OFormatBinary = isOutputFormatBinary(Args);
|
2017-11-01 10:04:43 +08:00
|
|
|
Config->Omagic = Args.hasFlag(OPT_omagic, OPT_no_omagic, false);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->OptRemarksFilename = Args.getLastArgValue(OPT_opt_remarks_filename);
|
2017-02-14 01:49:18 +08:00
|
|
|
Config->OptRemarksWithHotness = Args.hasArg(OPT_opt_remarks_with_hotness);
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->Optimize = args::getInteger(Args, OPT_O, 1);
|
2017-10-25 23:20:30 +08:00
|
|
|
Config->OrphanHandling = getOrphanHandling(Args);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->OutputFile = Args.getLastArgValue(OPT_o);
|
2017-10-25 04:59:55 +08:00
|
|
|
Config->Pie = Args.hasFlag(OPT_pie, OPT_nopie, false);
|
2017-11-01 10:04:43 +08:00
|
|
|
Config->PrintGcSections =
|
|
|
|
Args.hasFlag(OPT_print_gc_sections, OPT_no_print_gc_sections, false);
|
2017-04-30 07:06:43 +08:00
|
|
|
Config->Rpath = getRpath(Args);
|
2016-02-25 16:23:37 +08:00
|
|
|
Config->Relocatable = Args.hasArg(OPT_relocatable);
|
2016-03-10 04:01:08 +08:00
|
|
|
Config->SaveTemps = Args.hasArg(OPT_save_temps);
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->SearchPaths = args::getStrings(Args, OPT_library_path);
|
2017-02-25 09:51:25 +08:00
|
|
|
Config->SectionStartMap = getSectionStartMap(Args);
|
2015-09-30 06:33:18 +08:00
|
|
|
Config->Shared = Args.hasArg(OPT_shared);
|
2017-02-25 09:51:25 +08:00
|
|
|
Config->SingleRoRx = Args.hasArg(OPT_no_rosegment);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->SoName = Args.getLastArgValue(OPT_soname);
|
2017-02-25 10:23:28 +08:00
|
|
|
Config->SortSection = getSortSection(Args);
|
|
|
|
Config->Strip = getStrip(Args);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->Sysroot = Args.getLastArgValue(OPT_sysroot);
|
2017-10-25 04:59:55 +08:00
|
|
|
Config->Target1Rel = Args.hasFlag(OPT_target1_rel, OPT_target1_abs, false);
|
2017-02-25 10:23:28 +08:00
|
|
|
Config->Target2 = getTarget2(Args);
|
2017-06-14 16:01:26 +08:00
|
|
|
Config->ThinLTOCacheDir = Args.getLastArgValue(OPT_thinlto_cache_dir);
|
2017-12-07 06:08:17 +08:00
|
|
|
Config->ThinLTOCachePolicy = CHECK(
|
2017-06-14 16:01:26 +08:00
|
|
|
parseCachePruningPolicy(Args.getLastArgValue(OPT_thinlto_cache_policy)),
|
|
|
|
"--thinlto-cache-policy: invalid cache policy");
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->ThinLTOJobs = args::getInteger(Args, OPT_thinlto_jobs, -1u);
|
2017-10-25 04:59:55 +08:00
|
|
|
ThreadsEnabled = Args.hasFlag(OPT_threads, OPT_no_threads, true);
|
2016-03-29 16:45:40 +08:00
|
|
|
Config->Trace = Args.hasArg(OPT_trace);
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->Undefined = args::getStrings(Args, OPT_undefined);
|
2017-02-25 09:51:25 +08:00
|
|
|
Config->UnresolvedSymbols = getUnresolvedSymbolPolicy(Args);
|
2015-10-11 10:03:03 +08:00
|
|
|
Config->Verbose = Args.hasArg(OPT_verbose);
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
errorHandler().Verbose = Config->Verbose;
|
2016-03-14 17:19:30 +08:00
|
|
|
Config->WarnCommon = Args.hasArg(OPT_warn_common);
|
2016-05-10 23:47:57 +08:00
|
|
|
Config->ZCombreloc = !hasZOption(Args, "nocombreloc");
|
2016-10-12 01:46:48 +08:00
|
|
|
Config->ZExecstack = hasZOption(Args, "execstack");
|
2017-02-22 05:41:50 +08:00
|
|
|
Config->ZNocopyreloc = hasZOption(Args, "nocopyreloc");
|
2015-11-13 03:00:37 +08:00
|
|
|
Config->ZNodelete = hasZOption(Args, "nodelete");
|
2017-03-23 08:54:16 +08:00
|
|
|
Config->ZNodlopen = hasZOption(Args, "nodlopen");
|
2015-11-13 03:00:37 +08:00
|
|
|
Config->ZNow = hasZOption(Args, "now");
|
|
|
|
Config->ZOrigin = hasZOption(Args, "origin");
|
2015-11-24 18:15:50 +08:00
|
|
|
Config->ZRelro = !hasZOption(Args, "norelro");
|
2017-05-27 03:12:38 +08:00
|
|
|
Config->ZRodynamic = hasZOption(Args, "rodynamic");
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->ZStackSize = args::getZOptionValue(Args, OPT_z, "stack-size", 0);
|
2017-03-09 16:48:34 +08:00
|
|
|
Config->ZText = !hasZOption(Args, "notext");
|
2016-10-14 18:34:36 +08:00
|
|
|
Config->ZWxneeded = hasZOption(Args, "wxneeded");
|
2015-11-13 03:00:37 +08:00
|
|
|
|
2017-08-15 01:48:30 +08:00
|
|
|
// Parse LTO plugin-related options for compatibility with gold.
|
2017-08-14 18:17:30 +08:00
|
|
|
for (auto *Arg : Args.filtered(OPT_plugin_opt, OPT_plugin_opt_eq)) {
|
|
|
|
StringRef S = Arg->getValue();
|
|
|
|
if (S == "disable-verify")
|
|
|
|
Config->DisableVerify = true;
|
|
|
|
else if (S == "save-temps")
|
|
|
|
Config->SaveTemps = true;
|
|
|
|
else if (S.startswith("O"))
|
|
|
|
Config->LTOO = parseInt(S.substr(1), Arg);
|
|
|
|
else if (S.startswith("lto-partitions="))
|
|
|
|
Config->LTOPartitions = parseInt(S.substr(15), Arg);
|
|
|
|
else if (S.startswith("jobs="))
|
|
|
|
Config->ThinLTOJobs = parseInt(S.substr(5), Arg);
|
|
|
|
else if (!S.startswith("/") && !S.startswith("-fresolution=") &&
|
2017-08-14 20:36:14 +08:00
|
|
|
!S.startswith("-pass-through=") && !S.startswith("mcpu=") &&
|
2017-08-16 16:21:04 +08:00
|
|
|
!S.startswith("thinlto") && S != "-function-sections" &&
|
|
|
|
S != "-data-sections")
|
2017-08-14 18:17:30 +08:00
|
|
|
error(Arg->getSpelling() + ": unknown option: " + S);
|
|
|
|
}
|
2017-08-15 01:48:30 +08:00
|
|
|
|
2017-02-25 09:51:25 +08:00
|
|
|
if (Config->LTOO > 3)
|
2017-08-14 18:17:30 +08:00
|
|
|
error("invalid optimization level for LTO: " + Twine(Config->LTOO));
|
2017-02-25 09:51:25 +08:00
|
|
|
if (Config->LTOPartitions == 0)
|
|
|
|
error("--lto-partitions: number of threads must be > 0");
|
|
|
|
if (Config->ThinLTOJobs == 0)
|
|
|
|
error("--thinlto-jobs: number of threads must be > 0");
|
|
|
|
|
2017-08-15 01:48:30 +08:00
|
|
|
// Parse ELF{32,64}{LE,BE} and CPU type.
|
2017-02-25 09:51:25 +08:00
|
|
|
if (auto *Arg = Args.getLastArg(OPT_m)) {
|
|
|
|
StringRef S = Arg->getValue();
|
|
|
|
std::tie(Config->EKind, Config->EMachine, Config->OSABI) =
|
|
|
|
parseEmulation(S);
|
|
|
|
Config->MipsN32Abi = (S == "elf32btsmipn32" || S == "elf32ltsmipn32");
|
|
|
|
Config->Emulation = S;
|
|
|
|
}
|
2016-10-20 13:23:23 +08:00
|
|
|
|
2017-10-06 17:37:44 +08:00
|
|
|
// Parse -hash-style={sysv,gnu,both}.
|
|
|
|
if (auto *Arg = Args.getLastArg(OPT_hash_style)) {
|
|
|
|
StringRef S = Arg->getValue();
|
|
|
|
if (S == "sysv")
|
|
|
|
Config->SysvHash = true;
|
|
|
|
else if (S == "gnu")
|
|
|
|
Config->GnuHash = true;
|
|
|
|
else if (S == "both")
|
|
|
|
Config->SysvHash = Config->GnuHash = true;
|
|
|
|
else
|
|
|
|
error("unknown -hash-style: " + S);
|
|
|
|
}
|
|
|
|
|
2017-01-15 10:52:34 +08:00
|
|
|
if (Args.hasArg(OPT_print_map))
|
|
|
|
Config->MapFile = "-";
|
|
|
|
|
2016-12-03 15:09:28 +08:00
|
|
|
// --omagic is an option to create old-fashioned executables in which
|
|
|
|
// .text segments are writable. Today, the option is still in use to
|
|
|
|
// create special-purpose programs such as boot loaders. It doesn't
|
|
|
|
// make sense to create PT_GNU_RELRO for such executables.
|
2017-02-25 09:52:03 +08:00
|
|
|
if (Config->Omagic)
|
2016-12-03 15:09:28 +08:00
|
|
|
Config->ZRelro = false;
|
|
|
|
|
2017-04-27 05:23:11 +08:00
|
|
|
std::tie(Config->BuildId, Config->BuildIdVector) = getBuildId(Args);
|
2016-04-08 06:49:21 +08:00
|
|
|
|
2017-10-28 01:49:40 +08:00
|
|
|
if (auto *Arg = Args.getLastArg(OPT_pack_dyn_relocs_eq)) {
|
|
|
|
StringRef S = Arg->getValue();
|
|
|
|
if (S == "android")
|
|
|
|
Config->AndroidPackDynRelocs = true;
|
|
|
|
else if (S != "none")
|
|
|
|
error("unknown -pack-dyn-relocs format: " + S);
|
|
|
|
}
|
|
|
|
|
2016-11-10 17:05:20 +08:00
|
|
|
if (auto *Arg = Args.getLastArg(OPT_symbol_ordering_file))
|
|
|
|
if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
|
2017-11-29 03:58:45 +08:00
|
|
|
Config->SymbolOrderingFile = args::getLines(*Buffer);
|
2016-11-10 17:05:20 +08:00
|
|
|
|
2017-01-26 05:49:23 +08:00
|
|
|
// If --retain-symbol-file is used, we'll keep only the symbols listed in
|
2016-12-20 02:00:52 +08:00
|
|
|
// the file and discard all others.
|
|
|
|
if (auto *Arg = Args.getLastArg(OPT_retain_symbols_file)) {
|
2017-01-26 05:23:06 +08:00
|
|
|
Config->DefaultSymbolVersion = VER_NDX_LOCAL;
|
2016-12-20 02:00:52 +08:00
|
|
|
if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
|
2017-11-29 03:58:45 +08:00
|
|
|
for (StringRef S : args::getLines(*Buffer))
|
2017-01-26 05:23:06 +08:00
|
|
|
Config->VersionScriptGlobals.push_back(
|
|
|
|
{S, /*IsExternCpp*/ false, /*HasWildcard*/ false});
|
2016-12-20 02:00:52 +08:00
|
|
|
}
|
|
|
|
|
2017-04-26 01:40:12 +08:00
|
|
|
bool HasExportDynamic =
|
2017-10-25 04:59:55 +08:00
|
|
|
Args.hasFlag(OPT_export_dynamic, OPT_no_export_dynamic, false);
|
2016-04-23 04:21:26 +08:00
|
|
|
|
2017-04-26 01:40:12 +08:00
|
|
|
// Parses -dynamic-list and -export-dynamic-symbol. They make some
|
|
|
|
// symbols private. Note that -export-dynamic takes precedence over them
|
|
|
|
// as it says all symbols should be exported.
|
|
|
|
if (!HasExportDynamic) {
|
|
|
|
for (auto *Arg : Args.filtered(OPT_dynamic_list))
|
|
|
|
if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
|
|
|
|
readDynamicList(*Buffer);
|
|
|
|
|
|
|
|
for (auto *Arg : Args.filtered(OPT_export_dynamic_symbol))
|
2017-10-07 06:09:03 +08:00
|
|
|
Config->DynamicList.push_back(
|
2017-04-26 01:40:12 +08:00
|
|
|
{Arg->getValue(), /*IsExternCpp*/ false, /*HasWildcard*/ false});
|
|
|
|
}
|
2017-04-12 06:37:54 +08:00
|
|
|
|
2016-07-18 01:23:17 +08:00
|
|
|
if (auto *Arg = Args.getLastArg(OPT_version_script))
|
2016-04-28 10:08:54 +08:00
|
|
|
if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue()))
|
2016-08-31 17:08:26 +08:00
|
|
|
readVersionScript(*Buffer);
|
2016-01-08 01:54:19 +08:00
|
|
|
}
|
2015-10-20 01:35:12 +08:00
|
|
|
|
2017-03-18 07:29:01 +08:00
|
|
|
// Some Config members do not directly correspond to any particular
|
|
|
|
// command line options, but computed based on other Config values.
|
|
|
|
// This function initialize such members. See Config.h for the details
|
|
|
|
// of these values.
|
|
|
|
static void setConfigs() {
|
|
|
|
ELFKind Kind = Config->EKind;
|
|
|
|
uint16_t Machine = Config->EMachine;
|
|
|
|
|
|
|
|
// There is an ILP32 ABI for x86-64, although it's not very popular.
|
|
|
|
// It is called the x32 ABI.
|
|
|
|
bool IsX32 = (Kind == ELF32LEKind && Machine == EM_X86_64);
|
|
|
|
|
|
|
|
Config->CopyRelocs = (Config->Relocatable || Config->EmitRelocs);
|
2017-03-22 08:01:11 +08:00
|
|
|
Config->Is64 = (Kind == ELF64LEKind || Kind == ELF64BEKind);
|
2017-03-18 07:29:01 +08:00
|
|
|
Config->IsLE = (Kind == ELF32LEKind || Kind == ELF64LEKind);
|
2017-03-22 05:40:08 +08:00
|
|
|
Config->Endianness =
|
|
|
|
Config->IsLE ? support::endianness::little : support::endianness::big;
|
2017-03-18 07:29:01 +08:00
|
|
|
Config->IsMips64EL = (Kind == ELF64LEKind && Machine == EM_MIPS);
|
2017-03-22 08:01:11 +08:00
|
|
|
Config->IsRela = Config->Is64 || IsX32 || Config->MipsN32Abi;
|
2017-03-18 07:29:01 +08:00
|
|
|
Config->Pic = Config->Pie || Config->Shared;
|
2017-03-22 08:01:11 +08:00
|
|
|
Config->Wordsize = Config->Is64 ? 8 : 4;
|
2017-03-18 07:29:01 +08:00
|
|
|
}
|
|
|
|
|
2016-10-20 12:36:36 +08:00
|
|
|
// Returns a value of "-format" option.
|
2016-10-20 12:47:45 +08:00
|
|
|
static bool getBinaryOption(StringRef S) {
|
2016-10-20 12:36:36 +08:00
|
|
|
if (S == "binary")
|
|
|
|
return true;
|
|
|
|
if (S == "elf" || S == "default")
|
|
|
|
return false;
|
2016-10-20 12:47:45 +08:00
|
|
|
error("unknown -format value: " + S +
|
2016-10-20 12:36:36 +08:00
|
|
|
" (supported formats: elf, default, binary)");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-08 01:54:19 +08:00
|
|
|
void LinkerDriver::createFiles(opt::InputArgList &Args) {
|
2015-10-02 00:42:03 +08:00
|
|
|
for (auto *Arg : Args) {
|
2017-07-20 04:30:04 +08:00
|
|
|
switch (Arg->getOption().getUnaliasedOption().getID()) {
|
2017-07-22 00:27:26 +08:00
|
|
|
case OPT_library:
|
2016-02-03 05:13:09 +08:00
|
|
|
addLibrary(Arg->getValue());
|
2015-10-02 00:42:03 +08:00
|
|
|
break;
|
|
|
|
case OPT_INPUT:
|
2017-04-12 08:13:48 +08:00
|
|
|
addFile(Arg->getValue(), /*WithLOption=*/false);
|
2015-10-02 00:42:03 +08:00
|
|
|
break;
|
2016-09-10 06:08:04 +08:00
|
|
|
case OPT_script:
|
2017-11-20 23:43:20 +08:00
|
|
|
if (Optional<std::string> Path = searchLinkerScript(Arg->getValue())) {
|
|
|
|
if (Optional<MemoryBufferRef> MB = readFile(*Path))
|
|
|
|
readLinkerScript(*MB);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
error(Twine("cannot find linker script ") + Arg->getValue());
|
2016-09-10 06:08:04 +08:00
|
|
|
break;
|
2015-10-12 04:59:12 +08:00
|
|
|
case OPT_as_needed:
|
|
|
|
Config->AsNeeded = true;
|
|
|
|
break;
|
2016-10-20 12:36:36 +08:00
|
|
|
case OPT_format:
|
2016-10-20 13:12:29 +08:00
|
|
|
InBinary = getBinaryOption(Arg->getValue());
|
2016-09-10 06:08:04 +08:00
|
|
|
break;
|
2015-10-12 04:59:12 +08:00
|
|
|
case OPT_no_as_needed:
|
|
|
|
Config->AsNeeded = false;
|
|
|
|
break;
|
2015-10-02 00:42:03 +08:00
|
|
|
case OPT_Bstatic:
|
|
|
|
Config->Static = true;
|
|
|
|
break;
|
|
|
|
case OPT_Bdynamic:
|
|
|
|
Config->Static = false;
|
|
|
|
break;
|
2015-10-02 02:02:21 +08:00
|
|
|
case OPT_whole_archive:
|
2016-10-26 12:01:07 +08:00
|
|
|
InWholeArchive = true;
|
2015-10-02 02:02:21 +08:00
|
|
|
break;
|
|
|
|
case OPT_no_whole_archive:
|
2016-10-26 12:01:07 +08:00
|
|
|
InWholeArchive = false;
|
2015-10-02 02:02:21 +08:00
|
|
|
break;
|
2016-04-08 03:24:51 +08:00
|
|
|
case OPT_start_lib:
|
|
|
|
InLib = true;
|
|
|
|
break;
|
|
|
|
case OPT_end_lib:
|
|
|
|
InLib = false;
|
|
|
|
break;
|
2015-09-28 20:52:21 +08:00
|
|
|
}
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
if (Files.empty() && errorCount() == 0)
|
2016-10-20 02:09:52 +08:00
|
|
|
error("no input files");
|
2016-10-20 12:47:47 +08:00
|
|
|
}
|
2016-06-29 09:30:50 +08:00
|
|
|
|
2016-10-20 12:47:47 +08:00
|
|
|
// If -m <machine_type> was not given, infer it from object files.
|
|
|
|
void LinkerDriver::inferMachineType() {
|
|
|
|
if (Config->EKind != ELFNoneKind)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (InputFile *F : Files) {
|
|
|
|
if (F->EKind == ELFNoneKind)
|
|
|
|
continue;
|
|
|
|
Config->EKind = F->EKind;
|
|
|
|
Config->EMachine = F->EMachine;
|
2016-10-27 22:00:51 +08:00
|
|
|
Config->OSABI = F->OSABI;
|
2016-11-06 06:58:01 +08:00
|
|
|
Config->MipsN32Abi = Config->EMachine == EM_MIPS && isMipsN32Abi(F);
|
2016-10-20 12:47:47 +08:00
|
|
|
return;
|
2016-06-29 09:30:50 +08:00
|
|
|
}
|
2016-10-20 12:47:47 +08:00
|
|
|
error("target emulation unknown: -m or at least one .o file required");
|
2015-10-10 05:07:25 +08:00
|
|
|
}
|
|
|
|
|
2016-12-09 01:44:37 +08:00
|
|
|
// Parse -z max-page-size=<value>. The default value is defined by
|
|
|
|
// each target.
|
|
|
|
static uint64_t getMaxPageSize(opt::InputArgList &Args) {
|
2017-11-29 03:58:45 +08:00
|
|
|
uint64_t Val = args::getZOptionValue(Args, OPT_z, "max-page-size",
|
|
|
|
Target->DefaultMaxPageSize);
|
2016-12-09 01:44:37 +08:00
|
|
|
if (!isPowerOf2_64(Val))
|
|
|
|
error("max-page-size: value isn't a power of 2");
|
|
|
|
return Val;
|
|
|
|
}
|
|
|
|
|
2016-10-26 12:34:16 +08:00
|
|
|
// Parses -image-base option.
|
2017-10-10 18:09:35 +08:00
|
|
|
static Optional<uint64_t> getImageBase(opt::InputArgList &Args) {
|
|
|
|
// Because we are using "Config->MaxPageSize" here, this function has to be
|
|
|
|
// called after the variable is initialized.
|
2016-10-26 12:34:16 +08:00
|
|
|
auto *Arg = Args.getLastArg(OPT_image_base);
|
|
|
|
if (!Arg)
|
2017-10-10 18:09:35 +08:00
|
|
|
return None;
|
2016-10-26 12:34:16 +08:00
|
|
|
|
|
|
|
StringRef S = Arg->getValue();
|
|
|
|
uint64_t V;
|
2017-05-16 16:19:25 +08:00
|
|
|
if (!to_integer(S, V)) {
|
2016-10-26 12:34:16 +08:00
|
|
|
error("-image-base: number expected, but got " + S);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-12-08 04:29:46 +08:00
|
|
|
if ((V % Config->MaxPageSize) != 0)
|
2016-10-26 12:34:16 +08:00
|
|
|
warn("-image-base: address isn't multiple of page size: " + S);
|
|
|
|
return V;
|
|
|
|
}
|
|
|
|
|
2017-06-21 23:36:24 +08:00
|
|
|
// Parses `--exclude-libs=lib,lib,...`.
|
|
|
|
// The library names may be delimited by commas or colons.
|
|
|
|
static DenseSet<StringRef> getExcludeLibs(opt::InputArgList &Args) {
|
|
|
|
DenseSet<StringRef> Ret;
|
|
|
|
for (auto *Arg : Args.filtered(OPT_exclude_libs)) {
|
|
|
|
StringRef S = Arg->getValue();
|
|
|
|
for (;;) {
|
|
|
|
size_t Pos = S.find_first_of(",:");
|
|
|
|
if (Pos == StringRef::npos)
|
|
|
|
break;
|
|
|
|
Ret.insert(S.substr(0, Pos));
|
|
|
|
S = S.substr(Pos + 1);
|
|
|
|
}
|
|
|
|
Ret.insert(S);
|
|
|
|
}
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
2017-10-31 21:51:06 +08:00
|
|
|
static Optional<StringRef> getArchiveName(InputFile *File) {
|
|
|
|
if (isa<ArchiveFile>(File))
|
|
|
|
return File->getName();
|
|
|
|
if (!File->ArchiveName.empty())
|
|
|
|
return File->ArchiveName;
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2017-06-21 23:36:24 +08:00
|
|
|
// Handles the -exclude-libs option. If a static library file is specified
|
|
|
|
// by the -exclude-libs option, all public symbols from the archive become
|
|
|
|
// private unless otherwise specified by version scripts or something.
|
|
|
|
// A special library name "ALL" means all archive files.
|
|
|
|
//
|
|
|
|
// This is not a popular option, but some programs such as bionic libc use it.
|
2017-10-31 21:51:06 +08:00
|
|
|
template <class ELFT>
|
2017-06-21 23:36:24 +08:00
|
|
|
static void excludeLibs(opt::InputArgList &Args, ArrayRef<InputFile *> Files) {
|
|
|
|
DenseSet<StringRef> Libs = getExcludeLibs(Args);
|
|
|
|
bool All = Libs.count("ALL");
|
|
|
|
|
2017-11-01 00:07:41 +08:00
|
|
|
for (InputFile *File : Files)
|
2017-10-31 21:51:06 +08:00
|
|
|
if (Optional<StringRef> Archive = getArchiveName(File))
|
|
|
|
if (All || Libs.count(path::filename(*Archive)))
|
2017-11-04 05:21:47 +08:00
|
|
|
for (Symbol *Sym : File->getSymbols())
|
2017-11-01 00:07:41 +08:00
|
|
|
if (!Sym->isLocal())
|
|
|
|
Sym->VersionId = VER_NDX_LOCAL;
|
2017-06-21 23:36:24 +08:00
|
|
|
}
|
|
|
|
|
2016-04-23 03:58:47 +08:00
|
|
|
// Do actual linking. Note that when this function is called,
|
|
|
|
// all linker scripts have already been parsed.
|
2015-10-10 05:07:25 +08:00
|
|
|
template <class ELFT> void LinkerDriver::link(opt::InputArgList &Args) {
|
2017-06-17 04:15:03 +08:00
|
|
|
Target = getTarget();
|
2015-10-10 05:12:40 +08:00
|
|
|
|
2016-12-09 01:44:37 +08:00
|
|
|
Config->MaxPageSize = getMaxPageSize(Args);
|
2016-10-26 12:34:16 +08:00
|
|
|
Config->ImageBase = getImageBase(Args);
|
2016-03-14 04:10:20 +08:00
|
|
|
|
2017-10-06 17:37:44 +08:00
|
|
|
// If a -hash-style option was not given, set to a default value,
|
|
|
|
// which varies depending on the target.
|
|
|
|
if (!Args.hasArg(OPT_hash_style)) {
|
|
|
|
if (Config->EMachine == EM_MIPS)
|
|
|
|
Config->SysvHash = true;
|
|
|
|
else
|
|
|
|
Config->SysvHash = Config->GnuHash = true;
|
|
|
|
}
|
|
|
|
|
2016-04-23 03:58:47 +08:00
|
|
|
// Default output filename is "a.out" by the Unix tradition.
|
|
|
|
if (Config->OutputFile.empty())
|
|
|
|
Config->OutputFile = "a.out";
|
|
|
|
|
2017-04-04 17:42:24 +08:00
|
|
|
// Fail early if the output file or map file is not writable. If a user has a
|
|
|
|
// long link, e.g. due to a large LTO link, they do not wish to run it and
|
|
|
|
// find that it failed because there was a mistake in their command-line.
|
2017-04-27 00:14:46 +08:00
|
|
|
if (auto E = tryCreateFile(Config->OutputFile))
|
|
|
|
error("cannot open output file " + Config->OutputFile + ": " + E.message());
|
|
|
|
if (auto E = tryCreateFile(Config->MapFile))
|
|
|
|
error("cannot open map file " + Config->MapFile + ": " + E.message());
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
if (errorCount())
|
2017-03-14 07:23:40 +08:00
|
|
|
return;
|
|
|
|
|
2016-12-09 01:32:58 +08:00
|
|
|
// Use default entry point name if no name was given via the command
|
|
|
|
// line nor linker scripts. For some reason, MIPS entry point name is
|
2016-12-07 12:45:34 +08:00
|
|
|
// different from others.
|
2016-12-21 06:24:45 +08:00
|
|
|
Config->WarnMissingEntry =
|
|
|
|
(!Config->Entry.empty() || (!Config->Shared && !Config->Relocatable));
|
2016-12-09 01:32:58 +08:00
|
|
|
if (Config->Entry.empty() && !Config->Relocatable)
|
2016-12-07 12:45:34 +08:00
|
|
|
Config->Entry = (Config->EMachine == EM_MIPS) ? "__start" : "_start";
|
|
|
|
|
2016-07-18 01:50:09 +08:00
|
|
|
// Handle --trace-symbol.
|
|
|
|
for (auto *Arg : Args.filtered(OPT_trace_symbol))
|
2017-07-27 02:42:48 +08:00
|
|
|
Symtab->trace(Arg->getValue());
|
2016-07-18 01:50:09 +08:00
|
|
|
|
2016-12-07 12:45:34 +08:00
|
|
|
// Add all files to the symbol table. This will add almost all
|
|
|
|
// symbols that we need to the symbol table.
|
2016-09-14 08:05:51 +08:00
|
|
|
for (InputFile *F : Files)
|
2017-07-27 02:42:48 +08:00
|
|
|
Symtab->addFile<ELFT>(F);
|
2016-09-08 16:57:51 +08:00
|
|
|
|
2017-11-04 10:03:58 +08:00
|
|
|
// Process -defsym option.
|
|
|
|
for (auto *Arg : Args.filtered(OPT_defsym)) {
|
|
|
|
StringRef From;
|
|
|
|
StringRef To;
|
|
|
|
std::tie(From, To) = StringRef(Arg->getValue()).split('=');
|
|
|
|
readDefsym(From, MemoryBufferRef(To, "-defsym"));
|
|
|
|
}
|
|
|
|
|
2017-09-16 02:05:02 +08:00
|
|
|
// Now that we have every file, we can decide if we will need a
|
|
|
|
// dynamic symbol table.
|
|
|
|
// We need one if we were asked to export dynamic symbols or if we are
|
|
|
|
// producing a shared library.
|
|
|
|
// We also need one if any shared libraries are used and for pie executables
|
|
|
|
// (probably because the dynamic linker needs it).
|
2017-09-19 17:20:54 +08:00
|
|
|
Config->HasDynSymTab =
|
|
|
|
!SharedFiles.empty() || Config->Pic || Config->ExportDynamic;
|
2017-09-16 02:05:02 +08:00
|
|
|
|
2017-08-23 16:37:22 +08:00
|
|
|
// Some symbols (such as __ehdr_start) are defined lazily only when there
|
|
|
|
// are undefined symbols for them, so we add these to trigger that logic.
|
2017-10-11 09:19:33 +08:00
|
|
|
for (StringRef Sym : Script->ReferencedSymbols)
|
2017-08-23 16:37:22 +08:00
|
|
|
Symtab->addUndefined<ELFT>(Sym);
|
|
|
|
|
2017-10-04 04:45:09 +08:00
|
|
|
// Handle the `--undefined <sym>` options.
|
|
|
|
for (StringRef S : Config->Undefined)
|
|
|
|
Symtab->fetchIfLazy<ELFT>(S);
|
|
|
|
|
2016-12-07 12:45:34 +08:00
|
|
|
// If an entry symbol is in a static archive, pull out that file now
|
|
|
|
// to complete the symbol table. After this, no new names except a
|
|
|
|
// few linker-synthesized ones will be added to the symbol table.
|
2017-10-03 20:23:46 +08:00
|
|
|
Symtab->fetchIfLazy<ELFT>(Config->Entry);
|
2016-09-08 16:57:51 +08:00
|
|
|
|
2016-12-07 12:45:34 +08:00
|
|
|
// Return if there were name resolution errors.
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
if (errorCount())
|
2016-12-07 12:45:34 +08:00
|
|
|
return;
|
2015-10-10 05:07:25 +08:00
|
|
|
|
2017-06-21 23:36:24 +08:00
|
|
|
// Handle undefined symbols in DSOs.
|
2017-07-27 02:42:48 +08:00
|
|
|
Symtab->scanShlibUndefined<ELFT>();
|
2017-06-21 23:36:24 +08:00
|
|
|
|
|
|
|
// Handle the -exclude-libs option.
|
|
|
|
if (Args.hasArg(OPT_exclude_libs))
|
2017-10-31 21:51:06 +08:00
|
|
|
excludeLibs<ELFT>(Args, Files);
|
2017-06-21 23:36:24 +08:00
|
|
|
|
|
|
|
// Apply version scripts.
|
2017-07-27 02:42:48 +08:00
|
|
|
Symtab->scanVersionScript();
|
2016-04-23 02:47:52 +08:00
|
|
|
|
2017-06-06 00:24:25 +08:00
|
|
|
// Create wrapped symbols for -wrap option.
|
|
|
|
for (auto *Arg : Args.filtered(OPT_wrap))
|
2017-07-27 02:42:48 +08:00
|
|
|
Symtab->addSymbolWrap<ELFT>(Arg->getValue());
|
2017-06-06 00:24:25 +08:00
|
|
|
|
2017-07-27 02:42:48 +08:00
|
|
|
Symtab->addCombinedLTOObject<ELFT>();
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
if (errorCount())
|
2016-05-16 03:29:38 +08:00
|
|
|
return;
|
2016-02-13 04:54:57 +08:00
|
|
|
|
2017-11-05 07:09:43 +08:00
|
|
|
// Apply symbol renames for -wrap.
|
|
|
|
Symtab->applySymbolWrap();
|
2017-04-26 18:40:02 +08:00
|
|
|
|
2016-11-06 06:37:59 +08:00
|
|
|
// Now that we have a complete list of input files.
|
|
|
|
// Beyond this point, no new files are added.
|
|
|
|
// Aggregate all input sections into one place.
|
2017-09-19 17:20:54 +08:00
|
|
|
for (InputFile *F : ObjectFiles)
|
2017-02-23 10:28:28 +08:00
|
|
|
for (InputSectionBase *S : F->getSections())
|
2017-02-24 00:49:07 +08:00
|
|
|
if (S && S != &InputSection::Discarded)
|
2017-02-27 10:32:08 +08:00
|
|
|
InputSections.push_back(S);
|
2017-09-19 17:20:54 +08:00
|
|
|
for (BinaryFile *F : BinaryFiles)
|
2017-02-23 10:32:18 +08:00
|
|
|
for (InputSectionBase *S : F->getSections())
|
2017-02-27 10:32:08 +08:00
|
|
|
InputSections.push_back(cast<InputSection>(S));
|
2016-11-06 06:37:59 +08:00
|
|
|
|
2017-11-04 16:20:30 +08:00
|
|
|
// We do not want to emit debug sections if --strip-all
|
|
|
|
// or -strip-debug are given.
|
|
|
|
if (Config->Strip != StripPolicy::None)
|
|
|
|
llvm::erase_if(InputSections, [](InputSectionBase *S) {
|
|
|
|
return S->Name.startswith(".debug") || S->Name.startswith(".zdebug");
|
|
|
|
});
|
|
|
|
|
2017-10-25 01:01:40 +08:00
|
|
|
Config->EFlags = Target->calcEFlags();
|
2017-10-02 22:56:41 +08:00
|
|
|
|
2017-11-28 21:51:48 +08:00
|
|
|
if (Config->EMachine == EM_ARM) {
|
|
|
|
// FIXME: These warnings can be removed when lld only uses these features
|
|
|
|
// when the input objects have been compiled with an architecture that
|
|
|
|
// supports them.
|
|
|
|
if (Config->ARMHasBlx == false)
|
|
|
|
warn("lld uses blx instruction, no object with architecture supporting "
|
|
|
|
"feature detected.");
|
|
|
|
if (Config->ARMJ1J2BranchEncoding == false)
|
|
|
|
warn("lld uses extended branch encoding, no object with architecture "
|
|
|
|
"supporting feature detected.");
|
|
|
|
if (Config->ARMHasMovtMovw == false)
|
|
|
|
warn("lld may use movt/movw, no object with architecture supporting "
|
|
|
|
"feature detected.");
|
|
|
|
}
|
|
|
|
|
2017-06-12 08:00:51 +08:00
|
|
|
// This adds a .comment section containing a version string. We have to add it
|
|
|
|
// before decompressAndMergeSections because the .comment section is a
|
|
|
|
// mergeable section.
|
|
|
|
if (!Config->Relocatable)
|
|
|
|
InputSections.push_back(createCommentSection<ELFT>());
|
|
|
|
|
|
|
|
// Do size optimizations: garbage collection, merging of SHF_MERGE sections
|
|
|
|
// and identical code folding.
|
2017-10-11 06:59:32 +08:00
|
|
|
markLive<ELFT>();
|
2017-10-11 11:12:53 +08:00
|
|
|
decompressSections();
|
|
|
|
mergeSections();
|
2016-02-26 02:43:51 +08:00
|
|
|
if (Config->ICF)
|
2016-05-03 03:30:42 +08:00
|
|
|
doIcf<ELFT>();
|
2016-05-24 00:55:43 +08:00
|
|
|
|
2016-09-14 03:56:25 +08:00
|
|
|
// Write the result to the file.
|
2016-08-09 11:38:23 +08:00
|
|
|
writeResult<ELFT>();
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|