2015-07-25 05:03:07 +08:00
|
|
|
//===- Driver.cpp ---------------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-07-25 05:03:07 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
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"
|
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"
|
2018-02-21 06:09:59 +08:00
|
|
|
#include "MarkLive.h"
|
2017-03-20 18:09:58 +08:00
|
|
|
#include "OutputSections.h"
|
2017-04-05 13:07:39 +08:00
|
|
|
#include "ScriptParser.h"
|
2015-08-06 07:24:46 +08:00
|
|
|
#include "SymbolTable.h"
|
2017-12-10 00:56:18 +08:00
|
|
|
#include "Symbols.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"
|
2019-03-12 00:30:55 +08:00
|
|
|
#include "lld/Common/Filesystem.h"
|
2017-11-29 04:39:17 +08:00
|
|
|
#include "lld/Common/Memory.h"
|
2018-03-01 01:38:19 +08:00
|
|
|
#include "lld/Common/Strings.h"
|
2018-02-06 20:20:05 +08:00
|
|
|
#include "lld/Common/TargetOptionsCommandFlags.h"
|
2017-10-03 05:00:41 +08:00
|
|
|
#include "lld/Common/Version.h"
|
2018-02-14 21:36:22 +08:00
|
|
|
#include "llvm/ADT/SetVector.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"
|
2020-12-09 06:27:39 +08:00
|
|
|
#include "llvm/Config/llvm-config.h"
|
2019-09-17 02:49:57 +08:00
|
|
|
#include "llvm/LTO/LTO.h"
|
2020-11-18 02:37:59 +08:00
|
|
|
#include "llvm/Remarks/HotnessThresholdParser.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"
|
2019-06-14 22:00:59 +08:00
|
|
|
#include "llvm/Support/GlobPattern.h"
|
2018-07-19 06:49:31 +08:00
|
|
|
#include "llvm/Support/LEB128.h"
|
[Support] Move LLD's parallel algorithm wrappers to support
Essentially takes the lld/Common/Threads.h wrappers and moves them to
the llvm/Support/Paralle.h algorithm header.
The changes are:
- Remove policy parameter, since all clients use `par`.
- Rename the methods to `parallelSort` etc to match LLVM style, since
they are no longer C++17 pstl compatible.
- Move algorithms from llvm::parallel:: to llvm::, since they have
"parallel" in the name and are no longer overloads of the regular
algorithms.
- Add range overloads
- Use the sequential algorithm directly when 1 thread is requested
(skips task grouping)
- Fix the index type of parallelForEachN to size_t. Nobody in LLVM was
using any other parameter, and it made overload resolution hard for
for_each_n(par, 0, foo.size(), ...) because 0 is int, not size_t.
Remove Threads.h and update LLD for that.
This is a prerequisite for parallel public symbol processing in the PDB
library, which is in LLVM.
Reviewed By: MaskRay, aganea
Differential Revision: https://reviews.llvm.org/D79390
2020-05-05 11:03:19 +08:00
|
|
|
#include "llvm/Support/Parallel.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"
|
2020-01-29 00:05:13 +08:00
|
|
|
#include "llvm/Support/TimeProfiler.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;
|
2018-09-21 05:29:14 +08:00
|
|
|
using namespace llvm::support;
|
2020-05-15 13:18:58 +08:00
|
|
|
using namespace lld;
|
|
|
|
using namespace lld::elf;
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2021-12-23 06:36:14 +08:00
|
|
|
std::unique_ptr<Configuration> elf::config;
|
|
|
|
std::unique_ptr<LinkerDriver> elf::driver;
|
2015-10-01 01:06:09 +08:00
|
|
|
|
2018-02-06 04:55:46 +08:00
|
|
|
static void setConfigs(opt::InputArgList &args);
|
2019-05-09 00:20:05 +08:00
|
|
|
static void readConfigs(opt::InputArgList &args);
|
2017-03-18 07:29:01 +08:00
|
|
|
|
2020-05-15 13:18:58 +08:00
|
|
|
bool elf::link(ArrayRef<const char *> args, bool canExitEarly,
|
|
|
|
raw_ostream &stdoutOS, raw_ostream &stderrOS) {
|
2019-11-20 23:08:18 +08:00
|
|
|
lld::stdoutOS = &stdoutOS;
|
|
|
|
lld::stderrOS = &stderrOS;
|
|
|
|
|
2020-09-25 03:00:43 +08:00
|
|
|
errorHandler().cleanupCallback = []() {
|
|
|
|
freeArena();
|
|
|
|
|
|
|
|
inputSections.clear();
|
|
|
|
outputSections.clear();
|
|
|
|
archiveFiles.clear();
|
|
|
|
binaryFiles.clear();
|
|
|
|
bitcodeFiles.clear();
|
2021-12-23 09:41:50 +08:00
|
|
|
lazyBitcodeFiles.clear();
|
2020-09-25 03:00:43 +08:00
|
|
|
objectFiles.clear();
|
|
|
|
sharedFiles.clear();
|
|
|
|
backwardReferences.clear();
|
2021-09-21 00:52:30 +08:00
|
|
|
whyExtract.clear();
|
2020-09-25 03:00:43 +08:00
|
|
|
|
|
|
|
tar = nullptr;
|
|
|
|
memset(&in, 0, sizeof(in));
|
|
|
|
|
|
|
|
partitions = {Partition()};
|
|
|
|
|
|
|
|
SharedFile::vernauxNum = 0;
|
|
|
|
};
|
|
|
|
|
2018-08-27 14:18:10 +08:00
|
|
|
errorHandler().logName = args::getFilenameWithoutExe(args[0]);
|
[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().errorLimitExceededMsg =
|
|
|
|
"too many errors emitted, stopping now (use "
|
|
|
|
"-error-limit=0 to see all errors)";
|
2018-02-17 07:41:48 +08:00
|
|
|
errorHandler().exitEarly = canExitEarly;
|
2019-11-20 23:08:18 +08:00
|
|
|
stderrOS.enable_colors(stderrOS.has_colors());
|
2018-02-17 07:41:48 +08:00
|
|
|
|
2021-12-23 06:36:14 +08:00
|
|
|
config = std::make_unique<Configuration>();
|
|
|
|
driver = std::make_unique<LinkerDriver>();
|
|
|
|
script = std::make_unique<LinkerScript>();
|
|
|
|
symtab = std::make_unique<SymbolTable>();
|
2018-09-26 03:26:58 +08:00
|
|
|
|
2019-05-29 11:55:20 +08:00
|
|
|
partitions = {Partition()};
|
|
|
|
|
2018-02-07 06:37:05 +08:00
|
|
|
config->progName = args[0];
|
2016-04-21 04:13:41 +08:00
|
|
|
|
2020-12-18 14:39:01 +08:00
|
|
|
driver->linkerMain(args);
|
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.
|
2018-02-17 07:41:48 +08:00
|
|
|
if (canExitEarly)
|
[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
|
|
|
|
2020-09-25 09:01:26 +08:00
|
|
|
bool ret = errorCount() == 0;
|
|
|
|
if (!canExitEarly)
|
|
|
|
errorHandler().reset();
|
|
|
|
return ret;
|
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)
|
2021-02-09 16:43:10 +08:00
|
|
|
.Cases("aarch64elf", "aarch64linux", {ELF64LEKind, EM_AARCH64})
|
2021-02-09 00:55:28 +08:00
|
|
|
.Cases("aarch64elfb", "aarch64linuxb", {ELF64BEKind, 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})
|
2018-08-10 01:59:56 +08:00
|
|
|
.Case("elf32lriscv", {ELF32LEKind, EM_RISCV})
|
2019-02-14 02:51:15 +08:00
|
|
|
.Cases("elf32ppc", "elf32ppclinux", {ELF32BEKind, EM_PPC})
|
2021-01-03 02:18:05 +08:00
|
|
|
.Cases("elf32lppc", "elf32lppclinux", {ELF32LEKind, EM_PPC})
|
2016-06-08 01:55:05 +08:00
|
|
|
.Case("elf64btsmip", {ELF64BEKind, EM_MIPS})
|
|
|
|
.Case("elf64ltsmip", {ELF64LEKind, EM_MIPS})
|
2018-08-10 01:59:56 +08:00
|
|
|
.Case("elf64lriscv", {ELF64LEKind, EM_RISCV})
|
2016-06-08 01:55:05 +08:00
|
|
|
.Case("elf64ppc", {ELF64BEKind, EM_PPC64})
|
2018-03-10 06:11:46 +08:00
|
|
|
.Case("elf64lppc", {ELF64LEKind, 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})
|
2020-04-17 22:58:15 +08:00
|
|
|
.Case("elf64_sparc", {ELF64BEKind, EM_SPARCV9})
|
2020-12-15 01:38:12 +08:00
|
|
|
.Case("msp430elf", {ELF32LEKind, EM_MSP430})
|
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);
|
2020-12-15 01:38:12 +08:00
|
|
|
if (ret.second == EM_MSP430)
|
|
|
|
osabi = ELFOSABI_STANDALONE;
|
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");
|
[Coding style change] Rename variables so that they start with a lowercase letter
This patch is mechanically generated by clang-llvm-rename tool that I wrote
using Clang Refactoring Engine just for creating this patch. You can see the
source code of the tool at https://reviews.llvm.org/D64123. There's no manual
post-processing; you can generate the same patch by re-running the tool against
lld's code base.
Here is the main discussion thread to change the LLVM coding style:
https://lists.llvm.org/pipermail/llvm-dev/2019-February/130083.html
In the discussion thread, I proposed we use lld as a testbed for variable
naming scheme change, and this patch does that.
I chose to rename variables so that they are in camelCase, just because that
is a minimal change to make variables to start with a lowercase letter.
Note to downstream patch maintainers: if you are maintaining a downstream lld
repo, just rebasing ahead of this commit would cause massive merge conflicts
because this patch essentially changes every line in the lld subdirectory. But
there's a remedy.
clang-llvm-rename tool is a batch tool, so you can rename variables in your
downstream repo with the tool. Given that, here is how to rebase your repo to
a commit after the mass renaming:
1. rebase to the commit just before the mass variable renaming,
2. apply the tool to your downstream repo to mass-rename variables locally, and
3. rebase again to the head.
Most changes made by the tool should be identical for a downstream repo and
for the head, so at the step 3, almost all changes should be merged and
disappear. I'd expect that there would be some lines that you need to merge by
hand, but that shouldn't be too many.
Differential Revision: https://reviews.llvm.org/D64121
llvm-svn: 365595
2019-07-10 13:00:37 +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;
|
2020-01-02 07:28:48 +08:00
|
|
|
for (const Archive::Child &c : file->children(err)) {
|
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
|
|
|
|
2018-08-07 05:29:41 +08:00
|
|
|
if (config->formatBinary) {
|
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: {
|
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()) {
|
2019-03-15 02:21:32 +08:00
|
|
|
// Check if all members are bitcode files. If not, ignore, which is the
|
|
|
|
// default action without the LTO hack described above.
|
|
|
|
for (const std::pair<MemoryBufferRef, uint64_t> &p :
|
|
|
|
getArchiveMembers(mbref))
|
2019-07-03 10:29:02 +08:00
|
|
|
if (identify_magic(p.first.getBuffer()) != file_magic::bitcode) {
|
|
|
|
error(path + ": archive has no index; run ranlib to add one");
|
2019-03-15 02:21:32 +08:00
|
|
|
return;
|
2019-07-03 10:29:02 +08:00
|
|
|
}
|
2019-03-15 02:21:32 +08:00
|
|
|
|
|
|
|
for (const std::pair<MemoryBufferRef, uint64_t> &p :
|
|
|
|
getArchiveMembers(mbref))
|
2021-12-23 09:41:50 +08:00
|
|
|
files.push_back(createLazyFile(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:
|
2018-12-19 06:30:23 +08:00
|
|
|
if (config->isStatic || 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
|
|
|
|
2021-10-26 06:54:04 +08:00
|
|
|
// Shared objects are identified by soname. soname is (if specified)
|
|
|
|
// DT_SONAME and falls back to filename. If a file was specified by -lfoo,
|
|
|
|
// the directory part is ignored. Note that path may be a temporary and
|
|
|
|
// cannot be stored into SharedFile::soName.
|
|
|
|
path = mbref.getBufferIdentifier();
|
2017-06-21 11:05:08 +08:00
|
|
|
files.push_back(
|
2019-05-27 15:26:13 +08:00
|
|
|
make<SharedFile>(mbref, withLOption ? path::filename(path) : path));
|
2015-10-01 23:23:09 +08:00
|
|
|
return;
|
2018-02-02 08:27:49 +08:00
|
|
|
case file_magic::bitcode:
|
|
|
|
case file_magic::elf_relocatable:
|
2016-04-08 03:24:51 +08:00
|
|
|
if (inLib)
|
2021-12-23 09:41:50 +08:00
|
|
|
files.push_back(createLazyFile(mbref, "", 0));
|
2016-04-08 03:24:51 +08:00
|
|
|
else
|
2016-10-29 04:57:25 +08:00
|
|
|
files.push_back(createObjectFile(mbref));
|
2018-02-02 08:27:49 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error(path + ": unknown file type");
|
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))
|
2019-07-16 12:46:31 +08:00
|
|
|
addFile(*path, /*withLOption=*/true);
|
2016-04-25 02:23:21 +08:00
|
|
|
else
|
2020-10-19 19:19:52 +08:00
|
|
|
error("unable to find library -l" + name, ErrorTag::LibNotFound, {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.
|
2018-02-06 20:20:05 +08:00
|
|
|
static void initLLVM() {
|
2016-04-03 02:18:44 +08:00
|
|
|
InitializeAllTargets();
|
|
|
|
InitializeAllTargetMCs();
|
|
|
|
InitializeAllAsmPrinters();
|
|
|
|
InitializeAllAsmParsers();
|
|
|
|
}
|
|
|
|
|
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.
|
2018-11-16 02:09:41 +08:00
|
|
|
static void checkOptions() {
|
2016-01-08 01:33:25 +08:00
|
|
|
// 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)
|
2018-10-26 02:07:55 +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)
|
2018-10-26 02:07:55 +08:00
|
|
|
error("--fix-cortex-a53-843419 is only supported on AArch64 targets");
|
2017-12-05 23:59:05 +08:00
|
|
|
|
2019-09-16 17:38:38 +08:00
|
|
|
if (config->fixCortexA8 && config->emachine != EM_ARM)
|
|
|
|
error("--fix-cortex-a8 is only supported on ARM targets");
|
|
|
|
|
2018-09-20 08:26:44 +08:00
|
|
|
if (config->tocOptimize && config->emachine != EM_PPC64)
|
2020-12-10 04:14:00 +08:00
|
|
|
error("--toc-optimize is only supported on PowerPC64 targets");
|
2018-09-20 08:26:44 +08:00
|
|
|
|
2020-08-17 22:30:14 +08:00
|
|
|
if (config->pcRelOptimize && config->emachine != EM_PPC64)
|
2020-12-10 04:14:00 +08:00
|
|
|
error("--pcrel-optimize is only supported on PowerPC64 targets");
|
2020-08-17 22:30:14 +08:00
|
|
|
|
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");
|
|
|
|
|
2019-08-26 14:23:53 +08:00
|
|
|
if (config->strip == StripPolicy::All && config->emitRelocs)
|
|
|
|
error("--strip-all and --emit-relocs may not be used together");
|
|
|
|
|
2019-05-14 23:25:21 +08:00
|
|
|
if (config->zText && config->zIfuncNoplt)
|
|
|
|
error("-z text and -z ifunc-noplt may not be used together");
|
|
|
|
|
2016-04-03 02:52:23 +08:00
|
|
|
if (config->relocatable) {
|
|
|
|
if (config->shared)
|
|
|
|
error("-r and -shared may not be used together");
|
2018-07-19 06:02:48 +08:00
|
|
|
if (config->gdbIndex)
|
|
|
|
error("-r and --gdb-index may not be used together");
|
2018-07-19 06:49:31 +08:00
|
|
|
if (config->icf != ICFLevel::None)
|
2016-04-03 02:52:23 +08:00
|
|
|
error("-r and --icf may not be used together");
|
|
|
|
if (config->pie)
|
|
|
|
error("-r and -pie may not be used together");
|
2019-10-08 16:03:40 +08:00
|
|
|
if (config->exportDynamic)
|
|
|
|
error("-r and --export-dynamic may not be used together");
|
2016-04-03 02:52:23 +08:00
|
|
|
}
|
[AArch64] Support execute-only LOAD segments.
Summary:
This adds an LLD flag to mark executable LOAD segments execute-only for AArch64 targets.
In AArch64 the expectation is that code is execute-only compatible, so this just adds a linker option to enforce this.
Patch by: ivanlozano (Ivan Lozano)
Reviewers: srhines, echristo, peter.smith, eugenis, javed.absar, espindola, ruiu
Reviewed By: ruiu
Subscribers: dokyungs, emaste, arichardson, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D49456
llvm-svn: 338271
2018-07-31 01:02:46 +08:00
|
|
|
|
|
|
|
if (config->executeOnly) {
|
|
|
|
if (config->emachine != EM_AARCH64)
|
2021-10-26 03:52:06 +08:00
|
|
|
error("--execute-only is only supported on AArch64 targets");
|
[AArch64] Support execute-only LOAD segments.
Summary:
This adds an LLD flag to mark executable LOAD segments execute-only for AArch64 targets.
In AArch64 the expectation is that code is execute-only compatible, so this just adds a linker option to enforce this.
Patch by: ivanlozano (Ivan Lozano)
Reviewers: srhines, echristo, peter.smith, eugenis, javed.absar, espindola, ruiu
Reviewed By: ruiu
Subscribers: dokyungs, emaste, arichardson, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D49456
llvm-svn: 338271
2018-07-31 01:02:46 +08:00
|
|
|
|
|
|
|
if (config->singleRoRx && !script->hasSectionsCommand)
|
2021-10-26 03:52:06 +08:00
|
|
|
error("--execute-only and --no-rosegment cannot be used together");
|
[AArch64] Support execute-only LOAD segments.
Summary:
This adds an LLD flag to mark executable LOAD segments execute-only for AArch64 targets.
In AArch64 the expectation is that code is execute-only compatible, so this just adds a linker option to enforce this.
Patch by: ivanlozano (Ivan Lozano)
Reviewers: srhines, echristo, peter.smith, eugenis, javed.absar, espindola, ruiu
Reviewed By: ruiu
Subscribers: dokyungs, emaste, arichardson, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D49456
llvm-svn: 338271
2018-07-31 01:02:46 +08:00
|
|
|
}
|
2019-06-05 11:04:46 +08:00
|
|
|
|
2019-12-11 10:05:36 +08:00
|
|
|
if (config->zRetpolineplt && config->zForceIbt)
|
|
|
|
error("-z force-ibt may not be used with -z retpolineplt");
|
2019-06-07 21:00:17 +08:00
|
|
|
|
|
|
|
if (config->emachine != EM_AARCH64) {
|
2020-02-14 12:57:03 +08:00
|
|
|
if (config->zPacPlt)
|
2019-12-11 14:07:17 +08:00
|
|
|
error("-z pac-plt only supported on AArch64");
|
2020-02-14 12:57:03 +08:00
|
|
|
if (config->zForceBti)
|
2019-12-11 14:07:17 +08:00
|
|
|
error("-z force-bti only supported on AArch64");
|
2021-12-16 23:18:08 +08:00
|
|
|
if (config->zBtiReport != "none")
|
|
|
|
error("-z bti-report only supported on AArch64");
|
2019-06-07 21:00:17 +08:00
|
|
|
}
|
2021-12-16 23:18:08 +08:00
|
|
|
|
|
|
|
if (config->emachine != EM_386 && config->emachine != EM_X86_64 &&
|
|
|
|
config->zCetReport != "none")
|
|
|
|
error("-z cet-report only supported on X86 and X86_64");
|
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;
|
|
|
|
}
|
|
|
|
|
2018-04-21 05:24:08 +08:00
|
|
|
static bool getZFlag(opt::InputArgList &args, StringRef k1, StringRef k2,
|
|
|
|
bool Default) {
|
|
|
|
for (auto *arg : args.filtered_reverse(OPT_z)) {
|
|
|
|
if (k1 == arg->getValue())
|
|
|
|
return true;
|
|
|
|
if (k2 == arg->getValue())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Default;
|
|
|
|
}
|
|
|
|
|
2019-09-25 11:39:31 +08:00
|
|
|
static SeparateSegmentKind getZSeparate(opt::InputArgList &args) {
|
|
|
|
for (auto *arg : args.filtered_reverse(OPT_z)) {
|
|
|
|
StringRef v = arg->getValue();
|
|
|
|
if (v == "noseparate-code")
|
|
|
|
return SeparateSegmentKind::None;
|
|
|
|
if (v == "separate-code")
|
|
|
|
return SeparateSegmentKind::Code;
|
|
|
|
if (v == "separate-loadable-segments")
|
|
|
|
return SeparateSegmentKind::Loadable;
|
|
|
|
}
|
|
|
|
return SeparateSegmentKind::None;
|
|
|
|
}
|
|
|
|
|
2019-10-22 01:27:51 +08:00
|
|
|
static GnuStackKind getZGnuStack(opt::InputArgList &args) {
|
|
|
|
for (auto *arg : args.filtered_reverse(OPT_z)) {
|
|
|
|
if (StringRef("execstack") == arg->getValue())
|
|
|
|
return GnuStackKind::Exec;
|
|
|
|
if (StringRef("noexecstack") == arg->getValue())
|
|
|
|
return GnuStackKind::NoExec;
|
|
|
|
if (StringRef("nognustack") == arg->getValue())
|
|
|
|
return GnuStackKind::None;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GnuStackKind::NoExec;
|
|
|
|
}
|
|
|
|
|
2020-06-18 05:10:02 +08:00
|
|
|
static uint8_t getZStartStopVisibility(opt::InputArgList &args) {
|
|
|
|
for (auto *arg : args.filtered_reverse(OPT_z)) {
|
|
|
|
std::pair<StringRef, StringRef> kv = StringRef(arg->getValue()).split('=');
|
|
|
|
if (kv.first == "start-stop-visibility") {
|
|
|
|
if (kv.second == "default")
|
|
|
|
return STV_DEFAULT;
|
|
|
|
else if (kv.second == "internal")
|
|
|
|
return STV_INTERNAL;
|
|
|
|
else if (kv.second == "hidden")
|
|
|
|
return STV_HIDDEN;
|
|
|
|
else if (kv.second == "protected")
|
|
|
|
return STV_PROTECTED;
|
|
|
|
error("unknown -z start-stop-visibility= value: " + StringRef(kv.second));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return STV_PROTECTED;
|
|
|
|
}
|
|
|
|
|
2018-09-21 05:40:38 +08:00
|
|
|
static bool isKnownZFlag(StringRef s) {
|
2018-06-27 15:22:27 +08:00
|
|
|
return s == "combreloc" || s == "copyreloc" || s == "defs" ||
|
2019-12-11 10:05:36 +08:00
|
|
|
s == "execstack" || s == "force-bti" || s == "force-ibt" ||
|
|
|
|
s == "global" || s == "hazardplt" || s == "ifunc-noplt" ||
|
|
|
|
s == "initfirst" || s == "interpose" ||
|
|
|
|
s == "keep-text-section-prefix" || s == "lazy" || s == "muldefs" ||
|
|
|
|
s == "separate-code" || s == "separate-loadable-segments" ||
|
2021-02-26 07:46:37 +08:00
|
|
|
s == "start-stop-gc" || s == "nocombreloc" || s == "nocopyreloc" ||
|
|
|
|
s == "nodefaultlib" || s == "nodelete" || s == "nodlopen" ||
|
|
|
|
s == "noexecstack" || s == "nognustack" ||
|
|
|
|
s == "nokeep-text-section-prefix" || s == "norelro" ||
|
|
|
|
s == "noseparate-code" || s == "nostart-stop-gc" || s == "notext" ||
|
2020-05-30 05:22:03 +08:00
|
|
|
s == "now" || s == "origin" || s == "pac-plt" || s == "rel" ||
|
|
|
|
s == "rela" || s == "relro" || s == "retpolineplt" ||
|
|
|
|
s == "rodynamic" || s == "shstk" || s == "text" || s == "undefs" ||
|
|
|
|
s == "wxneeded" || s.startswith("common-page-size=") ||
|
2021-12-16 23:18:08 +08:00
|
|
|
s.startswith("bti-report=") || s.startswith("cet-report=") ||
|
2020-07-09 01:10:43 +08:00
|
|
|
s.startswith("dead-reloc-in-nonalloc=") ||
|
2020-06-18 05:10:02 +08:00
|
|
|
s.startswith("max-page-size=") || s.startswith("stack-size=") ||
|
|
|
|
s.startswith("start-stop-visibility=");
|
2018-06-27 15:22:27 +08:00
|
|
|
}
|
|
|
|
|
[ELF] Change -z unknown from error to warning
There is a trend of having more optional options (usually security
hardening related) like -z cet-report=, -z bti-report=, -z force-bti.
If ld.lld 14.0.0 uses a warning, in 15/16/17/... timeframe when people
add new options to software, they can worry less about linker errors on ld.lld 14.0.0.
In some cases `-z foo` does essential work where a silent ignore can be
problematic, but the user has received a warning. From my observation, the
doing-essential-work `-z foo` is much fewer than the converse. In addition,
the user who cares can use `--fatal-warnings` (Note: GNU ld doesn't upgrade warnings to errors).
It is unclear whether we need something like `clang -Wunknown-warning-option`.
If we ever run into unfortunate transition like `-z start-stop-gc`, the
affected software (e.g. ldc is a compiler which passes linker options to the underlying ld)
can blindly add the `-z` option, without worrying it may cause a linker error to LLD 14.0.0.
Reviewed By: jrtc27, peter.smith
Differential Revision: https://reviews.llvm.org/D114748
2021-12-01 03:06:28 +08:00
|
|
|
// Report a warning for an unknown -z option.
|
2018-06-27 15:22:27 +08:00
|
|
|
static void checkZOptions(opt::InputArgList &args) {
|
|
|
|
for (auto *arg : args.filtered(OPT_z))
|
2018-09-21 05:40:38 +08:00
|
|
|
if (!isKnownZFlag(arg->getValue()))
|
[ELF] Change -z unknown from error to warning
There is a trend of having more optional options (usually security
hardening related) like -z cet-report=, -z bti-report=, -z force-bti.
If ld.lld 14.0.0 uses a warning, in 15/16/17/... timeframe when people
add new options to software, they can worry less about linker errors on ld.lld 14.0.0.
In some cases `-z foo` does essential work where a silent ignore can be
problematic, but the user has received a warning. From my observation, the
doing-essential-work `-z foo` is much fewer than the converse. In addition,
the user who cares can use `--fatal-warnings` (Note: GNU ld doesn't upgrade warnings to errors).
It is unclear whether we need something like `clang -Wunknown-warning-option`.
If we ever run into unfortunate transition like `-z start-stop-gc`, the
affected software (e.g. ldc is a compiler which passes linker options to the underlying ld)
can blindly add the `-z` option, without worrying it may cause a linker error to LLD 14.0.0.
Reviewed By: jrtc27, peter.smith
Differential Revision: https://reviews.llvm.org/D114748
2021-12-01 03:06:28 +08:00
|
|
|
warn("unknown -z value: " + StringRef(arg->getValue()));
|
2018-06-27 15:22:27 +08:00
|
|
|
}
|
|
|
|
|
2020-12-18 14:39:01 +08:00
|
|
|
void LinkerDriver::linkerMain(ArrayRef<const char *> argsArr) {
|
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
|
|
|
|
[ELF] Change -z unknown from error to warning
There is a trend of having more optional options (usually security
hardening related) like -z cet-report=, -z bti-report=, -z force-bti.
If ld.lld 14.0.0 uses a warning, in 15/16/17/... timeframe when people
add new options to software, they can worry less about linker errors on ld.lld 14.0.0.
In some cases `-z foo` does essential work where a silent ignore can be
problematic, but the user has received a warning. From my observation, the
doing-essential-work `-z foo` is much fewer than the converse. In addition,
the user who cares can use `--fatal-warnings` (Note: GNU ld doesn't upgrade warnings to errors).
It is unclear whether we need something like `clang -Wunknown-warning-option`.
If we ever run into unfortunate transition like `-z start-stop-gc`, the
affected software (e.g. ldc is a compiler which passes linker options to the underlying ld)
can blindly add the `-z` option, without worrying it may cause a linker error to LLD 14.0.0.
Reviewed By: jrtc27, peter.smith
Differential Revision: https://reviews.llvm.org/D114748
2021-12-01 03:06:28 +08:00
|
|
|
// Interpret the flags early because error()/warn() depend on them.
|
2017-11-29 03:58:45 +08:00
|
|
|
errorHandler().errorLimit = args::getInteger(args, OPT_error_limit, 20);
|
[ELF] Change -z unknown from error to warning
There is a trend of having more optional options (usually security
hardening related) like -z cet-report=, -z bti-report=, -z force-bti.
If ld.lld 14.0.0 uses a warning, in 15/16/17/... timeframe when people
add new options to software, they can worry less about linker errors on ld.lld 14.0.0.
In some cases `-z foo` does essential work where a silent ignore can be
problematic, but the user has received a warning. From my observation, the
doing-essential-work `-z foo` is much fewer than the converse. In addition,
the user who cares can use `--fatal-warnings` (Note: GNU ld doesn't upgrade warnings to errors).
It is unclear whether we need something like `clang -Wunknown-warning-option`.
If we ever run into unfortunate transition like `-z start-stop-gc`, the
affected software (e.g. ldc is a compiler which passes linker options to the underlying ld)
can blindly add the `-z` option, without worrying it may cause a linker error to LLD 14.0.0.
Reviewed By: jrtc27, peter.smith
Differential Revision: https://reviews.llvm.org/D114748
2021-12-01 03:06:28 +08:00
|
|
|
errorHandler().fatalWarnings =
|
|
|
|
args.hasFlag(OPT_fatal_warnings, OPT_no_fatal_warnings, false);
|
2019-02-14 02:48:39 +08:00
|
|
|
checkZOptions(args);
|
2016-11-26 23:10:01 +08:00
|
|
|
|
|
|
|
// Handle -help
|
2016-02-28 11:18:09 +08:00
|
|
|
if (args.hasArg(OPT_help)) {
|
2018-02-07 06:37:05 +08:00
|
|
|
printHelp();
|
2016-02-28 11:18:09 +08:00
|
|
|
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
|
2021-10-26 03:52:06 +08:00
|
|
|
// scripts generated by GNU Libtool up to 2021-10 to recognize LLD as
|
|
|
|
// a GNU compatible linker. See
|
|
|
|
// <https://lists.gnu.org/archive/html/libtool/2017-01/msg00007.html>.
|
2017-03-23 02:04:57 +08:00
|
|
|
//
|
|
|
|
// 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)");
|
|
|
|
|
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) {
|
2018-12-19 07:50:37 +08:00
|
|
|
tar = std::move(*errOrWriter);
|
2017-01-06 10:33:53 +08:00
|
|
|
tar->append("response.txt", createResponseFile(args));
|
|
|
|
tar->append("version.txt", getLLDVersion() + "\n");
|
2020-07-29 00:41:27 +08:00
|
|
|
StringRef ltoSampleProfile = args.getLastArgValue(OPT_lto_sample_profile);
|
|
|
|
if (!ltoSampleProfile.empty())
|
|
|
|
readFile(ltoSampleProfile);
|
2017-01-06 10:33:53 +08:00
|
|
|
} else {
|
2018-12-19 07:33:10 +08:00
|
|
|
error("--reproduce: " + toString(errOrWriter.takeError()));
|
2017-01-06 10:33:53 +08:00
|
|
|
}
|
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);
|
2018-10-15 22:21:43 +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;
|
|
|
|
if (args.hasArg(OPT_version))
|
|
|
|
return;
|
|
|
|
|
2020-01-29 00:05:13 +08:00
|
|
|
// Initialize time trace profiler.
|
|
|
|
if (config->timeTraceEnabled)
|
|
|
|
timeTraceProfilerInitialize(config->timeTraceGranularity, config->progName);
|
2018-06-06 00:13:40 +08:00
|
|
|
|
2020-01-29 00:05:13 +08:00
|
|
|
{
|
|
|
|
llvm::TimeTraceScope timeScope("ExecuteLinker");
|
2015-11-13 02:54:15 +08:00
|
|
|
|
2020-01-29 00:05:13 +08:00
|
|
|
initLLVM();
|
|
|
|
createFiles(args);
|
|
|
|
if (errorCount())
|
|
|
|
return;
|
2019-05-09 09:45:53 +08:00
|
|
|
|
2020-01-29 00:05:13 +08:00
|
|
|
inferMachineType();
|
|
|
|
setConfigs(args);
|
|
|
|
checkOptions();
|
|
|
|
if (errorCount())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// The Target instance handles target-specific stuff, such as applying
|
|
|
|
// relocations or writing a PLT section. It also contains target-dependent
|
|
|
|
// values such as a default image base address.
|
|
|
|
target = getTarget();
|
|
|
|
|
|
|
|
switch (config->ekind) {
|
|
|
|
case ELF32LEKind:
|
|
|
|
link<ELF32LE>(args);
|
|
|
|
break;
|
|
|
|
case ELF32BEKind:
|
|
|
|
link<ELF32BE>(args);
|
|
|
|
break;
|
|
|
|
case ELF64LEKind:
|
|
|
|
link<ELF64LE>(args);
|
|
|
|
break;
|
|
|
|
case ELF64BEKind:
|
|
|
|
link<ELF64BE>(args);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
llvm_unreachable("unknown Config->EKind");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->timeTraceEnabled) {
|
2021-10-04 23:45:55 +08:00
|
|
|
checkError(timeTraceProfilerWrite(
|
|
|
|
args.getLastArgValue(OPT_time_trace_file_eq).str(),
|
|
|
|
config->outputFile));
|
2020-01-29 00:05:13 +08:00
|
|
|
timeTraceProfilerCleanup();
|
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.
|
2020-11-18 04:20:57 +08:00
|
|
|
static void setUnresolvedSymbolPolicy(opt::InputArgList &args) {
|
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;
|
2021-10-26 03:52:06 +08:00
|
|
|
// -shared implies --unresolved-symbols=ignore-all because missing
|
2020-11-18 04:20:57 +08:00
|
|
|
// symbols are likely to be resolved at runtime.
|
|
|
|
bool diagRegular = !config->shared, diagShlib = !config->shared;
|
2017-01-29 09:59:11 +08:00
|
|
|
|
2020-11-18 04:20:57 +08:00
|
|
|
for (const opt::Arg *arg : args) {
|
2017-01-29 09:59:11 +08:00
|
|
|
switch (arg->getOption().getID()) {
|
|
|
|
case OPT_unresolved_symbols: {
|
|
|
|
StringRef s = arg->getValue();
|
2020-11-18 04:20:57 +08:00
|
|
|
if (s == "ignore-all") {
|
|
|
|
diagRegular = false;
|
|
|
|
diagShlib = false;
|
|
|
|
} else if (s == "ignore-in-object-files") {
|
|
|
|
diagRegular = false;
|
|
|
|
diagShlib = true;
|
|
|
|
} else if (s == "ignore-in-shared-libs") {
|
|
|
|
diagRegular = true;
|
|
|
|
diagShlib = false;
|
|
|
|
} else if (s == "report-all") {
|
|
|
|
diagRegular = true;
|
|
|
|
diagShlib = true;
|
|
|
|
} else {
|
|
|
|
error("unknown --unresolved-symbols value: " + s);
|
|
|
|
}
|
|
|
|
break;
|
2017-01-29 09:59:11 +08:00
|
|
|
}
|
|
|
|
case OPT_no_undefined:
|
2020-11-18 04:20:57 +08:00
|
|
|
diagRegular = true;
|
|
|
|
break;
|
2017-01-29 09:59:11 +08:00
|
|
|
case OPT_z:
|
|
|
|
if (StringRef(arg->getValue()) == "defs")
|
2020-11-18 04:20:57 +08:00
|
|
|
diagRegular = true;
|
|
|
|
else if (StringRef(arg->getValue()) == "undefs")
|
|
|
|
diagRegular = false;
|
|
|
|
break;
|
|
|
|
case OPT_allow_shlib_undefined:
|
|
|
|
diagShlib = false;
|
|
|
|
break;
|
|
|
|
case OPT_no_allow_shlib_undefined:
|
|
|
|
diagShlib = true;
|
|
|
|
break;
|
2017-01-29 09:59:11 +08:00
|
|
|
}
|
2017-01-26 10:19:20 +08:00
|
|
|
}
|
|
|
|
|
2020-11-18 04:20:57 +08:00
|
|
|
config->unresolvedSymbols =
|
|
|
|
diagRegular ? errorOrWarn : UnresolvedPolicy::Ignore;
|
|
|
|
config->unresolvedSymbolsInShlib =
|
|
|
|
diagShlib ? errorOrWarn : UnresolvedPolicy::Ignore;
|
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) {
|
2018-08-02 06:31:31 +08:00
|
|
|
StringRef s = args.getLastArgValue(OPT_oformat, "elf");
|
|
|
|
if (s == "binary")
|
|
|
|
return true;
|
|
|
|
if (!s.startswith("elf"))
|
2016-08-25 17:05:47 +08:00
|
|
|
error("unknown --oformat value: " + s);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-25 10:23:28 +08:00
|
|
|
static DiscardPolicy getDiscard(opt::InputArgList &args) {
|
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);
|
2020-01-24 03:52:03 +08:00
|
|
|
if (!arg)
|
|
|
|
return "";
|
|
|
|
if (arg->getOption().getID() == OPT_no_dynamic_linker) {
|
|
|
|
// --no-dynamic-linker suppresses undefined weak symbols in .dynsym
|
|
|
|
config->noDynamicLinker = true;
|
2017-02-24 16:26:18 +08:00
|
|
|
return "";
|
2020-01-24 03:52:03 +08:00
|
|
|
}
|
2017-02-24 16:26:18 +08:00
|
|
|
return arg->getValue();
|
|
|
|
}
|
|
|
|
|
2018-07-19 06:49:31 +08:00
|
|
|
static ICFLevel getICF(opt::InputArgList &args) {
|
|
|
|
auto *arg = args.getLastArg(OPT_icf_none, OPT_icf_safe, OPT_icf_all);
|
|
|
|
if (!arg || arg->getOption().getID() == OPT_icf_none)
|
|
|
|
return ICFLevel::None;
|
|
|
|
if (arg->getOption().getID() == OPT_icf_safe)
|
|
|
|
return ICFLevel::Safe;
|
|
|
|
return ICFLevel::All;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
Let unaliased Args track which Alias they were created from, and use that in Arg::getAsString() for diagnostics
With this, `clang-cl /source-charset:utf-16 test.cc` now prints `invalid
value 'utf-16' in '/source-charset:utf-16'` instead of `invalid value
'utf-16' in '-finput-charset=utf-16'` before, and several other clang-cl
flags produce much less confusing output as well.
Fixes PR29106.
Since an arg and its alias can have different arg types (joined vs not)
and different values (because of AliasArgs<>), I chose to give the Alias
its own Arg object. For convenience, I just store the alias directly in
the unaliased arg – there aren't many arg objects at runtime, so that
seems ok.
Finally, I changed Arg::getAsString() to use the alias's representation
if it's present – that function was already documented as being the
suitable function for diagnostics, and most callers already used it for
diagnostics.
Implementation-wise, Arg::accept() previously used to parse things as
the unaliased option. The core of that switch is now extracted into a
new function acceptInternal() which parses as the _aliased_ option, and
the previously-intermingled unaliasing is now done as an explicit step
afterwards.
(This also changes one place in lld that didn't use getAsString() for
diagnostics, so that that one place now also prints the flag as the user
wrote it, not as it looks after it went through unaliasing.)
Differential Revision: https://reviews.llvm.org/D64253
llvm-svn: 365413
2019-07-09 08:34:08 +08:00
|
|
|
static uint64_t parseSectionAddress(StringRef s, opt::InputArgList &args,
|
|
|
|
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))
|
Let unaliased Args track which Alias they were created from, and use that in Arg::getAsString() for diagnostics
With this, `clang-cl /source-charset:utf-16 test.cc` now prints `invalid
value 'utf-16' in '/source-charset:utf-16'` instead of `invalid value
'utf-16' in '-finput-charset=utf-16'` before, and several other clang-cl
flags produce much less confusing output as well.
Fixes PR29106.
Since an arg and its alias can have different arg types (joined vs not)
and different values (because of AliasArgs<>), I chose to give the Alias
its own Arg object. For convenience, I just store the alias directly in
the unaliased arg – there aren't many arg objects at runtime, so that
seems ok.
Finally, I changed Arg::getAsString() to use the alias's representation
if it's present – that function was already documented as being the
suitable function for diagnostics, and most callers already used it for
diagnostics.
Implementation-wise, Arg::accept() previously used to parse things as
the unaliased option. The core of that switch is now extracted into a
new function acceptInternal() which parses as the _aliased_ option, and
the previously-intermingled unaliasing is now done as an explicit step
afterwards.
(This also changes one place in lld that didn't use getAsString() for
diagnostics, so that that one place now also prints the flag as the user
wrote it, not as it looks after it went through unaliasing.)
Differential Revision: https://reviews.llvm.org/D64253
llvm-svn: 365413
2019-07-09 08:34:08 +08:00
|
|
|
error("invalid argument: " + arg.getAsString(args));
|
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('=');
|
Let unaliased Args track which Alias they were created from, and use that in Arg::getAsString() for diagnostics
With this, `clang-cl /source-charset:utf-16 test.cc` now prints `invalid
value 'utf-16' in '/source-charset:utf-16'` instead of `invalid value
'utf-16' in '-finput-charset=utf-16'` before, and several other clang-cl
flags produce much less confusing output as well.
Fixes PR29106.
Since an arg and its alias can have different arg types (joined vs not)
and different values (because of AliasArgs<>), I chose to give the Alias
its own Arg object. For convenience, I just store the alias directly in
the unaliased arg – there aren't many arg objects at runtime, so that
seems ok.
Finally, I changed Arg::getAsString() to use the alias's representation
if it's present – that function was already documented as being the
suitable function for diagnostics, and most callers already used it for
diagnostics.
Implementation-wise, Arg::accept() previously used to parse things as
the unaliased option. The core of that switch is now extracted into a
new function acceptInternal() which parses as the _aliased_ option, and
the previously-intermingled unaliasing is now done as an explicit step
afterwards.
(This also changes one place in lld that didn't use getAsString() for
diagnostics, so that that one place now also prints the flag as the user
wrote it, not as it looks after it went through unaliasing.)
Differential Revision: https://reviews.llvm.org/D64253
llvm-svn: 365413
2019-07-09 08:34:08 +08:00
|
|
|
ret[name] = parseSectionAddress(addr, args, *arg);
|
2016-09-14 21:07:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (auto *arg = args.getLastArg(OPT_Ttext))
|
Let unaliased Args track which Alias they were created from, and use that in Arg::getAsString() for diagnostics
With this, `clang-cl /source-charset:utf-16 test.cc` now prints `invalid
value 'utf-16' in '/source-charset:utf-16'` instead of `invalid value
'utf-16' in '-finput-charset=utf-16'` before, and several other clang-cl
flags produce much less confusing output as well.
Fixes PR29106.
Since an arg and its alias can have different arg types (joined vs not)
and different values (because of AliasArgs<>), I chose to give the Alias
its own Arg object. For convenience, I just store the alias directly in
the unaliased arg – there aren't many arg objects at runtime, so that
seems ok.
Finally, I changed Arg::getAsString() to use the alias's representation
if it's present – that function was already documented as being the
suitable function for diagnostics, and most callers already used it for
diagnostics.
Implementation-wise, Arg::accept() previously used to parse things as
the unaliased option. The core of that switch is now extracted into a
new function acceptInternal() which parses as the _aliased_ option, and
the previously-intermingled unaliasing is now done as an explicit step
afterwards.
(This also changes one place in lld that didn't use getAsString() for
diagnostics, so that that one place now also prints the flag as the user
wrote it, not as it looks after it went through unaliasing.)
Differential Revision: https://reviews.llvm.org/D64253
llvm-svn: 365413
2019-07-09 08:34:08 +08:00
|
|
|
ret[".text"] = parseSectionAddress(arg->getValue(), args, *arg);
|
2016-09-14 21:07:13 +08:00
|
|
|
if (auto *arg = args.getLastArg(OPT_Tdata))
|
Let unaliased Args track which Alias they were created from, and use that in Arg::getAsString() for diagnostics
With this, `clang-cl /source-charset:utf-16 test.cc` now prints `invalid
value 'utf-16' in '/source-charset:utf-16'` instead of `invalid value
'utf-16' in '-finput-charset=utf-16'` before, and several other clang-cl
flags produce much less confusing output as well.
Fixes PR29106.
Since an arg and its alias can have different arg types (joined vs not)
and different values (because of AliasArgs<>), I chose to give the Alias
its own Arg object. For convenience, I just store the alias directly in
the unaliased arg – there aren't many arg objects at runtime, so that
seems ok.
Finally, I changed Arg::getAsString() to use the alias's representation
if it's present – that function was already documented as being the
suitable function for diagnostics, and most callers already used it for
diagnostics.
Implementation-wise, Arg::accept() previously used to parse things as
the unaliased option. The core of that switch is now extracted into a
new function acceptInternal() which parses as the _aliased_ option, and
the previously-intermingled unaliasing is now done as an explicit step
afterwards.
(This also changes one place in lld that didn't use getAsString() for
diagnostics, so that that one place now also prints the flag as the user
wrote it, not as it looks after it went through unaliasing.)
Differential Revision: https://reviews.llvm.org/D64253
llvm-svn: 365413
2019-07-09 08:34:08 +08:00
|
|
|
ret[".data"] = parseSectionAddress(arg->getValue(), args, *arg);
|
2016-09-14 21:07:13 +08:00
|
|
|
if (auto *arg = args.getLastArg(OPT_Tbss))
|
Let unaliased Args track which Alias they were created from, and use that in Arg::getAsString() for diagnostics
With this, `clang-cl /source-charset:utf-16 test.cc` now prints `invalid
value 'utf-16' in '/source-charset:utf-16'` instead of `invalid value
'utf-16' in '-finput-charset=utf-16'` before, and several other clang-cl
flags produce much less confusing output as well.
Fixes PR29106.
Since an arg and its alias can have different arg types (joined vs not)
and different values (because of AliasArgs<>), I chose to give the Alias
its own Arg object. For convenience, I just store the alias directly in
the unaliased arg – there aren't many arg objects at runtime, so that
seems ok.
Finally, I changed Arg::getAsString() to use the alias's representation
if it's present – that function was already documented as being the
suitable function for diagnostics, and most callers already used it for
diagnostics.
Implementation-wise, Arg::accept() previously used to parse things as
the unaliased option. The core of that switch is now extracted into a
new function acceptInternal() which parses as the _aliased_ option, and
the previously-intermingled unaliasing is now done as an explicit step
afterwards.
(This also changes one place in lld that didn't use getAsString() for
diagnostics, so that that one place now also prints the flag as the user
wrote it, not as it looks after it went through unaliasing.)
Differential Revision: https://reviews.llvm.org/D64253
llvm-svn: 365413
2019-07-09 08:34:08 +08:00
|
|
|
ret[".bss"] = parseSectionAddress(arg->getValue(), args, *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
|
2021-10-26 03:52:06 +08:00
|
|
|
// --build-id=sha1 are actually tree hashes for performance reasons.
|
2017-04-27 05:23:11 +08:00
|
|
|
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();
|
2018-02-08 03:22:42 +08:00
|
|
|
if (s == "fast")
|
|
|
|
return {BuildIdKind::Fast, {}};
|
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, {}};
|
|
|
|
}
|
|
|
|
|
2018-07-10 04:22:28 +08:00
|
|
|
static std::pair<bool, bool> getPackDynRelocs(opt::InputArgList &args) {
|
|
|
|
StringRef s = args.getLastArgValue(OPT_pack_dyn_relocs, "none");
|
|
|
|
if (s == "android")
|
|
|
|
return {true, false};
|
|
|
|
if (s == "relr")
|
|
|
|
return {false, true};
|
|
|
|
if (s == "android+relr")
|
|
|
|
return {true, true};
|
|
|
|
|
|
|
|
if (s != "none")
|
2021-10-16 06:36:30 +08:00
|
|
|
error("unknown --pack-dyn-relocs format: " + s);
|
2018-07-10 04:22:28 +08:00
|
|
|
return {false, false};
|
|
|
|
}
|
|
|
|
|
2018-04-18 07:30:05 +08:00
|
|
|
static void readCallGraph(MemoryBufferRef mb) {
|
|
|
|
// Build a map from symbol name to section
|
2018-10-26 23:07:02 +08:00
|
|
|
DenseMap<StringRef, Symbol *> map;
|
2021-12-15 16:37:10 +08:00
|
|
|
for (ELFFileBase *file : objectFiles)
|
2018-04-18 07:30:05 +08:00
|
|
|
for (Symbol *sym : file->getSymbols())
|
2018-10-26 23:07:02 +08:00
|
|
|
map[sym->getName()] = sym;
|
[Coding style change] Rename variables so that they start with a lowercase letter
This patch is mechanically generated by clang-llvm-rename tool that I wrote
using Clang Refactoring Engine just for creating this patch. You can see the
source code of the tool at https://reviews.llvm.org/D64123. There's no manual
post-processing; you can generate the same patch by re-running the tool against
lld's code base.
Here is the main discussion thread to change the LLVM coding style:
https://lists.llvm.org/pipermail/llvm-dev/2019-February/130083.html
In the discussion thread, I proposed we use lld as a testbed for variable
naming scheme change, and this patch does that.
I chose to rename variables so that they are in camelCase, just because that
is a minimal change to make variables to start with a lowercase letter.
Note to downstream patch maintainers: if you are maintaining a downstream lld
repo, just rebasing ahead of this commit would cause massive merge conflicts
because this patch essentially changes every line in the lld subdirectory. But
there's a remedy.
clang-llvm-rename tool is a batch tool, so you can rename variables in your
downstream repo with the tool. Given that, here is how to rebase your repo to
a commit after the mass renaming:
1. rebase to the commit just before the mass variable renaming,
2. apply the tool to your downstream repo to mass-rename variables locally, and
3. rebase again to the head.
Most changes made by the tool should be identical for a downstream repo and
for the head, so at the step 3, almost all changes should be merged and
disappear. I'd expect that there would be some lines that you need to merge by
hand, but that shouldn't be too many.
Differential Revision: https://reviews.llvm.org/D64121
llvm-svn: 365595
2019-07-10 13:00:37 +08:00
|
|
|
|
2018-10-26 23:07:02 +08:00
|
|
|
auto findSection = [&](StringRef name) -> InputSectionBase * {
|
|
|
|
Symbol *sym = map.lookup(name);
|
|
|
|
if (!sym) {
|
|
|
|
if (config->warnSymbolOrdering)
|
|
|
|
warn(mb.getBufferIdentifier() + ": no such symbol: " + name);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-10-26 23:07:12 +08:00
|
|
|
maybeWarnUnorderableSymbol(sym);
|
2018-08-04 15:31:19 +08:00
|
|
|
|
2018-10-26 23:07:02 +08:00
|
|
|
if (Defined *dr = dyn_cast_or_null<Defined>(sym))
|
2018-08-04 15:31:19 +08:00
|
|
|
return dyn_cast_or_null<InputSectionBase>(dr->section);
|
|
|
|
return nullptr;
|
|
|
|
};
|
|
|
|
|
2018-10-26 23:07:02 +08:00
|
|
|
for (StringRef line : args::getLines(mb)) {
|
2018-04-18 07:30:05 +08:00
|
|
|
SmallVector<StringRef, 3> fields;
|
2018-10-26 23:07:02 +08:00
|
|
|
line.split(fields, ' ');
|
2018-04-18 07:30:05 +08:00
|
|
|
uint64_t count;
|
2018-08-04 15:31:19 +08:00
|
|
|
|
2018-10-26 23:07:02 +08:00
|
|
|
if (fields.size() != 3 || !to_integer(fields[2], count)) {
|
|
|
|
error(mb.getBufferIdentifier() + ": parse error");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (InputSectionBase *from = findSection(fields[0]))
|
|
|
|
if (InputSectionBase *to = findSection(fields[1]))
|
|
|
|
config->callGraphProfile[std::make_pair(from, to)] += count;
|
2018-04-18 07:30:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 03:11:53 +08:00
|
|
|
// If SHT_LLVM_CALL_GRAPH_PROFILE and its relocation section exist, returns
|
|
|
|
// true and populates cgProfile and symbolIndices.
|
|
|
|
template <class ELFT>
|
|
|
|
static bool
|
|
|
|
processCallGraphRelocations(SmallVector<uint32_t, 32> &symbolIndices,
|
|
|
|
ArrayRef<typename ELFT::CGProfile> &cgProfile,
|
|
|
|
ObjFile<ELFT> *inputObj) {
|
|
|
|
symbolIndices.clear();
|
|
|
|
const ELFFile<ELFT> &obj = inputObj->getObj();
|
|
|
|
ArrayRef<Elf_Shdr_Impl<ELFT>> objSections =
|
|
|
|
CHECK(obj.sections(), "could not retrieve object sections");
|
|
|
|
|
|
|
|
if (inputObj->cgProfileSectionIndex == SHN_UNDEF)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
cgProfile =
|
|
|
|
check(obj.template getSectionContentsAsArray<typename ELFT::CGProfile>(
|
|
|
|
objSections[inputObj->cgProfileSectionIndex]));
|
|
|
|
|
|
|
|
for (size_t i = 0, e = objSections.size(); i < e; ++i) {
|
|
|
|
const Elf_Shdr_Impl<ELFT> &sec = objSections[i];
|
|
|
|
if (sec.sh_info == inputObj->cgProfileSectionIndex) {
|
|
|
|
if (sec.sh_type == SHT_RELA) {
|
|
|
|
ArrayRef<typename ELFT::Rela> relas =
|
|
|
|
CHECK(obj.relas(sec), "could not retrieve cg profile rela section");
|
|
|
|
for (const typename ELFT::Rela &rel : relas)
|
|
|
|
symbolIndices.push_back(rel.getSymbol(config->isMips64EL));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (sec.sh_type == SHT_REL) {
|
|
|
|
ArrayRef<typename ELFT::Rel> rels =
|
|
|
|
CHECK(obj.rels(sec), "could not retrieve cg profile rel section");
|
|
|
|
for (const typename ELFT::Rel &rel : rels)
|
|
|
|
symbolIndices.push_back(rel.getSymbol(config->isMips64EL));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (symbolIndices.empty())
|
|
|
|
warn("SHT_LLVM_CALL_GRAPH_PROFILE exists, but relocation section doesn't");
|
|
|
|
return !symbolIndices.empty();
|
|
|
|
}
|
2021-06-24 23:02:45 +08:00
|
|
|
|
2021-07-14 03:11:53 +08:00
|
|
|
template <class ELFT> static void readCallGraphsFromObjectFiles() {
|
|
|
|
SmallVector<uint32_t, 32> symbolIndices;
|
|
|
|
ArrayRef<typename ELFT::CGProfile> cgProfile;
|
2018-10-02 08:17:15 +08:00
|
|
|
for (auto file : objectFiles) {
|
|
|
|
auto *obj = cast<ObjFile<ELFT>>(file);
|
2021-07-14 03:11:53 +08:00
|
|
|
if (!processCallGraphRelocations(symbolIndices, cgProfile, obj))
|
2021-06-24 23:02:45 +08:00
|
|
|
continue;
|
2021-07-14 03:11:53 +08:00
|
|
|
|
|
|
|
if (symbolIndices.size() != cgProfile.size() * 2)
|
2021-06-24 23:02:45 +08:00
|
|
|
fatal("number of relocations doesn't match Weights");
|
2021-07-14 03:11:53 +08:00
|
|
|
|
|
|
|
for (uint32_t i = 0, size = cgProfile.size(); i < size; ++i) {
|
|
|
|
const Elf_CGProfile_Impl<ELFT> &cgpe = cgProfile[i];
|
|
|
|
uint32_t fromIndex = symbolIndices[i * 2];
|
|
|
|
uint32_t toIndex = symbolIndices[i * 2 + 1];
|
2021-06-24 23:02:45 +08:00
|
|
|
auto *fromSym = dyn_cast<Defined>(&obj->getSymbol(fromIndex));
|
|
|
|
auto *toSym = dyn_cast<Defined>(&obj->getSymbol(toIndex));
|
2018-10-23 07:43:53 +08:00
|
|
|
if (!fromSym || !toSym)
|
2018-10-02 08:17:15 +08:00
|
|
|
continue;
|
2018-10-26 23:07:02 +08:00
|
|
|
|
|
|
|
auto *from = dyn_cast_or_null<InputSectionBase>(fromSym->section);
|
|
|
|
auto *to = dyn_cast_or_null<InputSectionBase>(toSym->section);
|
|
|
|
if (from && to)
|
|
|
|
config->callGraphProfile[{from, to}] += cgpe.cgp_weight;
|
2018-10-02 08:17:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
[ELF] accept thinlto options without --plugin-opt= prefix
Summary:
When support for ThinLTO was first added to lld, the options that
control it were prefixed with --plugin-opt= for compatibility with
an existing implementation as a linker plugin. This change enables
shorter versions of the options to be used, as follows:
New Existing
-thinlto-emit-imports-files --plugin-opt=thinlto-emit-imports-files
-thinlto-index-only --plugin-opt=thinlto-index-only
-thinlto-index-only= --plugin-opt=thinlto-index-only=
-thinlto-object-suffix-replace= --plugin-opt=thinlto-object-suffix-replace=
-thinlto-prefix-replace= --plugin-opt=thinlto-prefix-replace=
-lto-obj-path= --plugin-opt=obj-path=
The options with the --plugin-opt= prefix have been retained as aliases
for the shorter variants so that they continue to be accepted.
Reviewers: tejohnson, ruiu, espindola
Reviewed By: ruiu
Subscribers: emaste, arichardson, MaskRay, steven_wu, dexonsmith, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67782
llvm-svn: 372798
2019-09-25 09:19:48 +08:00
|
|
|
static StringRef getAliasSpelling(opt::Arg *arg) {
|
|
|
|
if (const opt::Arg *alias = arg->getAlias())
|
|
|
|
return alias->getSpelling();
|
|
|
|
return arg->getSpelling();
|
|
|
|
}
|
|
|
|
|
2018-05-22 10:53:11 +08:00
|
|
|
static std::pair<StringRef, StringRef> getOldNewOptions(opt::InputArgList &args,
|
|
|
|
unsigned id) {
|
|
|
|
auto *arg = args.getLastArg(id);
|
|
|
|
if (!arg)
|
|
|
|
return {"", ""};
|
|
|
|
|
|
|
|
StringRef s = arg->getValue();
|
|
|
|
std::pair<StringRef, StringRef> ret = s.split(';');
|
|
|
|
if (ret.second.empty())
|
[ELF] accept thinlto options without --plugin-opt= prefix
Summary:
When support for ThinLTO was first added to lld, the options that
control it were prefixed with --plugin-opt= for compatibility with
an existing implementation as a linker plugin. This change enables
shorter versions of the options to be used, as follows:
New Existing
-thinlto-emit-imports-files --plugin-opt=thinlto-emit-imports-files
-thinlto-index-only --plugin-opt=thinlto-index-only
-thinlto-index-only= --plugin-opt=thinlto-index-only=
-thinlto-object-suffix-replace= --plugin-opt=thinlto-object-suffix-replace=
-thinlto-prefix-replace= --plugin-opt=thinlto-prefix-replace=
-lto-obj-path= --plugin-opt=obj-path=
The options with the --plugin-opt= prefix have been retained as aliases
for the shorter variants so that they continue to be accepted.
Reviewers: tejohnson, ruiu, espindola
Reviewed By: ruiu
Subscribers: emaste, arichardson, MaskRay, steven_wu, dexonsmith, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67782
llvm-svn: 372798
2019-09-25 09:19:48 +08:00
|
|
|
error(getAliasSpelling(arg) + " expects 'old;new' format, but got " + s);
|
2018-05-22 10:53:11 +08:00
|
|
|
return ret;
|
2017-08-14 18:17:30 +08:00
|
|
|
}
|
|
|
|
|
2018-02-14 21:36:22 +08:00
|
|
|
// Parse the symbol ordering file and warn for any duplicate entries.
|
|
|
|
static std::vector<StringRef> getSymbolOrderingFile(MemoryBufferRef mb) {
|
|
|
|
SetVector<StringRef> names;
|
|
|
|
for (StringRef s : args::getLines(mb))
|
|
|
|
if (!names.insert(s) && config->warnSymbolOrdering)
|
|
|
|
warn(mb.getBufferIdentifier() + ": duplicate ordered symbol: " + s);
|
|
|
|
|
|
|
|
return names.takeVector();
|
|
|
|
}
|
|
|
|
|
2020-05-30 05:22:03 +08:00
|
|
|
static bool getIsRela(opt::InputArgList &args) {
|
|
|
|
// If -z rel or -z rela is specified, use the last option.
|
|
|
|
for (auto *arg : args.filtered_reverse(OPT_z)) {
|
|
|
|
StringRef s(arg->getValue());
|
|
|
|
if (s == "rel")
|
|
|
|
return false;
|
|
|
|
if (s == "rela")
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise use the psABI defined relocation entry format.
|
|
|
|
uint16_t m = config->emachine;
|
|
|
|
return m == EM_AARCH64 || m == EM_AMDGPU || m == EM_HEXAGON || m == EM_PPC ||
|
|
|
|
m == EM_PPC64 || m == EM_RISCV || m == EM_X86_64;
|
|
|
|
}
|
|
|
|
|
2018-03-31 01:22:44 +08:00
|
|
|
static void parseClangOption(StringRef opt, const Twine &msg) {
|
|
|
|
std::string err;
|
|
|
|
raw_string_ostream os(err);
|
|
|
|
|
|
|
|
const char *argv[] = {config->progName.data(), opt.data()};
|
|
|
|
if (cl::ParseCommandLineOptions(2, argv, "", &os))
|
|
|
|
return;
|
|
|
|
os.flush();
|
|
|
|
error(msg + ": " + StringRef(err).trim());
|
|
|
|
}
|
|
|
|
|
2021-12-16 23:18:08 +08:00
|
|
|
// Checks the parameter of the bti-report and cet-report options.
|
|
|
|
static bool isValidReportString(StringRef arg) {
|
|
|
|
return arg == "none" || arg == "warning" || arg == "error";
|
|
|
|
}
|
|
|
|
|
2016-01-08 01:54:19 +08:00
|
|
|
// Initializes Config members by the command line options.
|
2019-05-09 00:20:05 +08:00
|
|
|
static void readConfigs(opt::InputArgList &args) {
|
2018-02-09 09:43:59 +08:00
|
|
|
errorHandler().verbose = args.hasArg(OPT_verbose);
|
2019-07-17 22:54:02 +08:00
|
|
|
errorHandler().vsDiagnostics =
|
|
|
|
args.hasArg(OPT_visual_studio_diagnostics_format, false);
|
2018-02-09 07:52:09 +08:00
|
|
|
|
2017-08-12 04:49:48 +08:00
|
|
|
config->allowMultipleDefinition =
|
2018-02-06 08:45:15 +08:00
|
|
|
args.hasFlag(OPT_allow_multiple_definition,
|
|
|
|
OPT_no_allow_multiple_definition, false) ||
|
|
|
|
hasZOption(args, "muldefs");
|
2017-11-29 03:58:45 +08:00
|
|
|
config->auxiliaryList = args::getStrings(args, OPT_auxiliary);
|
2021-07-30 05:46:53 +08:00
|
|
|
if (opt::Arg *arg =
|
|
|
|
args.getLastArg(OPT_Bno_symbolic, OPT_Bsymbolic_non_weak_functions,
|
|
|
|
OPT_Bsymbolic_functions, OPT_Bsymbolic)) {
|
|
|
|
if (arg->getOption().matches(OPT_Bsymbolic_non_weak_functions))
|
|
|
|
config->bsymbolic = BsymbolicKind::NonWeakFunctions;
|
|
|
|
else if (arg->getOption().matches(OPT_Bsymbolic_functions))
|
|
|
|
config->bsymbolic = BsymbolicKind::Functions;
|
2021-05-15 00:40:32 +08:00
|
|
|
else if (arg->getOption().matches(OPT_Bsymbolic))
|
2021-07-30 05:46:53 +08:00
|
|
|
config->bsymbolic = BsymbolicKind::All;
|
2021-05-15 00:40:32 +08:00
|
|
|
}
|
2018-02-03 06:24:06 +08:00
|
|
|
config->checkSections =
|
|
|
|
args.hasFlag(OPT_check_sections, OPT_no_check_sections, true);
|
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);
|
2021-06-21 05:28:56 +08:00
|
|
|
config->cref = args.hasArg(OPT_cref);
|
2017-10-25 04:59:55 +08:00
|
|
|
config->defineCommon = args.hasFlag(OPT_define_common, OPT_no_define_common,
|
|
|
|
!args.hasArg(OPT_relocatable));
|
2020-04-07 21:48:18 +08:00
|
|
|
config->optimizeBBJumps =
|
|
|
|
args.hasFlag(OPT_optimize_bb_jumps, OPT_no_optimize_bb_jumps, false);
|
2017-10-25 04:59:55 +08:00
|
|
|
config->demangle = args.hasFlag(OPT_demangle, OPT_no_demangle, true);
|
2020-06-24 11:00:04 +08:00
|
|
|
config->dependencyFile = args.getLastArgValue(OPT_dependency_file);
|
[ELF] Implement Dependent Libraries Feature
This patch implements a limited form of autolinking primarily designed to allow
either the --dependent-library compiler option, or "comment lib" pragmas (
https://docs.microsoft.com/en-us/cpp/preprocessor/comment-c-cpp?view=vs-2017) in
C/C++ e.g. #pragma comment(lib, "foo"), to cause an ELF linker to automatically
add the specified library to the link when processing the input file generated
by the compiler.
Currently this extension is unique to LLVM and LLD. However, care has been taken
to design this feature so that it could be supported by other ELF linkers.
The design goals were to provide:
- A simple linking model for developers to reason about.
- The ability to to override autolinking from the linker command line.
- Source code compatibility, where possible, with "comment lib" pragmas in other
environments (MSVC in particular).
Dependent library support is implemented differently for ELF platforms than on
the other platforms. Primarily this difference is that on ELF we pass the
dependent library specifiers directly to the linker without manipulating them.
This is in contrast to other platforms where they are mapped to a specific
linker option by the compiler. This difference is a result of the greater
variety of ELF linkers and the fact that ELF linkers tend to handle libraries in
a more complicated fashion than on other platforms. This forces us to defer
handling the specifiers to the linker.
In order to achieve a level of source code compatibility with other platforms
we have restricted this feature to work with libraries that meet the following
"reasonable" requirements:
1. There are no competing defined symbols in a given set of libraries, or
if they exist, the program owner doesn't care which is linked to their
program.
2. There may be circular dependencies between libraries.
The binary representation is a mergeable string section (SHF_MERGE,
SHF_STRINGS), called .deplibs, with custom type SHT_LLVM_DEPENDENT_LIBRARIES
(0x6fff4c04). The compiler forms this section by concatenating the arguments of
the "comment lib" pragmas and --dependent-library options in the order they are
encountered. Partial (-r, -Ur) links are handled by concatenating .deplibs
sections with the normal mergeable string section rules. As an example, #pragma
comment(lib, "foo") would result in:
.section ".deplibs","MS",@llvm_dependent_libraries,1
.asciz "foo"
For LTO, equivalent information to the contents of a the .deplibs section can be
retrieved by the LLD for bitcode input files.
LLD processes the dependent library specifiers in the following way:
1. Dependent libraries which are found from the specifiers in .deplibs sections
of relocatable object files are added when the linker decides to include that
file (which could itself be in a library) in the link. Dependent libraries
behave as if they were appended to the command line after all other options. As
a consequence the set of dependent libraries are searched last to resolve
symbols.
2. It is an error if a file cannot be found for a given specifier.
3. Any command line options in effect at the end of the command line parsing apply
to the dependent libraries, e.g. --whole-archive.
4. The linker tries to add a library or relocatable object file from each of the
strings in a .deplibs section by; first, handling the string as if it was
specified on the command line; second, by looking for the string in each of the
library search paths in turn; third, by looking for a lib<string>.a or
lib<string>.so (depending on the current mode of the linker) in each of the
library search paths.
5. A new command line option --no-dependent-libraries tells LLD to ignore the
dependent libraries.
Rationale for the above points:
1. Adding the dependent libraries last makes the process simple to understand
from a developers perspective. All linkers are able to implement this scheme.
2. Error-ing for libraries that are not found seems like better behavior than
failing the link during symbol resolution.
3. It seems useful for the user to be able to apply command line options which
will affect all of the dependent libraries. There is a potential problem of
surprise for developers, who might not realize that these options would apply
to these "invisible" input files; however, despite the potential for surprise,
this is easy for developers to reason about and gives developers the control
that they may require.
4. This algorithm takes into account all of the different ways that ELF linkers
find input files. The different search methods are tried by the linker in most
obvious to least obvious order.
5. I considered adding finer grained control over which dependent libraries were
ignored (e.g. MSVC has /nodefaultlib:<library>); however, I concluded that this
is not necessary: if finer control is required developers can fall back to using
the command line directly.
RFC thread: http://lists.llvm.org/pipermail/llvm-dev/2019-March/131004.html.
Differential Revision: https://reviews.llvm.org/D60274
llvm-svn: 360984
2019-05-17 11:44:15 +08:00
|
|
|
config->dependentLibraries = args.hasFlag(OPT_dependent_libraries, OPT_no_dependent_libraries, 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);
|
2018-07-17 01:55:48 +08:00
|
|
|
config->dwoDir = args.getLastArgValue(OPT_plugin_opt_dwo_dir_eq);
|
2017-02-25 10:23:28 +08:00
|
|
|
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);
|
2018-12-15 05:58:49 +08:00
|
|
|
config->emitLLVM = args.hasArg(OPT_plugin_opt_emit_llvm, false);
|
2017-02-25 09:51:25 +08:00
|
|
|
config->emitRelocs = args.hasArg(OPT_emit_relocs);
|
2018-10-26 07:15:23 +08:00
|
|
|
config->callGraphProfileSort = args.hasFlag(
|
|
|
|
OPT_call_graph_profile_sort, OPT_no_call_graph_profile_sort, true);
|
2018-03-02 06:23:51 +08:00
|
|
|
config->enableNewDtags =
|
|
|
|
args.hasFlag(OPT_enable_new_dtags, OPT_disable_new_dtags, true);
|
2017-06-14 16:01:26 +08:00
|
|
|
config->entry = args.getLastArgValue(OPT_entry);
|
2020-10-19 19:19:52 +08:00
|
|
|
|
|
|
|
errorHandler().errorHandlingScript =
|
|
|
|
args.getLastArgValue(OPT_error_handling_script);
|
|
|
|
|
[AArch64] Support execute-only LOAD segments.
Summary:
This adds an LLD flag to mark executable LOAD segments execute-only for AArch64 targets.
In AArch64 the expectation is that code is execute-only compatible, so this just adds a linker option to enforce this.
Patch by: ivanlozano (Ivan Lozano)
Reviewers: srhines, echristo, peter.smith, eugenis, javed.absar, espindola, ruiu
Reviewed By: ruiu
Subscribers: dokyungs, emaste, arichardson, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D49456
llvm-svn: 338271
2018-07-31 01:02:46 +08:00
|
|
|
config->executeOnly =
|
|
|
|
args.hasFlag(OPT_execute_only, OPT_no_execute_only, false);
|
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);
|
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");
|
2020-01-18 06:33:36 +08:00
|
|
|
config->fixCortexA53Errata843419 = args.hasArg(OPT_fix_cortex_a53_843419) &&
|
|
|
|
!args.hasArg(OPT_relocatable);
|
2020-01-21 22:05:01 +08:00
|
|
|
config->fixCortexA8 =
|
|
|
|
args.hasArg(OPT_fix_cortex_a8) && !args.hasArg(OPT_relocatable);
|
2020-12-07 22:28:17 +08:00
|
|
|
config->fortranCommon =
|
|
|
|
args.hasFlag(OPT_fortran_common, OPT_no_fortran_common, true);
|
2017-10-25 04:59:55 +08:00
|
|
|
config->gcSections = args.hasFlag(OPT_gc_sections, OPT_no_gc_sections, false);
|
2018-02-03 05:44:06 +08:00
|
|
|
config->gnuUnique = args.hasFlag(OPT_gnu_unique, OPT_no_gnu_unique, true);
|
2017-10-25 04:59:55 +08:00
|
|
|
config->gdbIndex = args.hasFlag(OPT_gdb_index, OPT_no_gdb_index, false);
|
2018-07-19 06:49:31 +08:00
|
|
|
config->icf = getICF(args);
|
2018-01-10 09:37:36 +08:00
|
|
|
config->ignoreDataAddressEquality =
|
|
|
|
args.hasArg(OPT_ignore_data_address_equality);
|
|
|
|
config->ignoreFunctionAddressEquality =
|
|
|
|
args.hasArg(OPT_ignore_function_address_equality);
|
2017-06-14 16:01:26 +08:00
|
|
|
config->init = args.getLastArgValue(OPT_init, "_init");
|
|
|
|
config->ltoAAPipeline = args.getLastArgValue(OPT_lto_aa_pipeline);
|
2019-03-12 06:51:38 +08:00
|
|
|
config->ltoCSProfileGenerate = args.hasArg(OPT_lto_cs_profile_generate);
|
|
|
|
config->ltoCSProfileFile = args.getLastArgValue(OPT_lto_cs_profile_file);
|
2021-08-12 00:45:55 +08:00
|
|
|
config->ltoPGOWarnMismatch = args.hasFlag(OPT_lto_pgo_warn_mismatch,
|
|
|
|
OPT_no_lto_pgo_warn_mismatch, true);
|
2018-04-10 01:56:07 +08:00
|
|
|
config->ltoDebugPassManager = args.hasArg(OPT_lto_debug_pass_manager);
|
[lld] Support --lto-emit-asm and --plugin-opt=emit-asm
Summary: The switch --plugin-opt=emit-asm can be used with the gold linker to dump the final assembly code generated by LTO in a user-friendly way. Unfortunately it doesn't work with lld. I'm hooking it up with lld. With that switch, lld emits assembly code into the output file (specified by -o) and if there are multiple input files, each of their assembly code will be emitted into a separate file named by suffixing the output file name with a unique number, respectively. The linking then stops after generating those assembly files.
Reviewers: espindola, wenlei, tejohnson, MaskRay, grimar
Reviewed By: tejohnson, MaskRay, grimar
Subscribers: pcc, emaste, inglorion, arichardson, hiraditya, MaskRay, steven_wu, dexonsmith, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D77231
2020-04-02 01:01:23 +08:00
|
|
|
config->ltoEmitAsm = args.hasArg(OPT_lto_emit_asm);
|
2020-12-09 06:27:39 +08:00
|
|
|
config->ltoNewPassManager =
|
2020-12-10 09:53:37 +08:00
|
|
|
args.hasFlag(OPT_no_lto_legacy_pass_manager, OPT_lto_legacy_pass_manager,
|
2020-12-09 06:27:39 +08:00
|
|
|
LLVM_ENABLE_NEW_PASS_MANAGER);
|
2017-06-14 16:01:26 +08:00
|
|
|
config->ltoNewPmPasses = args.getLastArgValue(OPT_lto_newpm_passes);
|
2020-01-25 04:24:18 +08:00
|
|
|
config->ltoWholeProgramVisibility =
|
2020-11-25 06:53:02 +08:00
|
|
|
args.hasFlag(OPT_lto_whole_program_visibility,
|
|
|
|
OPT_no_lto_whole_program_visibility, false);
|
2017-11-29 03:58:45 +08:00
|
|
|
config->ltoo = args::getInteger(args, OPT_lto_O, 2);
|
[ELF] accept thinlto options without --plugin-opt= prefix
Summary:
When support for ThinLTO was first added to lld, the options that
control it were prefixed with --plugin-opt= for compatibility with
an existing implementation as a linker plugin. This change enables
shorter versions of the options to be used, as follows:
New Existing
-thinlto-emit-imports-files --plugin-opt=thinlto-emit-imports-files
-thinlto-index-only --plugin-opt=thinlto-index-only
-thinlto-index-only= --plugin-opt=thinlto-index-only=
-thinlto-object-suffix-replace= --plugin-opt=thinlto-object-suffix-replace=
-thinlto-prefix-replace= --plugin-opt=thinlto-prefix-replace=
-lto-obj-path= --plugin-opt=obj-path=
The options with the --plugin-opt= prefix have been retained as aliases
for the shorter variants so that they continue to be accepted.
Reviewers: tejohnson, ruiu, espindola
Reviewed By: ruiu
Subscribers: emaste, arichardson, MaskRay, steven_wu, dexonsmith, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67782
llvm-svn: 372798
2019-09-25 09:19:48 +08:00
|
|
|
config->ltoObjPath = args.getLastArgValue(OPT_lto_obj_path_eq);
|
2017-11-29 03:58:45 +08:00
|
|
|
config->ltoPartitions = args::getInteger(args, OPT_lto_partitions, 1);
|
2018-04-10 01:56:07 +08:00
|
|
|
config->ltoSampleProfile = args.getLastArgValue(OPT_lto_sample_profile);
|
2020-04-07 21:48:18 +08:00
|
|
|
config->ltoBasicBlockSections =
|
2020-08-01 02:14:49 +08:00
|
|
|
args.getLastArgValue(OPT_lto_basic_block_sections);
|
2020-06-02 14:17:29 +08:00
|
|
|
config->ltoUniqueBasicBlockSectionNames =
|
2020-08-01 02:14:49 +08:00
|
|
|
args.hasFlag(OPT_lto_unique_basic_block_section_names,
|
|
|
|
OPT_no_lto_unique_basic_block_section_names, false);
|
2017-06-14 16:01:26 +08:00
|
|
|
config->mapFile = args.getLastArgValue(OPT_Map);
|
2018-06-11 15:24:31 +08:00
|
|
|
config->mipsGotSize = args::getInteger(args, OPT_mips_got_size, 0xfff0);
|
2017-12-15 19:09:41 +08:00
|
|
|
config->mergeArmExidx =
|
|
|
|
args.hasFlag(OPT_merge_exidx_entries, OPT_no_merge_exidx_entries, true);
|
[LLD][ELF] Support --[no-]mmap-output-file with F_no_mmap
Summary:
Add a flag `F_no_mmap` to `FileOutputBuffer` to support
`--[no-]mmap-output-file` in ELF LLD. LLD currently explicitly ignores
this flag for compatibility with GNU ld and gold.
We need this flag to speed up link time for large binaries in certain
scenarios. When we link some of our larger binaries we find that LLD
takes 50+ GB of memory, which causes memory pressure. The memory
pressure causes the VM to flush dirty pages of the output file to disk.
This is normally okay, since we should be flushing cold pages. However,
when using BtrFS with compression we need to write 128KB at a time when
we flush a page. If any page in that 128KB block is written again, then
it must be flushed a second time, and so on. Since LLD doesn't write
sequentially this causes write amplification. The same 128KB block will
end up being flushed multiple times, causing the linker to many times
more IO than necessary. We've observed 3-5x faster builds with
-no-mmap-output-file when we hit this scenario.
The bad scenario only applies to compressed filesystems, which group
together multiple pages into a single compressed block. I've tested
BtrFS, but the problem will be present for any compressed filesystem
on Linux, since it is caused by the VM.
Silently ignoring --no-mmap-output-file caused a silent regression when
we switched from gold to lld. We pass --no-mmap-output-file to fix this
edge case, but since lld silently ignored the flag we didn't realize it
wasn't being respected.
Benchmark building a 9 GB binary that exposes this edge case. I linked 3
times with --mmap-output-file and 3 times with --no-mmap-output-file and
took the average. The machine has 24 cores @ 2.4 GHz, 112 GB of RAM,
BtrFS mounted with -compress-force=zstd, and an 80% full disk.
| Mode | Time |
|---------|-------|
| mmap | 894 s |
| no mmap | 126 s |
When compression is disabled, BtrFS performs just as well with and
without mmap on this benchmark.
I was unable to reproduce the regression with any binaries in
lld-speed-test.
Reviewed By: ruiu, MaskRay
Differential Revision: https://reviews.llvm.org/D69294
2019-10-30 06:46:22 +08:00
|
|
|
config->mmapOutputFile =
|
|
|
|
args.hasFlag(OPT_mmap_output_file, OPT_no_mmap_output_file, true);
|
2019-05-14 00:01:26 +08:00
|
|
|
config->nmagic = args.hasFlag(OPT_nmagic, OPT_no_nmagic, false);
|
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);
|
2020-11-18 02:37:59 +08:00
|
|
|
|
|
|
|
// Parse remarks hotness threshold. Valid value is either integer or 'auto'.
|
|
|
|
if (auto *arg = args.getLastArg(OPT_opt_remarks_hotness_threshold)) {
|
|
|
|
auto resultOrErr = remarks::parseHotnessThresholdOption(arg->getValue());
|
|
|
|
if (!resultOrErr)
|
|
|
|
error(arg->getSpelling() + ": invalid argument '" + arg->getValue() +
|
|
|
|
"', only integer or 'auto' is supported");
|
|
|
|
else
|
|
|
|
config->optRemarksHotnessThreshold = *resultOrErr;
|
|
|
|
}
|
|
|
|
|
2019-03-13 05:22:27 +08:00
|
|
|
config->optRemarksPasses = args.getLastArgValue(OPT_opt_remarks_passes);
|
2017-02-14 01:49:18 +08:00
|
|
|
config->optRemarksWithHotness = args.hasArg(OPT_opt_remarks_with_hotness);
|
2019-06-18 00:06:00 +08:00
|
|
|
config->optRemarksFormat = args.getLastArgValue(OPT_opt_remarks_format);
|
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);
|
2018-02-02 08:31:05 +08:00
|
|
|
config->pie = args.hasFlag(OPT_pie, OPT_no_pie, false);
|
2018-02-02 00:00:46 +08:00
|
|
|
config->printIcfSections =
|
|
|
|
args.hasFlag(OPT_print_icf_sections, OPT_no_print_icf_sections, false);
|
2017-11-01 10:04:43 +08:00
|
|
|
config->printGcSections =
|
|
|
|
args.hasFlag(OPT_print_gc_sections, OPT_no_print_gc_sections, false);
|
2020-04-28 10:30:09 +08:00
|
|
|
config->printArchiveStats = args.getLastArgValue(OPT_print_archive_stats);
|
2019-03-28 07:52:22 +08:00
|
|
|
config->printSymbolOrder =
|
|
|
|
args.getLastArgValue(OPT_print_symbol_order);
|
2021-11-13 01:47:31 +08:00
|
|
|
config->relax = args.hasFlag(OPT_relax, OPT_no_relax, true);
|
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);
|
2020-04-30 08:31:35 +08:00
|
|
|
config->singleRoRx = !args.hasFlag(OPT_rosegment, OPT_no_rosegment, true);
|
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);
|
2018-10-17 01:13:01 +08:00
|
|
|
config->splitStackAdjustSize = args::getInteger(args, OPT_split_stack_adjust_size, 16384);
|
2017-02-25 10:23:28 +08:00
|
|
|
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");
|
[ELF] accept thinlto options without --plugin-opt= prefix
Summary:
When support for ThinLTO was first added to lld, the options that
control it were prefixed with --plugin-opt= for compatibility with
an existing implementation as a linker plugin. This change enables
shorter versions of the options to be used, as follows:
New Existing
-thinlto-emit-imports-files --plugin-opt=thinlto-emit-imports-files
-thinlto-index-only --plugin-opt=thinlto-index-only
-thinlto-index-only= --plugin-opt=thinlto-index-only=
-thinlto-object-suffix-replace= --plugin-opt=thinlto-object-suffix-replace=
-thinlto-prefix-replace= --plugin-opt=thinlto-prefix-replace=
-lto-obj-path= --plugin-opt=obj-path=
The options with the --plugin-opt= prefix have been retained as aliases
for the shorter variants so that they continue to be accepted.
Reviewers: tejohnson, ruiu, espindola
Reviewed By: ruiu
Subscribers: emaste, arichardson, MaskRay, steven_wu, dexonsmith, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67782
llvm-svn: 372798
2019-09-25 09:19:48 +08:00
|
|
|
config->thinLTOEmitImportsFiles = args.hasArg(OPT_thinlto_emit_imports_files);
|
|
|
|
config->thinLTOIndexOnly = args.hasArg(OPT_thinlto_index_only) ||
|
|
|
|
args.hasArg(OPT_thinlto_index_only_eq);
|
|
|
|
config->thinLTOIndexOnlyArg = args.getLastArgValue(OPT_thinlto_index_only_eq);
|
2018-05-23 00:16:09 +08:00
|
|
|
config->thinLTOObjectSuffixReplace =
|
[ELF] accept thinlto options without --plugin-opt= prefix
Summary:
When support for ThinLTO was first added to lld, the options that
control it were prefixed with --plugin-opt= for compatibility with
an existing implementation as a linker plugin. This change enables
shorter versions of the options to be used, as follows:
New Existing
-thinlto-emit-imports-files --plugin-opt=thinlto-emit-imports-files
-thinlto-index-only --plugin-opt=thinlto-index-only
-thinlto-index-only= --plugin-opt=thinlto-index-only=
-thinlto-object-suffix-replace= --plugin-opt=thinlto-object-suffix-replace=
-thinlto-prefix-replace= --plugin-opt=thinlto-prefix-replace=
-lto-obj-path= --plugin-opt=obj-path=
The options with the --plugin-opt= prefix have been retained as aliases
for the shorter variants so that they continue to be accepted.
Reviewers: tejohnson, ruiu, espindola
Reviewed By: ruiu
Subscribers: emaste, arichardson, MaskRay, steven_wu, dexonsmith, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67782
llvm-svn: 372798
2019-09-25 09:19:48 +08:00
|
|
|
getOldNewOptions(args, OPT_thinlto_object_suffix_replace_eq);
|
2018-05-23 00:16:09 +08:00
|
|
|
config->thinLTOPrefixReplace =
|
[ELF] accept thinlto options without --plugin-opt= prefix
Summary:
When support for ThinLTO was first added to lld, the options that
control it were prefixed with --plugin-opt= for compatibility with
an existing implementation as a linker plugin. This change enables
shorter versions of the options to be used, as follows:
New Existing
-thinlto-emit-imports-files --plugin-opt=thinlto-emit-imports-files
-thinlto-index-only --plugin-opt=thinlto-index-only
-thinlto-index-only= --plugin-opt=thinlto-index-only=
-thinlto-object-suffix-replace= --plugin-opt=thinlto-object-suffix-replace=
-thinlto-prefix-replace= --plugin-opt=thinlto-prefix-replace=
-lto-obj-path= --plugin-opt=obj-path=
The options with the --plugin-opt= prefix have been retained as aliases
for the shorter variants so that they continue to be accepted.
Reviewers: tejohnson, ruiu, espindola
Reviewed By: ruiu
Subscribers: emaste, arichardson, MaskRay, steven_wu, dexonsmith, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67782
llvm-svn: 372798
2019-09-25 09:19:48 +08:00
|
|
|
getOldNewOptions(args, OPT_thinlto_prefix_replace_eq);
|
2020-05-22 04:19:44 +08:00
|
|
|
config->thinLTOModulesToCompile =
|
|
|
|
args::getStrings(args, OPT_thinlto_single_module_eq);
|
2020-01-29 00:05:13 +08:00
|
|
|
config->timeTraceEnabled = args.hasArg(OPT_time_trace);
|
|
|
|
config->timeTraceGranularity =
|
|
|
|
args::getInteger(args, OPT_time_trace_granularity, 500);
|
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);
|
2018-02-03 05:44:06 +08:00
|
|
|
config->undefinedVersion =
|
|
|
|
args.hasFlag(OPT_undefined_version, OPT_no_undefined_version, true);
|
[LLD] Add support for --unique option
Summary:
Places orphan sections into a unique output section. This prevents the merging of orphan sections of the same name.
Matches behaviour of GNU ld --unique. --unique=pattern is not implemented.
Motivated user case shown in the test has 2 local symbols as they would appear if C++ source has been compiled with -ffunction-sections. The merging of these sections in the case of a partial link (-r) may limit the effectiveness of -gc-sections of a subsequent link.
Reviewers: espindola, jhenderson, bd1976llvm, edd, andrewng, JonChesterfield, MaskRay, grimar, ruiu, psmith
Reviewed By: MaskRay, grimar
Subscribers: emaste, arichardson, MaskRay, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D75536
2020-03-09 23:43:20 +08:00
|
|
|
config->unique = args.hasArg(OPT_unique);
|
2018-07-10 04:08:55 +08:00
|
|
|
config->useAndroidRelrTags = args.hasFlag(
|
|
|
|
OPT_use_android_relr_tags, OPT_no_use_android_relr_tags, false);
|
Add --warn-backrefs to maintain compatibility with other linkers
I'm proposing a new command line flag, --warn-backrefs in this patch.
The flag and the feature proposed below don't exist in GNU linkers
nor the current lld.
--warn-backrefs is an option to detect reverse or cyclic dependencies
between static archives, and it can be used to keep your program
compatible with GNU linkers after you switch to lld. I'll explain the
feature and why you may find it useful below.
lld's symbol resolution semantics is more relaxed than traditional
Unix linkers. Therefore,
ld.lld foo.a bar.o
succeeds even if bar.o contains an undefined symbol that have to be
resolved by some object file in foo.a. Traditional Unix linkers
don't allow this kind of backward reference, as they visit each
file only once from left to right in the command line while
resolving all undefined symbol at the moment of visiting.
In the above case, since there's no undefined symbol when a linker
visits foo.a, no files are pulled out from foo.a, and because the
linker forgets about foo.a after visiting, it can't resolve
undefined symbols that could have been resolved otherwise.
That lld accepts more relaxed form means (besides it makes more
sense) that you can accidentally write a command line or a build
file that works only with lld, even if you have a plan to
distribute it to wider users who may be using GNU linkers. With
--check-library-dependency, you can detect a library order that
doesn't work with other Unix linkers.
The option is also useful to detect cyclic dependencies between
static archives. Again, lld accepts
ld.lld foo.a bar.a
even if foo.a and bar.a depend on each other. With --warn-backrefs
it is handled as an error.
Here is how the option works. We assign a group ID to each file. A
file with a smaller group ID can pull out object files from an
archive file with an equal or greater group ID. Otherwise, it is a
reverse dependency and an error.
A file outside --{start,end}-group gets a fresh ID when
instantiated. All files within the same --{start,end}-group get the
same group ID. E.g.
ld.lld A B --start-group C D --end-group E
A and B form group 0, C, D and their member object files form group
1, and E forms group 2. I think that you can see how this group
assignment rule simulates the traditional linker's semantics.
Differential Revision: https://reviews.llvm.org/D45195
llvm-svn: 329636
2018-04-10 07:05:48 +08:00
|
|
|
config->warnBackrefs =
|
|
|
|
args.hasFlag(OPT_warn_backrefs, OPT_no_warn_backrefs, false);
|
2018-02-06 08:45:15 +08:00
|
|
|
config->warnCommon = args.hasFlag(OPT_warn_common, OPT_no_warn_common, false);
|
2018-02-14 21:36:22 +08:00
|
|
|
config->warnSymbolOrdering =
|
|
|
|
args.hasFlag(OPT_warn_symbol_ordering, OPT_no_warn_symbol_ordering, true);
|
2021-09-21 00:52:30 +08:00
|
|
|
config->whyExtract = args.getLastArgValue(OPT_why_extract);
|
2018-04-21 05:24:08 +08:00
|
|
|
config->zCombreloc = getZFlag(args, "combreloc", "nocombreloc", true);
|
|
|
|
config->zCopyreloc = getZFlag(args, "copyreloc", "nocopyreloc", true);
|
2020-02-14 12:57:03 +08:00
|
|
|
config->zForceBti = hasZOption(args, "force-bti");
|
2019-12-11 10:05:36 +08:00
|
|
|
config->zForceIbt = hasZOption(args, "force-ibt");
|
2018-08-28 16:24:34 +08:00
|
|
|
config->zGlobal = hasZOption(args, "global");
|
2019-10-22 01:27:51 +08:00
|
|
|
config->zGnustack = getZGnuStack(args);
|
2018-02-21 07:49:17 +08:00
|
|
|
config->zHazardplt = hasZOption(args, "hazardplt");
|
2019-05-14 23:25:21 +08:00
|
|
|
config->zIfuncNoplt = hasZOption(args, "ifunc-noplt");
|
2018-06-20 10:06:01 +08:00
|
|
|
config->zInitfirst = hasZOption(args, "initfirst");
|
2018-09-14 22:25:37 +08:00
|
|
|
config->zInterpose = hasZOption(args, "interpose");
|
2018-05-09 07:19:50 +08:00
|
|
|
config->zKeepTextSectionPrefix = getZFlag(
|
|
|
|
args, "keep-text-section-prefix", "nokeep-text-section-prefix", false);
|
2018-11-27 17:48:17 +08:00
|
|
|
config->zNodefaultlib = hasZOption(args, "nodefaultlib");
|
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");
|
2018-04-21 05:24:08 +08:00
|
|
|
config->zNow = getZFlag(args, "now", "lazy", false);
|
2015-11-13 03:00:37 +08:00
|
|
|
config->zOrigin = hasZOption(args, "origin");
|
2020-02-14 12:57:03 +08:00
|
|
|
config->zPacPlt = hasZOption(args, "pac-plt");
|
2018-04-21 05:24:08 +08:00
|
|
|
config->zRelro = getZFlag(args, "relro", "norelro", true);
|
Introduce the "retpoline" x86 mitigation technique for variant #2 of the speculative execution vulnerabilities disclosed today, specifically identified by CVE-2017-5715, "Branch Target Injection", and is one of the two halves to Spectre..
Summary:
First, we need to explain the core of the vulnerability. Note that this
is a very incomplete description, please see the Project Zero blog post
for details:
https://googleprojectzero.blogspot.com/2018/01/reading-privileged-memory-with-side.html
The basis for branch target injection is to direct speculative execution
of the processor to some "gadget" of executable code by poisoning the
prediction of indirect branches with the address of that gadget. The
gadget in turn contains an operation that provides a side channel for
reading data. Most commonly, this will look like a load of secret data
followed by a branch on the loaded value and then a load of some
predictable cache line. The attacker then uses timing of the processors
cache to determine which direction the branch took *in the speculative
execution*, and in turn what one bit of the loaded value was. Due to the
nature of these timing side channels and the branch predictor on Intel
processors, this allows an attacker to leak data only accessible to
a privileged domain (like the kernel) back into an unprivileged domain.
The goal is simple: avoid generating code which contains an indirect
branch that could have its prediction poisoned by an attacker. In many
cases, the compiler can simply use directed conditional branches and
a small search tree. LLVM already has support for lowering switches in
this way and the first step of this patch is to disable jump-table
lowering of switches and introduce a pass to rewrite explicit indirectbr
sequences into a switch over integers.
However, there is no fully general alternative to indirect calls. We
introduce a new construct we call a "retpoline" to implement indirect
calls in a non-speculatable way. It can be thought of loosely as
a trampoline for indirect calls which uses the RET instruction on x86.
Further, we arrange for a specific call->ret sequence which ensures the
processor predicts the return to go to a controlled, known location. The
retpoline then "smashes" the return address pushed onto the stack by the
call with the desired target of the original indirect call. The result
is a predicted return to the next instruction after a call (which can be
used to trap speculative execution within an infinite loop) and an
actual indirect branch to an arbitrary address.
On 64-bit x86 ABIs, this is especially easily done in the compiler by
using a guaranteed scratch register to pass the target into this device.
For 32-bit ABIs there isn't a guaranteed scratch register and so several
different retpoline variants are introduced to use a scratch register if
one is available in the calling convention and to otherwise use direct
stack push/pop sequences to pass the target address.
This "retpoline" mitigation is fully described in the following blog
post: https://support.google.com/faqs/answer/7625886
We also support a target feature that disables emission of the retpoline
thunk by the compiler to allow for custom thunks if users want them.
These are particularly useful in environments like kernels that
routinely do hot-patching on boot and want to hot-patch their thunk to
different code sequences. They can write this custom thunk and use
`-mretpoline-external-thunk` *in addition* to `-mretpoline`. In this
case, on x86-64 thu thunk names must be:
```
__llvm_external_retpoline_r11
```
or on 32-bit:
```
__llvm_external_retpoline_eax
__llvm_external_retpoline_ecx
__llvm_external_retpoline_edx
__llvm_external_retpoline_push
```
And the target of the retpoline is passed in the named register, or in
the case of the `push` suffix on the top of the stack via a `pushl`
instruction.
There is one other important source of indirect branches in x86 ELF
binaries: the PLT. These patches also include support for LLD to
generate PLT entries that perform a retpoline-style indirection.
The only other indirect branches remaining that we are aware of are from
precompiled runtimes (such as crt0.o and similar). The ones we have
found are not really attackable, and so we have not focused on them
here, but eventually these runtimes should also be replicated for
retpoline-ed configurations for completeness.
For kernels or other freestanding or fully static executables, the
compiler switch `-mretpoline` is sufficient to fully mitigate this
particular attack. For dynamic executables, you must compile *all*
libraries with `-mretpoline` and additionally link the dynamic
executable and all shared libraries with LLD and pass `-z retpolineplt`
(or use similar functionality from some other linker). We strongly
recommend also using `-z now` as non-lazy binding allows the
retpoline-mitigated PLT to be substantially smaller.
When manually apply similar transformations to `-mretpoline` to the
Linux kernel we observed very small performance hits to applications
running typical workloads, and relatively minor hits (approximately 2%)
even for extremely syscall-heavy applications. This is largely due to
the small number of indirect branches that occur in performance
sensitive paths of the kernel.
When using these patches on statically linked applications, especially
C++ applications, you should expect to see a much more dramatic
performance hit. For microbenchmarks that are switch, indirect-, or
virtual-call heavy we have seen overheads ranging from 10% to 50%.
However, real-world workloads exhibit substantially lower performance
impact. Notably, techniques such as PGO and ThinLTO dramatically reduce
the impact of hot indirect calls (by speculatively promoting them to
direct calls) and allow optimized search trees to be used to lower
switches. If you need to deploy these techniques in C++ applications, we
*strongly* recommend that you ensure all hot call targets are statically
linked (avoiding PLT indirection) and use both PGO and ThinLTO. Well
tuned servers using all of these techniques saw 5% - 10% overhead from
the use of retpoline.
We will add detailed documentation covering these components in
subsequent patches, but wanted to make the core functionality available
as soon as possible. Happy for more code review, but we'd really like to
get these patches landed and backported ASAP for obvious reasons. We're
planning to backport this to both 6.0 and 5.0 release streams and get
a 5.0 release with just this cherry picked ASAP for distros and vendors.
This patch is the work of a number of people over the past month: Eric, Reid,
Rui, and myself. I'm mailing it out as a single commit due to the time
sensitive nature of landing this and the need to backport it. Huge thanks to
everyone who helped out here, and everyone at Intel who helped out in
discussions about how to craft this. Also, credit goes to Paul Turner (at
Google, but not an LLVM contributor) for much of the underlying retpoline
design.
Reviewers: echristo, rnk, ruiu, craig.topper, DavidKreitzer
Subscribers: sanjoy, emaste, mcrosier, mgorny, mehdi_amini, hiraditya, llvm-commits
Differential Revision: https://reviews.llvm.org/D41723
llvm-svn: 323155
2018-01-23 06:05:25 +08:00
|
|
|
config->zRetpolineplt = hasZOption(args, "retpolineplt");
|
2017-05-27 03:12:38 +08:00
|
|
|
config->zRodynamic = hasZOption(args, "rodynamic");
|
2019-09-25 11:39:31 +08:00
|
|
|
config->zSeparate = getZSeparate(args);
|
2019-12-11 10:05:36 +08:00
|
|
|
config->zShstk = hasZOption(args, "shstk");
|
2017-11-29 03:58:45 +08:00
|
|
|
config->zStackSize = args::getZOptionValue(args, OPT_z, "stack-size", 0);
|
2021-02-26 07:46:37 +08:00
|
|
|
config->zStartStopGC =
|
2021-04-17 03:18:45 +08:00
|
|
|
getZFlag(args, "start-stop-gc", "nostart-stop-gc", true);
|
2020-06-18 05:10:02 +08:00
|
|
|
config->zStartStopVisibility = getZStartStopVisibility(args);
|
2018-04-21 05:24:08 +08:00
|
|
|
config->zText = getZFlag(args, "text", "notext", true);
|
2016-10-14 18:34:36 +08:00
|
|
|
config->zWxneeded = hasZOption(args, "wxneeded");
|
2020-11-18 04:20:57 +08:00
|
|
|
setUnresolvedSymbolPolicy(args);
|
2021-11-27 03:51:45 +08:00
|
|
|
config->power10Stubs = args.getLastArgValue(OPT_power10_stubs_eq) != "no";
|
2015-11-13 03:00:37 +08:00
|
|
|
|
2021-02-09 02:34:57 +08:00
|
|
|
if (opt::Arg *arg = args.getLastArg(OPT_eb, OPT_el)) {
|
|
|
|
if (arg->getOption().matches(OPT_eb))
|
|
|
|
config->optEB = true;
|
|
|
|
else
|
|
|
|
config->optEL = true;
|
|
|
|
}
|
|
|
|
|
2021-03-19 01:18:19 +08:00
|
|
|
for (opt::Arg *arg : args.filtered(OPT_shuffle_sections)) {
|
|
|
|
constexpr StringRef errPrefix = "--shuffle-sections=: ";
|
|
|
|
std::pair<StringRef, StringRef> kv = StringRef(arg->getValue()).split('=');
|
|
|
|
if (kv.first.empty() || kv.second.empty()) {
|
|
|
|
error(errPrefix + "expected <section_glob>=<seed>, but got '" +
|
|
|
|
arg->getValue() + "'");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Signed so that <section_glob>=-1 is allowed.
|
|
|
|
int64_t v;
|
|
|
|
if (!to_integer(kv.second, v))
|
|
|
|
error(errPrefix + "expected an integer, but got '" + kv.second + "'");
|
|
|
|
else if (Expected<GlobPattern> pat = GlobPattern::create(kv.first))
|
|
|
|
config->shuffleSections.emplace_back(std::move(*pat), uint32_t(v));
|
|
|
|
else
|
|
|
|
error(errPrefix + toString(pat.takeError()));
|
|
|
|
}
|
|
|
|
|
2021-12-16 23:18:08 +08:00
|
|
|
auto reports = {std::make_pair("bti-report", &config->zBtiReport),
|
|
|
|
std::make_pair("cet-report", &config->zCetReport)};
|
|
|
|
for (opt::Arg *arg : args.filtered(OPT_z)) {
|
|
|
|
std::pair<StringRef, StringRef> option =
|
|
|
|
StringRef(arg->getValue()).split('=');
|
|
|
|
for (auto reportArg : reports) {
|
|
|
|
if (option.first != reportArg.first)
|
|
|
|
continue;
|
|
|
|
if (!isValidReportString(option.second)) {
|
|
|
|
error(Twine("-z ") + reportArg.first + "= parameter " + option.second +
|
|
|
|
" is not recognized");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*reportArg.second = option.second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-09 01:10:43 +08:00
|
|
|
for (opt::Arg *arg : args.filtered(OPT_z)) {
|
|
|
|
std::pair<StringRef, StringRef> option =
|
|
|
|
StringRef(arg->getValue()).split('=');
|
|
|
|
if (option.first != "dead-reloc-in-nonalloc")
|
|
|
|
continue;
|
|
|
|
constexpr StringRef errPrefix = "-z dead-reloc-in-nonalloc=: ";
|
|
|
|
std::pair<StringRef, StringRef> kv = option.second.split('=');
|
|
|
|
if (kv.first.empty() || kv.second.empty()) {
|
|
|
|
error(errPrefix + "expected <section_glob>=<value>");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
uint64_t v;
|
|
|
|
if (!to_integer(kv.second, v))
|
|
|
|
error(errPrefix + "expected a non-negative integer, but got '" +
|
|
|
|
kv.second + "'");
|
|
|
|
else if (Expected<GlobPattern> pat = GlobPattern::create(kv.first))
|
|
|
|
config->deadRelocInNonAlloc.emplace_back(std::move(*pat), v);
|
|
|
|
else
|
|
|
|
error(errPrefix + toString(pat.takeError()));
|
|
|
|
}
|
|
|
|
|
2020-09-30 01:25:16 +08:00
|
|
|
cl::ResetAllOptionOccurrences();
|
|
|
|
|
2018-05-23 00:16:09 +08:00
|
|
|
// Parse LTO options.
|
2018-05-22 10:53:11 +08:00
|
|
|
if (auto *arg = args.getLastArg(OPT_plugin_opt_mcpu_eq))
|
|
|
|
parseClangOption(saver.save("-mcpu=" + StringRef(arg->getValue())),
|
|
|
|
arg->getSpelling());
|
|
|
|
|
2020-04-15 05:17:29 +08:00
|
|
|
for (opt::Arg *arg : args.filtered(OPT_plugin_opt_eq_minus))
|
|
|
|
parseClangOption(std::string("-") + arg->getValue(), arg->getSpelling());
|
|
|
|
|
|
|
|
// GCC collect2 passes -plugin-opt=path/to/lto-wrapper with an absolute or
|
|
|
|
// relative path. Just ignore. If not ended with "lto-wrapper", consider it an
|
|
|
|
// unsupported LLVMgold.so option and error.
|
|
|
|
for (opt::Arg *arg : args.filtered(OPT_plugin_opt_eq))
|
|
|
|
if (!StringRef(arg->getValue()).endswith("lto-wrapper"))
|
|
|
|
error(arg->getSpelling() + ": unknown plugin option '" + arg->getValue() +
|
|
|
|
"'");
|
2018-03-31 01:22:44 +08:00
|
|
|
|
|
|
|
// Parse -mllvm options.
|
2018-02-06 20:20:05 +08:00
|
|
|
for (auto *arg : args.filtered(OPT_mllvm))
|
2018-03-31 01:22:44 +08:00
|
|
|
parseClangOption(arg->getValue(), arg->getSpelling());
|
2017-08-15 01:48:30 +08:00
|
|
|
|
[lld][COFF][ELF][WebAssembly] Replace --[no-]threads /threads[:no] with --threads={1,2,...} /threads:{1,2,...}
--no-threads is a name copied from gold.
gold has --no-thread, --thread-count and several other --thread-count-*.
There are needs to customize the number of threads (running several lld
processes concurrently or customizing the number of LTO threads).
Having a single --threads=N is a straightforward replacement of gold's
--no-threads + --thread-count.
--no-threads is used rarely. So just delete --no-threads instead of
keeping it for compatibility for a while.
If --threads= is specified (ELF,wasm; COFF /threads: is similar),
--thinlto-jobs= defaults to --threads=,
otherwise all available hardware threads are used.
There is currently no way to override a --threads={1,2,...}. It is still
a debate whether we should use --threads=all.
Reviewed By: rnk, aganea
Differential Revision: https://reviews.llvm.org/D76885
2020-03-18 03:40:19 +08:00
|
|
|
// --threads= takes a positive integer and provides the default value for
|
|
|
|
// --thinlto-jobs=.
|
|
|
|
if (auto *arg = args.getLastArg(OPT_threads)) {
|
|
|
|
StringRef v(arg->getValue());
|
|
|
|
unsigned threads = 0;
|
|
|
|
if (!llvm::to_integer(v, threads, 0) || threads == 0)
|
|
|
|
error(arg->getSpelling() + ": expected a positive integer, but got '" +
|
|
|
|
arg->getValue() + "'");
|
|
|
|
parallel::strategy = hardware_concurrency(threads);
|
|
|
|
config->thinLTOJobs = v;
|
|
|
|
}
|
|
|
|
if (auto *arg = args.getLastArg(OPT_thinlto_jobs))
|
|
|
|
config->thinLTOJobs = arg->getValue();
|
|
|
|
|
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");
|
2020-03-27 22:20:39 +08:00
|
|
|
if (!get_threadpool_strategy(config->thinLTOJobs))
|
|
|
|
error("--thinlto-jobs: invalid job count: " + config->thinLTOJobs);
|
2017-02-25 09:51:25 +08:00
|
|
|
|
2018-10-17 01:13:01 +08:00
|
|
|
if (config->splitStackAdjustSize < 0)
|
|
|
|
error("--split-stack-adjust-size: size must be >= 0");
|
|
|
|
|
2019-11-20 06:16:04 +08:00
|
|
|
// The text segment is traditionally the first segment, whose address equals
|
|
|
|
// the base address. However, lld places the R PT_LOAD first. -Ttext-segment
|
|
|
|
// is an old-fashioned option that does not play well with lld's layout.
|
|
|
|
// Suggest --image-base as a likely alternative.
|
|
|
|
if (args.hasArg(OPT_Ttext_segment))
|
|
|
|
error("-Ttext-segment is not supported. Use --image-base if you "
|
|
|
|
"intend to set the base address");
|
|
|
|
|
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);
|
2019-09-24 04:32:43 +08:00
|
|
|
config->mipsN32Abi =
|
|
|
|
(s.startswith("elf32btsmipn32") || s.startswith("elf32ltsmipn32"));
|
2017-02-25 09:51:25 +08:00
|
|
|
config->emulation = s;
|
|
|
|
}
|
2016-10-20 13:23:23 +08:00
|
|
|
|
2021-10-26 03:52:06 +08:00
|
|
|
// Parse --hash-style={sysv,gnu,both}.
|
2017-10-06 17:37:44 +08:00
|
|
|
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
|
2021-10-26 03:52:06 +08:00
|
|
|
error("unknown --hash-style: " + s);
|
2017-10-06 17:37:44 +08:00
|
|
|
}
|
|
|
|
|
2017-01-15 10:52:34 +08:00
|
|
|
if (args.hasArg(OPT_print_map))
|
|
|
|
config->mapFile = "-";
|
|
|
|
|
2019-05-14 00:01:26 +08:00
|
|
|
// Page alignment can be disabled by the -n (--nmagic) and -N (--omagic).
|
|
|
|
// As PT_GNU_RELRO relies on Paging, do not create it when we have disabled
|
|
|
|
// it.
|
|
|
|
if (config->nmagic || 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
|
|
|
|
2018-07-10 04:22:28 +08:00
|
|
|
std::tie(config->androidPackDynRelocs, config->relrPackDynRelocs) =
|
|
|
|
getPackDynRelocs(args);
|
2017-10-28 01:49:40 +08:00
|
|
|
|
2019-05-21 03:13:34 +08:00
|
|
|
if (auto *arg = args.getLastArg(OPT_symbol_ordering_file)){
|
|
|
|
if (args.hasArg(OPT_call_graph_ordering_file))
|
|
|
|
error("--symbol-ordering-file and --call-graph-order-file "
|
|
|
|
"may not be used together");
|
|
|
|
if (Optional<MemoryBufferRef> buffer = readFile(arg->getValue())){
|
2018-02-14 21:36:22 +08:00
|
|
|
config->symbolOrderingFile = getSymbolOrderingFile(*buffer);
|
2019-05-21 03:13:34 +08:00
|
|
|
// Also need to disable CallGraphProfileSort to prevent
|
|
|
|
// LLD order symbols with CGProfile
|
|
|
|
config->callGraphProfileSort = false;
|
|
|
|
}
|
|
|
|
}
|
2016-11-10 17:05:20 +08:00
|
|
|
|
2019-08-05 22:31:39 +08:00
|
|
|
assert(config->versionDefinitions.empty());
|
|
|
|
config->versionDefinitions.push_back(
|
2021-08-05 14:52:55 +08:00
|
|
|
{"local", (uint16_t)VER_NDX_LOCAL, {}, {}});
|
|
|
|
config->versionDefinitions.push_back(
|
|
|
|
{"global", (uint16_t)VER_NDX_GLOBAL, {}, {}});
|
2019-08-05 22:31:39 +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)) {
|
2021-08-05 14:52:55 +08:00
|
|
|
config->versionDefinitions[VER_NDX_LOCAL].nonLocalPatterns.push_back(
|
2019-08-05 22:31:39 +08:00
|
|
|
{"*", /*isExternCpp=*/false, /*hasWildcard=*/true});
|
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))
|
2021-08-05 14:52:55 +08:00
|
|
|
config->versionDefinitions[VER_NDX_GLOBAL].nonLocalPatterns.push_back(
|
2019-08-05 22:31:39 +08:00
|
|
|
{s, /*isExternCpp=*/false, /*hasWildcard=*/false});
|
2016-12-20 02:00:52 +08:00
|
|
|
}
|
|
|
|
|
[ELF] Add --warn-backrefs-exclude=<glob>
D77522 changed --warn-backrefs to not warn for linking sandwich
problems (-ldef1 -lref -ldef2). This removed lots of false positives.
However, glibc still has some problems. libc.a defines some symbols
which are normally in libm.a and libpthread.a, e.g. __isnanl/raise.
For a linking order `-lm -lpthread -lc`, I have seen:
```
// different resolutions: GNU ld/gold select libc.a(s_isnan.o) as the definition
backward reference detected: __isnanl in libc.a(printf_fp.o) refers to libm.a(m_isnanl.o)
// different resolutions: GNU ld/gold select libc.a(raise.o) as the definition
backward reference detected: raise in libc.a(abort.o) refers to libpthread.a(pt-raise.o)
```
To facilitate deployment of --warn-backrefs, add --warn-backrefs-exclude= so that
certain known issues (which may be impractical to fix) can be whitelisted.
Deliberate choices:
* Not a comma-separated list (`--warn-backrefs-exclude=liba.a,libb.a`).
-Wl, splits the argument at commas, so we cannot use commas.
--export-dynamic-symbol is similar.
* Not in the style of `--warn-backrefs='*' --warn-backrefs=-liba.a`.
We just need exclusion, not inclusion. For easier build system
integration, we should avoid order dependency. With the current
scheme, we enable --warn-backrefs, and indivial libraries can add
--warn-backrefs-exclude=<glob> to their LDFLAGS.
Reviewed By: psmith
Differential Revision: https://reviews.llvm.org/D77512
2020-04-05 12:31:36 +08:00
|
|
|
for (opt::Arg *arg : args.filtered(OPT_warn_backrefs_exclude)) {
|
|
|
|
StringRef pattern(arg->getValue());
|
|
|
|
if (Expected<GlobPattern> pat = GlobPattern::create(pattern))
|
|
|
|
config->warnBackrefsExclude.push_back(std::move(*pat));
|
|
|
|
else
|
|
|
|
error(arg->getSpelling() + ": " + toString(pat.takeError()));
|
|
|
|
}
|
|
|
|
|
2021-09-17 08:13:08 +08:00
|
|
|
// For -no-pie and -pie, --export-dynamic-symbol specifies defined symbols
|
|
|
|
// which should be exported. For -shared, references to matched non-local
|
|
|
|
// STV_DEFAULT symbols are not bound to definitions within the shared object,
|
|
|
|
// even if other options express a symbolic intention: -Bsymbolic,
|
|
|
|
// -Bsymbolic-functions (if STT_FUNC), --dynamic-list.
|
|
|
|
for (auto *arg : args.filtered(OPT_export_dynamic_symbol))
|
|
|
|
config->dynamicList.push_back(
|
|
|
|
{arg->getValue(), /*isExternCpp=*/false,
|
|
|
|
/*hasWildcard=*/hasWildcard(arg->getValue())});
|
|
|
|
|
|
|
|
// --export-dynamic-symbol-list specifies a list of --export-dynamic-symbol
|
|
|
|
// patterns. --dynamic-list is --export-dynamic-symbol-list plus -Bsymbolic
|
|
|
|
// like semantics.
|
2021-07-30 05:46:53 +08:00
|
|
|
config->symbolic =
|
|
|
|
config->bsymbolic == BsymbolicKind::All || args.hasArg(OPT_dynamic_list);
|
2021-08-04 00:01:03 +08:00
|
|
|
for (auto *arg :
|
|
|
|
args.filtered(OPT_dynamic_list, OPT_export_dynamic_symbol_list))
|
2020-06-02 02:27:53 +08:00
|
|
|
if (Optional<MemoryBufferRef> buffer = readFile(arg->getValue()))
|
|
|
|
readDynamicList(*buffer);
|
2017-04-12 06:37:54 +08:00
|
|
|
|
2017-12-07 11:25:39 +08:00
|
|
|
for (auto *arg : args.filtered(OPT_version_script))
|
2018-07-26 05:53:18 +08:00
|
|
|
if (Optional<std::string> path = searchScript(arg->getValue())) {
|
|
|
|
if (Optional<MemoryBufferRef> buffer = readFile(*path))
|
|
|
|
readVersionScript(*buffer);
|
|
|
|
} else {
|
|
|
|
error(Twine("cannot find version script ") + arg->getValue());
|
|
|
|
}
|
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.
|
2018-02-06 04:55:46 +08:00
|
|
|
static void setConfigs(opt::InputArgList &args) {
|
2018-09-21 05:29:14 +08:00
|
|
|
ELFKind k = config->ekind;
|
|
|
|
uint16_t m = config->emachine;
|
[Coding style change] Rename variables so that they start with a lowercase letter
This patch is mechanically generated by clang-llvm-rename tool that I wrote
using Clang Refactoring Engine just for creating this patch. You can see the
source code of the tool at https://reviews.llvm.org/D64123. There's no manual
post-processing; you can generate the same patch by re-running the tool against
lld's code base.
Here is the main discussion thread to change the LLVM coding style:
https://lists.llvm.org/pipermail/llvm-dev/2019-February/130083.html
In the discussion thread, I proposed we use lld as a testbed for variable
naming scheme change, and this patch does that.
I chose to rename variables so that they are in camelCase, just because that
is a minimal change to make variables to start with a lowercase letter.
Note to downstream patch maintainers: if you are maintaining a downstream lld
repo, just rebasing ahead of this commit would cause massive merge conflicts
because this patch essentially changes every line in the lld subdirectory. But
there's a remedy.
clang-llvm-rename tool is a batch tool, so you can rename variables in your
downstream repo with the tool. Given that, here is how to rebase your repo to
a commit after the mass renaming:
1. rebase to the commit just before the mass variable renaming,
2. apply the tool to your downstream repo to mass-rename variables locally, and
3. rebase again to the head.
Most changes made by the tool should be identical for a downstream repo and
for the head, so at the step 3, almost all changes should be merged and
disappear. I'd expect that there would be some lines that you need to merge by
hand, but that shouldn't be too many.
Differential Revision: https://reviews.llvm.org/D64121
llvm-svn: 365595
2019-07-10 13:00:37 +08:00
|
|
|
|
2017-03-18 07:29:01 +08:00
|
|
|
config->copyRelocs = (config->relocatable || config->emitRelocs);
|
2018-09-21 05:29:14 +08:00
|
|
|
config->is64 = (k == ELF64LEKind || k == ELF64BEKind);
|
|
|
|
config->isLE = (k == ELF32LEKind || k == ELF64LEKind);
|
|
|
|
config->endianness = config->isLE ? endianness::little : endianness::big;
|
|
|
|
config->isMips64EL = (k == ELF64LEKind && m == EM_MIPS);
|
2017-03-18 07:29:01 +08:00
|
|
|
config->isPic = config->pie || config->shared;
|
2019-01-16 20:09:13 +08:00
|
|
|
config->picThunk = args.hasArg(OPT_pic_veneer, config->isPic);
|
2017-03-22 08:01:11 +08:00
|
|
|
config->wordsize = config->is64 ? 8 : 4;
|
2018-06-08 08:18:32 +08:00
|
|
|
|
|
|
|
// ELF defines two different ways to store relocation addends as shown below:
|
|
|
|
//
|
2020-05-30 05:22:03 +08:00
|
|
|
// Rel: Addends are stored to the location where relocations are applied. It
|
|
|
|
// cannot pack the full range of addend values for all relocation types, but
|
|
|
|
// this only affects relocation types that we don't support emitting as
|
|
|
|
// dynamic relocations (see getDynRel).
|
2018-06-08 08:18:32 +08:00
|
|
|
// Rela: Addends are stored as part of relocation entry.
|
|
|
|
//
|
|
|
|
// In other words, Rela makes it easy to read addends at the price of extra
|
2020-05-30 05:22:03 +08:00
|
|
|
// 4 or 8 byte for each relocation entry.
|
2018-06-08 08:18:32 +08:00
|
|
|
//
|
2020-05-30 05:22:03 +08:00
|
|
|
// We pick the format for dynamic relocations according to the psABI for each
|
|
|
|
// processor, but a contrary choice can be made if the dynamic loader
|
|
|
|
// supports.
|
|
|
|
config->isRela = getIsRela(args);
|
2018-06-08 08:18:32 +08:00
|
|
|
|
2018-02-16 18:01:17 +08:00
|
|
|
// If the output uses REL relocations we must store the dynamic relocation
|
|
|
|
// addends to the output sections. We also store addends for RELA relocations
|
|
|
|
// if --apply-dynamic-relocs is used.
|
|
|
|
// We default to not writing the addends when using RELA relocations since
|
|
|
|
// any standard conforming tool can find it in r_addend.
|
2018-02-06 04:55:46 +08:00
|
|
|
config->writeAddends = args.hasFlag(OPT_apply_dynamic_relocs,
|
|
|
|
OPT_no_apply_dynamic_relocs, false) ||
|
|
|
|
!config->isRela;
|
2021-07-09 17:05:18 +08:00
|
|
|
// Validation of dynamic relocation addends is on by default for assertions
|
|
|
|
// builds (for supported targets) and disabled otherwise. Ideally we would
|
|
|
|
// enable the debug checks for all targets, but currently not all targets
|
|
|
|
// have support for reading Elf_Rel addends, so we only enable for a subset.
|
|
|
|
#ifndef NDEBUG
|
2021-07-09 17:12:43 +08:00
|
|
|
bool checkDynamicRelocsDefault = m == EM_ARM || m == EM_386 || m == EM_MIPS ||
|
|
|
|
m == EM_X86_64 || m == EM_RISCV;
|
2021-07-09 17:05:18 +08:00
|
|
|
#else
|
|
|
|
bool checkDynamicRelocsDefault = false;
|
|
|
|
#endif
|
|
|
|
config->checkDynamicRelocs =
|
|
|
|
args.hasFlag(OPT_check_dynamic_relocations,
|
|
|
|
OPT_no_check_dynamic_relocations, checkDynamicRelocsDefault);
|
2018-09-20 08:26:44 +08:00
|
|
|
config->tocOptimize =
|
2018-09-21 05:29:14 +08:00
|
|
|
args.hasFlag(OPT_toc_optimize, OPT_no_toc_optimize, m == EM_PPC64);
|
2020-08-17 22:30:14 +08:00
|
|
|
config->pcRelOptimize =
|
|
|
|
args.hasFlag(OPT_pcrel_optimize, OPT_no_pcrel_optimize, m == EM_PPC64);
|
2017-03-18 07:29:01 +08:00
|
|
|
}
|
|
|
|
|
2018-08-07 05:29:41 +08:00
|
|
|
static bool isFormatBinary(StringRef s) {
|
2016-10-20 12:36:36 +08:00
|
|
|
if (s == "binary")
|
|
|
|
return true;
|
|
|
|
if (s == "elf" || s == "default")
|
|
|
|
return false;
|
2021-10-26 03:52:06 +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) {
|
2020-11-03 22:41:09 +08:00
|
|
|
llvm::TimeTraceScope timeScope("Load input files");
|
2018-05-31 21:00:25 +08:00
|
|
|
// For --{push,pop}-state.
|
|
|
|
std::vector<std::tuple<bool, bool, bool>> stack;
|
|
|
|
|
|
|
|
// Iterate over argv to process input files and positional arguments.
|
2020-08-15 06:38:05 +08:00
|
|
|
InputFile::isInGroup = false;
|
2015-10-02 00:42:03 +08:00
|
|
|
for (auto *arg : args) {
|
Make joined instances of JoinedOrSeparate flags point to the unaliased args, like all other arg types do
This fixes an 8-year-old regression. r105763 made it so that aliases
always refer to the unaliased option – but it missed the "joined" branch
of JoinedOrSeparate flags. (r162231 then made the Args classes
non-virtual, and r169344 moved them from clang to llvm.)
Back then, there was no JoinedOrSeparate flag that was an alias, so it
wasn't observable. Now /U in CLCompatOptions is a JoinedOrSeparate alias
in clang, and warn_slash_u_filename incorrectly used the aliased arg id
(using the unaliased one isn't really a regression since that warning
checks if the undefined macro contains slash or backslash and only then
emits the warning – and no valid use will pass "-Ufoo/bar" or similar).
Also, lld has many JoinedOrSeparate aliases, and due to this bug it had
to explicitly call `getUnaliasedOption()` in a bunch of places, even
though that shouldn't be necessary by design. After this fix in Option,
these calls really don't have an effect any more, so remove them.
No intended behavior change.
(I accidentally fixed this bug while working on PR29106 but then
wondered why the warn_slash_u_filename broke. When I figured it out, I
thought it would make sense to land this in a separate commit.)
Differential Revision: https://reviews.llvm.org/D64156
llvm-svn: 365186
2019-07-05 19:45:24 +08:00
|
|
|
switch (arg->getOption().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:
|
2019-07-16 12:46:31 +08:00
|
|
|
addFile(arg->getValue(), /*withLOption=*/false);
|
2015-10-02 00:42:03 +08:00
|
|
|
break;
|
2018-01-17 18:24:49 +08:00
|
|
|
case OPT_defsym: {
|
|
|
|
StringRef from;
|
|
|
|
StringRef to;
|
|
|
|
std::tie(from, to) = StringRef(arg->getValue()).split('=');
|
2018-08-10 14:32:39 +08:00
|
|
|
if (from.empty() || to.empty())
|
2021-10-26 05:01:36 +08:00
|
|
|
error("--defsym: syntax error: " + StringRef(arg->getValue()));
|
2018-08-10 14:32:39 +08:00
|
|
|
else
|
2021-10-26 05:01:36 +08:00
|
|
|
readDefsym(from, MemoryBufferRef(to, "--defsym"));
|
2018-01-17 18:24:49 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-09-10 06:08:04 +08:00
|
|
|
case OPT_script:
|
2018-07-26 05:53:18 +08:00
|
|
|
if (Optional<std::string> path = searchScript(arg->getValue())) {
|
2017-11-20 23:43:20 +08:00
|
|
|
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:
|
2018-04-04 16:13:28 +08:00
|
|
|
config->asNeeded = true;
|
2015-10-12 04:59:12 +08:00
|
|
|
break;
|
2016-10-20 12:36:36 +08:00
|
|
|
case OPT_format:
|
2018-08-07 05:29:41 +08:00
|
|
|
config->formatBinary = isFormatBinary(arg->getValue());
|
2016-09-10 06:08:04 +08:00
|
|
|
break;
|
2018-04-04 16:13:28 +08:00
|
|
|
case OPT_no_as_needed:
|
|
|
|
config->asNeeded = false;
|
|
|
|
break;
|
2015-10-02 00:42:03 +08:00
|
|
|
case OPT_Bstatic:
|
2019-05-14 00:01:26 +08:00
|
|
|
case OPT_omagic:
|
|
|
|
case OPT_nmagic:
|
2018-04-04 16:13:28 +08:00
|
|
|
config->isStatic = true;
|
|
|
|
break;
|
2015-10-02 00:42:03 +08:00
|
|
|
case OPT_Bdynamic:
|
2018-04-04 16:13:28 +08:00
|
|
|
config->isStatic = false;
|
2015-10-02 00:42:03 +08:00
|
|
|
break;
|
2015-10-02 02:02:21 +08:00
|
|
|
case OPT_whole_archive:
|
2018-04-04 16:13:28 +08:00
|
|
|
inWholeArchive = true;
|
|
|
|
break;
|
2015-10-02 02:02:21 +08:00
|
|
|
case OPT_no_whole_archive:
|
2018-04-04 16:13:28 +08:00
|
|
|
inWholeArchive = false;
|
2015-10-02 02:02:21 +08:00
|
|
|
break;
|
2018-03-30 09:15:36 +08:00
|
|
|
case OPT_just_symbols:
|
|
|
|
if (Optional<MemoryBufferRef> mb = readFile(arg->getValue())) {
|
|
|
|
files.push_back(createObjectFile(*mb));
|
|
|
|
files.back()->justSymbols = true;
|
|
|
|
}
|
|
|
|
break;
|
Add --warn-backrefs to maintain compatibility with other linkers
I'm proposing a new command line flag, --warn-backrefs in this patch.
The flag and the feature proposed below don't exist in GNU linkers
nor the current lld.
--warn-backrefs is an option to detect reverse or cyclic dependencies
between static archives, and it can be used to keep your program
compatible with GNU linkers after you switch to lld. I'll explain the
feature and why you may find it useful below.
lld's symbol resolution semantics is more relaxed than traditional
Unix linkers. Therefore,
ld.lld foo.a bar.o
succeeds even if bar.o contains an undefined symbol that have to be
resolved by some object file in foo.a. Traditional Unix linkers
don't allow this kind of backward reference, as they visit each
file only once from left to right in the command line while
resolving all undefined symbol at the moment of visiting.
In the above case, since there's no undefined symbol when a linker
visits foo.a, no files are pulled out from foo.a, and because the
linker forgets about foo.a after visiting, it can't resolve
undefined symbols that could have been resolved otherwise.
That lld accepts more relaxed form means (besides it makes more
sense) that you can accidentally write a command line or a build
file that works only with lld, even if you have a plan to
distribute it to wider users who may be using GNU linkers. With
--check-library-dependency, you can detect a library order that
doesn't work with other Unix linkers.
The option is also useful to detect cyclic dependencies between
static archives. Again, lld accepts
ld.lld foo.a bar.a
even if foo.a and bar.a depend on each other. With --warn-backrefs
it is handled as an error.
Here is how the option works. We assign a group ID to each file. A
file with a smaller group ID can pull out object files from an
archive file with an equal or greater group ID. Otherwise, it is a
reverse dependency and an error.
A file outside --{start,end}-group gets a fresh ID when
instantiated. All files within the same --{start,end}-group get the
same group ID. E.g.
ld.lld A B --start-group C D --end-group E
A and B form group 0, C, D and their member object files form group
1, and E forms group 2. I think that you can see how this group
assignment rule simulates the traditional linker's semantics.
Differential Revision: https://reviews.llvm.org/D45195
llvm-svn: 329636
2018-04-10 07:05:48 +08:00
|
|
|
case OPT_start_group:
|
|
|
|
if (InputFile::isInGroup)
|
|
|
|
error("nested --start-group");
|
|
|
|
InputFile::isInGroup = true;
|
|
|
|
break;
|
|
|
|
case OPT_end_group:
|
|
|
|
if (!InputFile::isInGroup)
|
|
|
|
error("stray --end-group");
|
|
|
|
InputFile::isInGroup = false;
|
2018-04-20 07:23:23 +08:00
|
|
|
++InputFile::nextGroupId;
|
Add --warn-backrefs to maintain compatibility with other linkers
I'm proposing a new command line flag, --warn-backrefs in this patch.
The flag and the feature proposed below don't exist in GNU linkers
nor the current lld.
--warn-backrefs is an option to detect reverse or cyclic dependencies
between static archives, and it can be used to keep your program
compatible with GNU linkers after you switch to lld. I'll explain the
feature and why you may find it useful below.
lld's symbol resolution semantics is more relaxed than traditional
Unix linkers. Therefore,
ld.lld foo.a bar.o
succeeds even if bar.o contains an undefined symbol that have to be
resolved by some object file in foo.a. Traditional Unix linkers
don't allow this kind of backward reference, as they visit each
file only once from left to right in the command line while
resolving all undefined symbol at the moment of visiting.
In the above case, since there's no undefined symbol when a linker
visits foo.a, no files are pulled out from foo.a, and because the
linker forgets about foo.a after visiting, it can't resolve
undefined symbols that could have been resolved otherwise.
That lld accepts more relaxed form means (besides it makes more
sense) that you can accidentally write a command line or a build
file that works only with lld, even if you have a plan to
distribute it to wider users who may be using GNU linkers. With
--check-library-dependency, you can detect a library order that
doesn't work with other Unix linkers.
The option is also useful to detect cyclic dependencies between
static archives. Again, lld accepts
ld.lld foo.a bar.a
even if foo.a and bar.a depend on each other. With --warn-backrefs
it is handled as an error.
Here is how the option works. We assign a group ID to each file. A
file with a smaller group ID can pull out object files from an
archive file with an equal or greater group ID. Otherwise, it is a
reverse dependency and an error.
A file outside --{start,end}-group gets a fresh ID when
instantiated. All files within the same --{start,end}-group get the
same group ID. E.g.
ld.lld A B --start-group C D --end-group E
A and B form group 0, C, D and their member object files form group
1, and E forms group 2. I think that you can see how this group
assignment rule simulates the traditional linker's semantics.
Differential Revision: https://reviews.llvm.org/D45195
llvm-svn: 329636
2018-04-10 07:05:48 +08:00
|
|
|
break;
|
2016-04-08 03:24:51 +08:00
|
|
|
case OPT_start_lib:
|
2018-04-21 00:33:01 +08:00
|
|
|
if (inLib)
|
|
|
|
error("nested --start-lib");
|
|
|
|
if (InputFile::isInGroup)
|
|
|
|
error("may not nest --start-lib in --start-group");
|
2018-04-04 16:13:28 +08:00
|
|
|
inLib = true;
|
2018-04-21 00:33:01 +08:00
|
|
|
InputFile::isInGroup = true;
|
2018-04-04 16:13:28 +08:00
|
|
|
break;
|
2016-04-08 03:24:51 +08:00
|
|
|
case OPT_end_lib:
|
2018-04-21 00:33:01 +08:00
|
|
|
if (!inLib)
|
|
|
|
error("stray --end-lib");
|
2018-04-04 16:13:28 +08:00
|
|
|
inLib = false;
|
2018-04-21 00:33:01 +08:00
|
|
|
InputFile::isInGroup = false;
|
|
|
|
++InputFile::nextGroupId;
|
2016-04-08 03:24:51 +08:00
|
|
|
break;
|
2018-05-31 21:00:25 +08:00
|
|
|
case OPT_push_state:
|
2018-05-31 21:24:01 +08:00
|
|
|
stack.emplace_back(config->asNeeded, config->isStatic, inWholeArchive);
|
2018-05-31 21:00:25 +08:00
|
|
|
break;
|
|
|
|
case OPT_pop_state:
|
|
|
|
if (stack.empty()) {
|
|
|
|
error("unbalanced --push-state/--pop-state");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
std::tie(config->asNeeded, config->isStatic, inWholeArchive) = stack.back();
|
|
|
|
stack.pop_back();
|
|
|
|
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");
|
2019-05-14 00:01:26 +08:00
|
|
|
if (config->nmagic || config->omagic) {
|
|
|
|
if (val != target->defaultMaxPageSize)
|
|
|
|
warn("-z max-page-size set, but paging disabled by omagic or nmagic");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse -z common-page-size=<value>. The default value is defined by
|
|
|
|
// each target.
|
|
|
|
static uint64_t getCommonPageSize(opt::InputArgList &args) {
|
|
|
|
uint64_t val = args::getZOptionValue(args, OPT_z, "common-page-size",
|
|
|
|
target->defaultCommonPageSize);
|
|
|
|
if (!isPowerOf2_64(val))
|
|
|
|
error("common-page-size: value isn't a power of 2");
|
|
|
|
if (config->nmagic || config->omagic) {
|
|
|
|
if (val != target->defaultCommonPageSize)
|
|
|
|
warn("-z common-page-size set, but paging disabled by omagic or nmagic");
|
|
|
|
return 1;
|
|
|
|
}
|
2019-07-16 13:50:45 +08:00
|
|
|
// commonPageSize can't be larger than maxPageSize.
|
2019-05-14 00:01:26 +08:00
|
|
|
if (val > config->maxPageSize)
|
|
|
|
val = config->maxPageSize;
|
2016-12-09 01:44:37 +08:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2021-10-26 03:52:06 +08:00
|
|
|
// Parses --image-base option.
|
2017-10-10 18:09:35 +08:00
|
|
|
static Optional<uint64_t> getImageBase(opt::InputArgList &args) {
|
2019-07-16 13:50:45 +08:00
|
|
|
// Because we are using "Config->maxPageSize" here, this function has to be
|
2017-10-10 18:09:35 +08:00
|
|
|
// 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)) {
|
2021-10-26 05:01:36 +08:00
|
|
|
error("--image-base: number expected, but got " + s);
|
2016-10-26 12:34:16 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2016-12-08 04:29:46 +08:00
|
|
|
if ((v % config->maxPageSize) != 0)
|
2021-10-26 05:01:36 +08:00
|
|
|
warn("--image-base: address isn't multiple of page size: " + s);
|
2016-10-26 12:34:16 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-10-26 03:52:06 +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
|
2017-06-21 23:36:24 +08:00
|
|
|
// 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.
|
2018-02-17 04:23:54 +08:00
|
|
|
static void excludeLibs(opt::InputArgList &args) {
|
2017-06-21 23:36:24 +08:00
|
|
|
DenseSet<StringRef> libs = getExcludeLibs(args);
|
|
|
|
bool all = libs.count("ALL");
|
[Coding style change] Rename variables so that they start with a lowercase letter
This patch is mechanically generated by clang-llvm-rename tool that I wrote
using Clang Refactoring Engine just for creating this patch. You can see the
source code of the tool at https://reviews.llvm.org/D64123. There's no manual
post-processing; you can generate the same patch by re-running the tool against
lld's code base.
Here is the main discussion thread to change the LLVM coding style:
https://lists.llvm.org/pipermail/llvm-dev/2019-February/130083.html
In the discussion thread, I proposed we use lld as a testbed for variable
naming scheme change, and this patch does that.
I chose to rename variables so that they are in camelCase, just because that
is a minimal change to make variables to start with a lowercase letter.
Note to downstream patch maintainers: if you are maintaining a downstream lld
repo, just rebasing ahead of this commit would cause massive merge conflicts
because this patch essentially changes every line in the lld subdirectory. But
there's a remedy.
clang-llvm-rename tool is a batch tool, so you can rename variables in your
downstream repo with the tool. Given that, here is how to rebase your repo to
a commit after the mass renaming:
1. rebase to the commit just before the mass variable renaming,
2. apply the tool to your downstream repo to mass-rename variables locally, and
3. rebase again to the head.
Most changes made by the tool should be identical for a downstream repo and
for the head, so at the step 3, almost all changes should be merged and
disappear. I'd expect that there would be some lines that you need to merge by
hand, but that shouldn't be too many.
Differential Revision: https://reviews.llvm.org/D64121
llvm-svn: 365595
2019-07-10 13:00:37 +08:00
|
|
|
|
2018-07-12 01:45:28 +08:00
|
|
|
auto visit = [&](InputFile *file) {
|
2018-02-17 04:23:54 +08:00
|
|
|
if (!file->archiveName.empty())
|
|
|
|
if (all || libs.count(path::filename(file->archiveName)))
|
2017-11-04 05:21:47 +08:00
|
|
|
for (Symbol *sym : file->getSymbols())
|
2020-01-14 13:30:05 +08:00
|
|
|
if (!sym->isUndefined() && !sym->isLocal() && sym->file == file)
|
2017-11-01 00:07:41 +08:00
|
|
|
sym->versionId = VER_NDX_LOCAL;
|
2018-07-12 01:45:28 +08:00
|
|
|
};
|
|
|
|
|
2021-12-15 16:37:10 +08:00
|
|
|
for (ELFFileBase *file : objectFiles)
|
2018-07-12 01:45:28 +08:00
|
|
|
visit(file);
|
|
|
|
|
|
|
|
for (BitcodeFile *file : bitcodeFiles)
|
|
|
|
visit(file);
|
2017-06-21 23:36:24 +08:00
|
|
|
}
|
|
|
|
|
2020-06-05 23:41:03 +08:00
|
|
|
// Force Sym to be entered in the output.
|
2021-09-21 00:52:30 +08:00
|
|
|
static void handleUndefined(Symbol *sym, const char *option) {
|
2019-06-14 22:00:59 +08:00
|
|
|
// Since a symbol may not be used inside the program, LTO may
|
2018-04-04 02:01:18 +08:00
|
|
|
// eliminate it. Mark the symbol as "used" to prevent it.
|
|
|
|
sym->isUsedInRegularObj = true;
|
|
|
|
|
2021-09-21 00:52:30 +08:00
|
|
|
if (!sym->isLazy())
|
|
|
|
return;
|
2021-11-27 02:58:50 +08:00
|
|
|
sym->extract();
|
2021-09-21 00:52:30 +08:00
|
|
|
if (!config->whyExtract.empty())
|
|
|
|
whyExtract.emplace_back(option, sym->file, *sym);
|
2018-04-04 02:01:18 +08:00
|
|
|
}
|
|
|
|
|
2019-10-29 09:41:38 +08:00
|
|
|
// As an extension to GNU linkers, lld supports a variant of `-u`
|
2019-06-14 22:00:59 +08:00
|
|
|
// which accepts wildcard patterns. All symbols that match a given
|
|
|
|
// pattern are handled as if they were given by `-u`.
|
|
|
|
static void handleUndefinedGlob(StringRef arg) {
|
|
|
|
Expected<GlobPattern> pat = GlobPattern::create(arg);
|
|
|
|
if (!pat) {
|
|
|
|
error("--undefined-glob: " + toString(pat.takeError()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-11-27 02:58:50 +08:00
|
|
|
// Calling sym->extract() in the loop is not safe because it may add new
|
|
|
|
// symbols to the symbol table, invalidating the current iterator.
|
2019-06-14 22:00:59 +08:00
|
|
|
std::vector<Symbol *> syms;
|
2021-11-27 02:58:50 +08:00
|
|
|
for (Symbol *sym : symtab->symbols())
|
2019-06-14 22:00:59 +08:00
|
|
|
if (pat->match(sym->getName()))
|
|
|
|
syms.push_back(sym);
|
|
|
|
|
|
|
|
for (Symbol *sym : syms)
|
2021-09-21 00:52:30 +08:00
|
|
|
handleUndefined(sym, "--undefined-glob");
|
2019-06-14 22:00:59 +08:00
|
|
|
}
|
|
|
|
|
2019-05-16 11:45:13 +08:00
|
|
|
static void handleLibcall(StringRef name) {
|
2018-08-09 07:48:12 +08:00
|
|
|
Symbol *sym = symtab->find(name);
|
|
|
|
if (!sym || !sym->isLazy())
|
|
|
|
return;
|
|
|
|
|
|
|
|
MemoryBufferRef mb;
|
|
|
|
if (auto *lo = dyn_cast<LazyObject>(sym))
|
|
|
|
mb = lo->file->mb;
|
|
|
|
else
|
|
|
|
mb = cast<LazyArchive>(sym)->getMemberBuffer();
|
|
|
|
|
|
|
|
if (isBitcode(mb))
|
2021-11-27 02:58:50 +08:00
|
|
|
sym->extract();
|
2018-08-09 07:48:12 +08:00
|
|
|
}
|
|
|
|
|
2020-06-24 11:00:04 +08:00
|
|
|
// Handle --dependency-file=<path>. If that option is given, lld creates a
|
|
|
|
// file at a given path with the following contents:
|
|
|
|
//
|
|
|
|
// <output-file>: <input-file> ...
|
|
|
|
//
|
|
|
|
// <input-file>:
|
|
|
|
//
|
|
|
|
// where <output-file> is a pathname of an output file and <input-file>
|
|
|
|
// ... is a list of pathnames of all input files. `make` command can read a
|
|
|
|
// file in the above format and interpret it as a dependency info. We write
|
|
|
|
// phony targets for every <input-file> to avoid an error when that file is
|
|
|
|
// removed.
|
|
|
|
//
|
|
|
|
// This option is useful if you want to make your final executable to depend
|
|
|
|
// on all input files including system libraries. Here is why.
|
|
|
|
//
|
|
|
|
// When you write a Makefile, you usually write it so that the final
|
|
|
|
// executable depends on all user-generated object files. Normally, you
|
|
|
|
// don't make your executable to depend on system libraries (such as libc)
|
|
|
|
// because you don't know the exact paths of libraries, even though system
|
|
|
|
// libraries that are linked to your executable statically are technically a
|
|
|
|
// part of your program. By using --dependency-file option, you can make
|
|
|
|
// lld to dump dependency info so that you can maintain exact dependencies
|
|
|
|
// easily.
|
|
|
|
static void writeDependencyFile() {
|
|
|
|
std::error_code ec;
|
2021-04-29 09:18:35 +08:00
|
|
|
raw_fd_ostream os(config->dependencyFile, ec, sys::fs::OF_None);
|
2020-06-24 11:00:04 +08:00
|
|
|
if (ec) {
|
|
|
|
error("cannot open " + config->dependencyFile + ": " + ec.message());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We use the same escape rules as Clang/GCC which are accepted by Make/Ninja:
|
|
|
|
// * A space is escaped by a backslash which itself must be escaped.
|
|
|
|
// * A hash sign is escaped by a single backslash.
|
|
|
|
// * $ is escapes as $$.
|
|
|
|
auto printFilename = [](raw_fd_ostream &os, StringRef filename) {
|
|
|
|
llvm::SmallString<256> nativePath;
|
|
|
|
llvm::sys::path::native(filename.str(), nativePath);
|
|
|
|
llvm::sys::path::remove_dots(nativePath, /*remove_dot_dot=*/true);
|
|
|
|
for (unsigned i = 0, e = nativePath.size(); i != e; ++i) {
|
|
|
|
if (nativePath[i] == '#') {
|
|
|
|
os << '\\';
|
|
|
|
} else if (nativePath[i] == ' ') {
|
|
|
|
os << '\\';
|
|
|
|
unsigned j = i;
|
|
|
|
while (j > 0 && nativePath[--j] == '\\')
|
|
|
|
os << '\\';
|
|
|
|
} else if (nativePath[i] == '$') {
|
|
|
|
os << '$';
|
|
|
|
}
|
|
|
|
os << nativePath[i];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
os << config->outputFile << ":";
|
|
|
|
for (StringRef path : config->dependencyFiles) {
|
|
|
|
os << " \\\n ";
|
|
|
|
printFilename(os, path);
|
|
|
|
}
|
|
|
|
os << "\n";
|
|
|
|
|
|
|
|
for (StringRef path : config->dependencyFiles) {
|
|
|
|
os << "\n";
|
|
|
|
printFilename(os, path);
|
|
|
|
os << ":\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 11:29:03 +08:00
|
|
|
// Replaces common symbols with defined symbols reside in .bss sections.
|
|
|
|
// This function is called after all symbol names are resolved. As a
|
|
|
|
// result, the passes after the symbol resolution won't see any
|
|
|
|
// symbols of type CommonSymbol.
|
|
|
|
static void replaceCommonSymbols() {
|
2020-11-03 22:41:09 +08:00
|
|
|
llvm::TimeTraceScope timeScope("Replace common symbols");
|
2019-11-21 03:16:15 +08:00
|
|
|
for (Symbol *sym : symtab->symbols()) {
|
2019-05-16 11:29:03 +08:00
|
|
|
auto *s = dyn_cast<CommonSymbol>(sym);
|
|
|
|
if (!s)
|
2019-11-21 03:16:15 +08:00
|
|
|
continue;
|
2019-05-16 11:29:03 +08:00
|
|
|
|
|
|
|
auto *bss = make<BssSection>("COMMON", s->size, s->alignment);
|
|
|
|
bss->file = s->file;
|
2019-05-29 11:55:20 +08:00
|
|
|
bss->markDead();
|
2019-05-16 11:29:03 +08:00
|
|
|
inputSections.push_back(bss);
|
2019-05-20 11:36:33 +08:00
|
|
|
s->replace(Defined{s->file, s->getName(), s->binding, s->stOther, s->type,
|
2019-07-16 12:46:31 +08:00
|
|
|
/*value=*/0, s->size, bss});
|
2019-11-21 03:16:15 +08:00
|
|
|
}
|
2019-05-16 11:29:03 +08:00
|
|
|
}
|
|
|
|
|
2018-09-12 07:00:36 +08:00
|
|
|
// If all references to a DSO happen to be weak, the DSO is not added
|
|
|
|
// to DT_NEEDED. If that happens, we need to eliminate shared symbols
|
|
|
|
// created from the DSO. Otherwise, they become dangling references
|
|
|
|
// that point to a non-existent DSO.
|
2019-04-09 01:35:55 +08:00
|
|
|
static void demoteSharedSymbols() {
|
2020-11-03 22:41:09 +08:00
|
|
|
llvm::TimeTraceScope timeScope("Demote shared symbols");
|
2019-11-21 03:16:15 +08:00
|
|
|
for (Symbol *sym : symtab->symbols()) {
|
2019-05-16 10:14:00 +08:00
|
|
|
auto *s = dyn_cast<SharedSymbol>(sym);
|
2021-10-12 00:46:31 +08:00
|
|
|
if (!((s && !s->getFile().isNeeded) ||
|
|
|
|
(sym->isLazy() && sym->isUsedInRegularObj)))
|
2019-11-21 03:16:15 +08:00
|
|
|
continue;
|
2019-05-16 10:14:00 +08:00
|
|
|
|
2021-10-12 00:46:31 +08:00
|
|
|
bool used = sym->used;
|
|
|
|
sym->replace(
|
|
|
|
Undefined{nullptr, sym->getName(), STB_WEAK, sym->stOther, sym->type});
|
|
|
|
sym->used = used;
|
|
|
|
sym->versionId = VER_NDX_GLOBAL;
|
2019-11-21 03:16:15 +08:00
|
|
|
}
|
2018-04-25 08:29:13 +08:00
|
|
|
}
|
|
|
|
|
2019-07-16 13:50:45 +08:00
|
|
|
// The section referred to by `s` is considered address-significant. Set the
|
|
|
|
// keepUnique flag on the section if appropriate.
|
2018-07-21 10:14:59 +08:00
|
|
|
static void markAddrsig(Symbol *s) {
|
|
|
|
if (auto *d = dyn_cast_or_null<Defined>(s))
|
|
|
|
if (d->section)
|
|
|
|
// We don't need to keep text sections unique under --icf=all even if they
|
|
|
|
// are address-significant.
|
|
|
|
if (config->icf == ICFLevel::Safe || !(d->section->flags & SHF_EXECINSTR))
|
|
|
|
d->section->keepUnique = true;
|
2018-07-19 06:49:31 +08:00
|
|
|
}
|
|
|
|
|
2018-05-15 16:57:21 +08:00
|
|
|
// Record sections that define symbols mentioned in --keep-unique <symbol>
|
2018-07-19 06:49:31 +08:00
|
|
|
// and symbols referred to by address-significance tables. These sections are
|
|
|
|
// ineligible for ICF.
|
|
|
|
template <class ELFT>
|
2018-05-15 16:57:21 +08:00
|
|
|
static void findKeepUniqueSections(opt::InputArgList &args) {
|
|
|
|
for (auto *arg : args.filtered(OPT_keep_unique)) {
|
|
|
|
StringRef name = arg->getValue();
|
2018-07-21 10:14:59 +08:00
|
|
|
auto *d = dyn_cast_or_null<Defined>(symtab->find(name));
|
|
|
|
if (!d || !d->section) {
|
2018-05-15 16:57:21 +08:00
|
|
|
warn("could not find symbol " + name + " to keep unique");
|
2018-07-21 10:14:59 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
d->section->keepUnique = true;
|
2018-05-15 16:57:21 +08:00
|
|
|
}
|
2018-07-19 06:49:31 +08:00
|
|
|
|
2018-07-21 10:14:59 +08:00
|
|
|
// --icf=all --ignore-data-address-equality means that we can ignore
|
|
|
|
// the dynsym and address-significance tables entirely.
|
|
|
|
if (config->icf == ICFLevel::All && config->ignoreDataAddressEquality)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Symbols in the dynsym could be address-significant in other executables
|
|
|
|
// or DSOs, so we conservatively mark them as address-significant.
|
2019-11-21 03:16:15 +08:00
|
|
|
for (Symbol *sym : symtab->symbols())
|
2019-05-28 14:33:06 +08:00
|
|
|
if (sym->includeInDynsym())
|
|
|
|
markAddrsig(sym);
|
2018-07-21 10:14:59 +08:00
|
|
|
|
|
|
|
// Visit the address-significance table in each object file and mark each
|
|
|
|
// referenced symbol as address-significant.
|
|
|
|
for (InputFile *f : objectFiles) {
|
|
|
|
auto *obj = cast<ObjFile<ELFT>>(f);
|
|
|
|
ArrayRef<Symbol *> syms = obj->getSymbols();
|
|
|
|
if (obj->addrsigSec) {
|
|
|
|
ArrayRef<uint8_t> contents =
|
2020-09-09 22:03:53 +08:00
|
|
|
check(obj->getObj().getSectionContents(*obj->addrsigSec));
|
2018-07-21 10:14:59 +08:00
|
|
|
const uint8_t *cur = contents.begin();
|
|
|
|
while (cur != contents.end()) {
|
|
|
|
unsigned size;
|
|
|
|
const char *err;
|
|
|
|
uint64_t symIndex = decodeULEB128(cur, &size, contents.end(), &err);
|
|
|
|
if (err)
|
|
|
|
fatal(toString(f) + ": could not decode addrsig section: " + err);
|
|
|
|
markAddrsig(syms[symIndex]);
|
|
|
|
cur += size;
|
2018-07-19 06:49:31 +08:00
|
|
|
}
|
2018-07-21 10:14:59 +08:00
|
|
|
} else {
|
|
|
|
// If an object file does not have an address-significance table,
|
|
|
|
// conservatively mark all of its symbols as address-significant.
|
|
|
|
for (Symbol *s : syms)
|
|
|
|
markAddrsig(s);
|
2018-07-19 06:49:31 +08:00
|
|
|
}
|
|
|
|
}
|
2018-05-15 16:57:21 +08:00
|
|
|
}
|
|
|
|
|
2019-05-29 11:55:20 +08:00
|
|
|
// This function reads a symbol partition specification section. These sections
|
|
|
|
// are used to control which partition a symbol is allocated to. See
|
|
|
|
// https://lld.llvm.org/Partitions.html for more details on partitions.
|
|
|
|
template <typename ELFT>
|
|
|
|
static void readSymbolPartitionSection(InputSectionBase *s) {
|
|
|
|
// Read the relocation that refers to the partition's entry point symbol.
|
|
|
|
Symbol *sym;
|
2021-10-28 00:51:06 +08:00
|
|
|
const RelsOrRelas<ELFT> rels = s->template relsOrRelas<ELFT>();
|
|
|
|
if (rels.areRelocsRel())
|
|
|
|
sym = &s->getFile<ELFT>()->getRelocTargetSym(rels.rels[0]);
|
2019-05-29 11:55:20 +08:00
|
|
|
else
|
2021-10-28 00:51:06 +08:00
|
|
|
sym = &s->getFile<ELFT>()->getRelocTargetSym(rels.relas[0]);
|
2019-05-29 11:55:20 +08:00
|
|
|
if (!isa<Defined>(sym) || !sym->includeInDynsym())
|
|
|
|
return;
|
|
|
|
|
|
|
|
StringRef partName = reinterpret_cast<const char *>(s->data().data());
|
|
|
|
for (Partition &part : partitions) {
|
|
|
|
if (part.name == partName) {
|
|
|
|
sym->partition = part.getNumber();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Forbid partitions from being used on incompatible targets, and forbid them
|
|
|
|
// from being used together with various linker features that assume a single
|
|
|
|
// set of output sections.
|
|
|
|
if (script->hasSectionsCommand)
|
|
|
|
error(toString(s->file) +
|
|
|
|
": partitions cannot be used with the SECTIONS command");
|
|
|
|
if (script->hasPhdrsCommands())
|
|
|
|
error(toString(s->file) +
|
|
|
|
": partitions cannot be used with the PHDRS command");
|
|
|
|
if (!config->sectionStartMap.empty())
|
|
|
|
error(toString(s->file) + ": partitions cannot be used with "
|
|
|
|
"--section-start, -Ttext, -Tdata or -Tbss");
|
|
|
|
if (config->emachine == EM_MIPS)
|
|
|
|
error(toString(s->file) + ": partitions cannot be used on this target");
|
|
|
|
|
|
|
|
// Impose a limit of no more than 254 partitions. This limit comes from the
|
|
|
|
// sizes of the Partition fields in InputSectionBase and Symbol, as well as
|
|
|
|
// the amount of space devoted to the partition number in RankFlags.
|
|
|
|
if (partitions.size() == 254)
|
|
|
|
fatal("may not have more than 254 partitions");
|
|
|
|
|
|
|
|
partitions.emplace_back();
|
|
|
|
Partition &newPart = partitions.back();
|
|
|
|
newPart.name = partName;
|
|
|
|
sym->partition = newPart.getNumber();
|
|
|
|
}
|
|
|
|
|
2019-05-30 22:50:10 +08:00
|
|
|
static Symbol *addUndefined(StringRef name) {
|
2019-05-17 09:55:20 +08:00
|
|
|
return symtab->addSymbol(
|
2019-05-16 10:14:00 +08:00
|
|
|
Undefined{nullptr, name, STB_GLOBAL, STV_DEFAULT, 0});
|
2018-10-12 04:34:29 +08:00
|
|
|
}
|
|
|
|
|
2021-04-17 15:29:51 +08:00
|
|
|
static Symbol *addUnusedUndefined(StringRef name,
|
|
|
|
uint8_t binding = STB_GLOBAL) {
|
|
|
|
Undefined sym{nullptr, name, binding, STV_DEFAULT, 0};
|
2020-06-05 23:41:03 +08:00
|
|
|
sym.isUsedInRegularObj = false;
|
|
|
|
return symtab->addSymbol(sym);
|
|
|
|
}
|
|
|
|
|
2019-05-23 17:26:27 +08:00
|
|
|
// This function is where all the optimizations of link-time
|
|
|
|
// optimization takes place. When LTO is in use, some input files are
|
|
|
|
// not in native object file format but in the LLVM bitcode format.
|
|
|
|
// This function compiles bitcode files into a few big native files
|
|
|
|
// using LLVM functions and replaces bitcode symbols with the results.
|
|
|
|
// Because all bitcode files that the program consists of are passed to
|
|
|
|
// the compiler at once, it can do a whole-program optimization.
|
|
|
|
template <class ELFT> void LinkerDriver::compileBitcodeFiles() {
|
2020-01-29 00:05:13 +08:00
|
|
|
llvm::TimeTraceScope timeScope("LTO");
|
2019-05-23 17:26:27 +08:00
|
|
|
// Compile bitcode files and replace bitcode symbols.
|
|
|
|
lto.reset(new BitcodeCompiler);
|
|
|
|
for (BitcodeFile *file : bitcodeFiles)
|
|
|
|
lto->add(*file);
|
[Coding style change] Rename variables so that they start with a lowercase letter
This patch is mechanically generated by clang-llvm-rename tool that I wrote
using Clang Refactoring Engine just for creating this patch. You can see the
source code of the tool at https://reviews.llvm.org/D64123. There's no manual
post-processing; you can generate the same patch by re-running the tool against
lld's code base.
Here is the main discussion thread to change the LLVM coding style:
https://lists.llvm.org/pipermail/llvm-dev/2019-February/130083.html
In the discussion thread, I proposed we use lld as a testbed for variable
naming scheme change, and this patch does that.
I chose to rename variables so that they are in camelCase, just because that
is a minimal change to make variables to start with a lowercase letter.
Note to downstream patch maintainers: if you are maintaining a downstream lld
repo, just rebasing ahead of this commit would cause massive merge conflicts
because this patch essentially changes every line in the lld subdirectory. But
there's a remedy.
clang-llvm-rename tool is a batch tool, so you can rename variables in your
downstream repo with the tool. Given that, here is how to rebase your repo to
a commit after the mass renaming:
1. rebase to the commit just before the mass variable renaming,
2. apply the tool to your downstream repo to mass-rename variables locally, and
3. rebase again to the head.
Most changes made by the tool should be identical for a downstream repo and
for the head, so at the step 3, almost all changes should be merged and
disappear. I'd expect that there would be some lines that you need to merge by
hand, but that shouldn't be too many.
Differential Revision: https://reviews.llvm.org/D64121
llvm-svn: 365595
2019-07-10 13:00:37 +08:00
|
|
|
|
2019-05-23 17:26:27 +08:00
|
|
|
for (InputFile *file : lto->compile()) {
|
|
|
|
auto *obj = cast<ObjFile<ELFT>>(file);
|
2019-07-16 12:46:31 +08:00
|
|
|
obj->parse(/*ignoreComdats=*/true);
|
2020-06-24 23:22:17 +08:00
|
|
|
|
|
|
|
// Parse '@' in symbol names for non-relocatable output.
|
|
|
|
if (!config->relocatable)
|
|
|
|
for (Symbol *sym : obj->getGlobalSymbols())
|
|
|
|
sym->parseSymbolVersion();
|
2021-12-15 16:37:10 +08:00
|
|
|
objectFiles.push_back(obj);
|
2019-05-23 17:26:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
// The --wrap option is a feature to rename symbols so that you can write
|
2021-10-26 03:52:06 +08:00
|
|
|
// wrappers for existing functions. If you pass `--wrap=foo`, all
|
2020-10-06 18:23:57 +08:00
|
|
|
// occurrences of symbol `foo` are resolved to `__wrap_foo` (so, you are
|
|
|
|
// expected to write `__wrap_foo` function as a wrapper). The original
|
|
|
|
// symbol becomes accessible as `__real_foo`, so you can call that from your
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
// wrapper.
|
|
|
|
//
|
2021-10-26 03:52:06 +08:00
|
|
|
// This data structure is instantiated for each --wrap option.
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
struct WrappedSymbol {
|
|
|
|
Symbol *sym;
|
|
|
|
Symbol *real;
|
|
|
|
Symbol *wrap;
|
|
|
|
};
|
|
|
|
|
2021-10-26 03:52:06 +08:00
|
|
|
// Handles --wrap option.
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
//
|
|
|
|
// This function instantiates wrapper symbols. At this point, they seem
|
|
|
|
// like they are not being used at all, so we explicitly set some flags so
|
|
|
|
// that LTO won't eliminate them.
|
|
|
|
static std::vector<WrappedSymbol> addWrappedSymbols(opt::InputArgList &args) {
|
|
|
|
std::vector<WrappedSymbol> v;
|
|
|
|
DenseSet<StringRef> seen;
|
|
|
|
|
|
|
|
for (auto *arg : args.filtered(OPT_wrap)) {
|
|
|
|
StringRef name = arg->getValue();
|
|
|
|
if (!seen.insert(name).second)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Symbol *sym = symtab->find(name);
|
|
|
|
if (!sym)
|
|
|
|
continue;
|
|
|
|
|
2020-10-01 11:09:25 +08:00
|
|
|
Symbol *real = addUnusedUndefined(saver.save("__real_" + name));
|
2021-04-17 15:29:51 +08:00
|
|
|
Symbol *wrap =
|
|
|
|
addUnusedUndefined(saver.save("__wrap_" + name), sym->binding);
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
v.push_back({sym, real, wrap});
|
|
|
|
|
|
|
|
// We want to tell LTO not to inline symbols to be overwritten
|
|
|
|
// because LTO doesn't know the final symbol contents after renaming.
|
|
|
|
real->canInline = false;
|
|
|
|
sym->canInline = false;
|
|
|
|
|
|
|
|
// Tell LTO not to eliminate these symbols.
|
|
|
|
sym->isUsedInRegularObj = true;
|
2021-01-23 01:20:29 +08:00
|
|
|
// If sym is referenced in any object file, bitcode file or shared object,
|
|
|
|
// retain wrap which is the redirection target of sym. If the object file
|
|
|
|
// defining sym has sym references, we cannot easily distinguish the case
|
|
|
|
// from cases where sym is not referenced. Retain wrap because we choose to
|
|
|
|
// wrap sym references regardless of whether sym is defined
|
|
|
|
// (https://sourceware.org/bugzilla/show_bug.cgi?id=26358).
|
|
|
|
if (sym->referenced || sym->isDefined())
|
2020-08-02 09:19:14 +08:00
|
|
|
wrap->isUsedInRegularObj = true;
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2021-10-26 03:52:06 +08:00
|
|
|
// Do renaming for --wrap and foo@v1 by updating pointers to symbols.
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
//
|
|
|
|
// When this function is executed, only InputFiles and symbol table
|
|
|
|
// contain pointers to symbol objects. We visit them to replace pointers,
|
|
|
|
// so that wrapped symbols are swapped as instructed by the command line.
|
2020-12-02 00:54:01 +08:00
|
|
|
static void redirectSymbols(ArrayRef<WrappedSymbol> wrapped) {
|
|
|
|
llvm::TimeTraceScope timeScope("Redirect symbols");
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
DenseMap<Symbol *, Symbol *> map;
|
|
|
|
for (const WrappedSymbol &w : wrapped) {
|
|
|
|
map[w.sym] = w.wrap;
|
|
|
|
map[w.real] = w.sym;
|
|
|
|
}
|
2020-12-02 00:54:01 +08:00
|
|
|
for (Symbol *sym : symtab->symbols()) {
|
|
|
|
// Enumerate symbols with a non-default version (foo@v1).
|
|
|
|
StringRef name = sym->getName();
|
|
|
|
const char *suffix1 = sym->getVersionSuffix();
|
|
|
|
if (suffix1[0] != '@' || suffix1[1] == '@')
|
|
|
|
continue;
|
|
|
|
|
2021-08-05 00:06:04 +08:00
|
|
|
// Check the existing symbol foo. We have two special cases to handle:
|
|
|
|
//
|
|
|
|
// * There is a definition of foo@v1 and foo@@v1.
|
|
|
|
// * There is a definition of foo@v1 and foo.
|
|
|
|
Defined *sym2 = dyn_cast_or_null<Defined>(symtab->find(name));
|
|
|
|
if (!sym2)
|
2020-12-02 00:54:01 +08:00
|
|
|
continue;
|
2021-08-05 00:06:04 +08:00
|
|
|
const char *suffix2 = sym2->getVersionSuffix();
|
|
|
|
if (suffix2[0] == '@' && suffix2[1] == '@' &&
|
|
|
|
strcmp(suffix1 + 1, suffix2 + 2) == 0) {
|
|
|
|
// foo@v1 and foo@@v1 should be merged, so redirect foo@v1 to foo@@v1.
|
|
|
|
map.try_emplace(sym, sym2);
|
|
|
|
// If both foo@v1 and foo@@v1 are defined and non-weak, report a duplicate
|
|
|
|
// definition error.
|
|
|
|
sym2->resolve(*sym);
|
|
|
|
// Eliminate foo@v1 from the symbol table.
|
|
|
|
sym->symbolKind = Symbol::PlaceholderKind;
|
|
|
|
} else if (auto *sym1 = dyn_cast<Defined>(sym)) {
|
|
|
|
if (sym2->versionId > VER_NDX_GLOBAL
|
|
|
|
? config->versionDefinitions[sym2->versionId].name == suffix1 + 1
|
|
|
|
: sym1->section == sym2->section && sym1->value == sym2->value) {
|
|
|
|
// Due to an assembler design flaw, if foo is defined, .symver foo,
|
|
|
|
// foo@v1 defines both foo and foo@v1. Unless foo is bound to a
|
2021-08-05 00:26:29 +08:00
|
|
|
// different version, GNU ld makes foo@v1 canonical and eliminates foo.
|
2021-08-05 00:06:04 +08:00
|
|
|
// Emulate its behavior, otherwise we would have foo or foo@@v1 beside
|
|
|
|
// foo@v1. foo@v1 and foo combining does not apply if they are not
|
|
|
|
// defined in the same place.
|
|
|
|
map.try_emplace(sym2, sym);
|
|
|
|
sym2->symbolKind = Symbol::PlaceholderKind;
|
|
|
|
}
|
|
|
|
}
|
2020-12-02 00:54:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (map.empty())
|
|
|
|
return;
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
|
|
|
|
// Update pointers in input files.
|
|
|
|
parallelForEach(objectFiles, [&](InputFile *file) {
|
2019-05-24 22:14:25 +08:00
|
|
|
MutableArrayRef<Symbol *> syms = file->getMutableSymbols();
|
Change how we handle -wrap.
We have an issue with -wrap that the option doesn't work well when
renamed symbols get PLT entries. I'll explain what is the issue and
how this patch solves it.
For one -wrap option, we have three symbols: foo, wrap_foo and real_foo.
Currently, we use memcpy to overwrite wrapped symbols so that they get
the same contents. This works in most cases but doesn't when the relocation
processor sets some flags in the symbol. memcpy'ed symbols are just
aliases, so they always have to have the same contents, but the
relocation processor breaks that assumption.
r336609 is an attempt to fix the issue by memcpy'ing again after
processing relocations, so that symbols that are out of sync get the
same contents again. That works in most cases as well, but it breaks
ASan build in a mysterious way.
We could probably fix the issue by choosing symbol attributes that need
to be copied after they are updated. But it feels too complicated to me.
So, in this patch, I fixed it once and for all. With this patch, we no
longer memcpy symbols. All references to renamed symbols point to new
symbols after wrapSymbols() is done.
Differential Revision: https://reviews.llvm.org/D50569
llvm-svn: 340387
2018-08-22 15:02:26 +08:00
|
|
|
for (size_t i = 0, e = syms.size(); i != e; ++i)
|
|
|
|
if (Symbol *s = map.lookup(syms[i]))
|
|
|
|
syms[i] = s;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Update pointers in the symbol table.
|
|
|
|
for (const WrappedSymbol &w : wrapped)
|
|
|
|
symtab->wrap(w.sym, w.real, w.wrap);
|
|
|
|
}
|
|
|
|
|
2021-12-16 23:18:08 +08:00
|
|
|
static void checkAndReportMissingFeature(StringRef config, uint32_t features,
|
|
|
|
uint32_t mask, const Twine &report) {
|
|
|
|
if (!(features & mask)) {
|
|
|
|
if (config == "error")
|
|
|
|
error(report);
|
|
|
|
else if (config == "warning")
|
|
|
|
warn(report);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-05 11:04:46 +08:00
|
|
|
// To enable CET (x86's hardware-assited control flow enforcement), each
|
|
|
|
// source file must be compiled with -fcf-protection. Object files compiled
|
|
|
|
// with the flag contain feature flags indicating that they are compatible
|
|
|
|
// with CET. We enable the feature only when all object files are compatible
|
|
|
|
// with CET.
|
|
|
|
//
|
2019-06-07 21:00:17 +08:00
|
|
|
// This is also the case with AARCH64's BTI and PAC which use the similar
|
|
|
|
// GNU_PROPERTY_AARCH64_FEATURE_1_AND mechanism.
|
2019-06-05 11:04:46 +08:00
|
|
|
template <class ELFT> static uint32_t getAndFeatures() {
|
2019-06-07 21:00:17 +08:00
|
|
|
if (config->emachine != EM_386 && config->emachine != EM_X86_64 &&
|
|
|
|
config->emachine != EM_AARCH64)
|
2019-06-05 11:04:46 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
uint32_t ret = -1;
|
|
|
|
for (InputFile *f : objectFiles) {
|
|
|
|
uint32_t features = cast<ObjFile<ELFT>>(f)->andFeatures;
|
2021-12-16 23:18:08 +08:00
|
|
|
|
|
|
|
checkAndReportMissingFeature(
|
|
|
|
config->zBtiReport, features, GNU_PROPERTY_AARCH64_FEATURE_1_BTI,
|
|
|
|
toString(f) + ": -z bti-report: file does not have "
|
|
|
|
"GNU_PROPERTY_AARCH64_FEATURE_1_BTI property");
|
|
|
|
|
|
|
|
checkAndReportMissingFeature(
|
|
|
|
config->zCetReport, features, GNU_PROPERTY_X86_FEATURE_1_IBT,
|
|
|
|
toString(f) + ": -z cet-report: file does not have "
|
|
|
|
"GNU_PROPERTY_X86_FEATURE_1_IBT property");
|
|
|
|
|
|
|
|
checkAndReportMissingFeature(
|
|
|
|
config->zCetReport, features, GNU_PROPERTY_X86_FEATURE_1_SHSTK,
|
|
|
|
toString(f) + ": -z cet-report: file does not have "
|
|
|
|
"GNU_PROPERTY_X86_FEATURE_1_SHSTK property");
|
|
|
|
|
2020-02-14 12:57:03 +08:00
|
|
|
if (config->zForceBti && !(features & GNU_PROPERTY_AARCH64_FEATURE_1_BTI)) {
|
2019-06-07 21:00:17 +08:00
|
|
|
features |= GNU_PROPERTY_AARCH64_FEATURE_1_BTI;
|
2021-12-16 23:18:08 +08:00
|
|
|
if (config->zBtiReport == "none")
|
|
|
|
warn(toString(f) + ": -z force-bti: file does not have "
|
|
|
|
"GNU_PROPERTY_AARCH64_FEATURE_1_BTI property");
|
2019-12-11 10:05:36 +08:00
|
|
|
} else if (config->zForceIbt &&
|
|
|
|
!(features & GNU_PROPERTY_X86_FEATURE_1_IBT)) {
|
2021-12-16 23:18:08 +08:00
|
|
|
if (config->zCetReport == "none")
|
|
|
|
warn(toString(f) + ": -z force-ibt: file does not have "
|
|
|
|
"GNU_PROPERTY_X86_FEATURE_1_IBT property");
|
2019-12-11 10:05:36 +08:00
|
|
|
features |= GNU_PROPERTY_X86_FEATURE_1_IBT;
|
|
|
|
}
|
2020-02-18 16:53:39 +08:00
|
|
|
if (config->zPacPlt && !(features & GNU_PROPERTY_AARCH64_FEATURE_1_PAC)) {
|
|
|
|
warn(toString(f) + ": -z pac-plt: file does not have "
|
|
|
|
"GNU_PROPERTY_AARCH64_FEATURE_1_PAC property");
|
|
|
|
features |= GNU_PROPERTY_AARCH64_FEATURE_1_PAC;
|
|
|
|
}
|
2019-06-05 11:04:46 +08:00
|
|
|
ret &= features;
|
|
|
|
}
|
2019-06-07 21:00:17 +08:00
|
|
|
|
2019-12-11 10:05:36 +08:00
|
|
|
// Force enable Shadow Stack.
|
|
|
|
if (config->zShstk)
|
|
|
|
ret |= GNU_PROPERTY_X86_FEATURE_1_SHSTK;
|
2019-06-07 21:00:17 +08:00
|
|
|
|
2019-06-05 11:04:46 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
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) {
|
2020-01-29 00:05:13 +08:00
|
|
|
llvm::TimeTraceScope timeScope("Link", StringRef("LinkerDriver::Link"));
|
2021-10-26 03:52:06 +08:00
|
|
|
// If a --hash-style option was not given, set to a default value,
|
2017-10-06 17:37:44 +08:00
|
|
|
// 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.
|
2020-11-03 22:41:09 +08:00
|
|
|
{
|
|
|
|
llvm::TimeTraceScope timeScope("Create output files");
|
|
|
|
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());
|
2021-09-21 00:52:30 +08:00
|
|
|
if (auto e = tryCreateFile(config->whyExtract))
|
|
|
|
error("cannot open --why-extract= file " + config->whyExtract + ": " +
|
|
|
|
e.message());
|
2020-11-03 22:41:09 +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 (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))
|
2019-05-28 14:33:06 +08:00
|
|
|
symtab->insert(arg->getValue())->traced = true;
|
2016-07-18 01:50:09 +08:00
|
|
|
|
2020-06-05 23:41:03 +08:00
|
|
|
// Handle -u/--undefined before input files. If both a.a and b.so define foo,
|
2021-11-27 02:58:50 +08:00
|
|
|
// -u foo a.a b.so will extract a.a.
|
2020-06-05 23:41:03 +08:00
|
|
|
for (StringRef name : config->undefined)
|
2020-10-07 23:45:24 +08:00
|
|
|
addUnusedUndefined(name)->referenced = true;
|
2020-06-05 23:41:03 +08:00
|
|
|
|
2016-12-07 12:45:34 +08:00
|
|
|
// Add all files to the symbol table. This will add almost all
|
[ELF] Implement Dependent Libraries Feature
This patch implements a limited form of autolinking primarily designed to allow
either the --dependent-library compiler option, or "comment lib" pragmas (
https://docs.microsoft.com/en-us/cpp/preprocessor/comment-c-cpp?view=vs-2017) in
C/C++ e.g. #pragma comment(lib, "foo"), to cause an ELF linker to automatically
add the specified library to the link when processing the input file generated
by the compiler.
Currently this extension is unique to LLVM and LLD. However, care has been taken
to design this feature so that it could be supported by other ELF linkers.
The design goals were to provide:
- A simple linking model for developers to reason about.
- The ability to to override autolinking from the linker command line.
- Source code compatibility, where possible, with "comment lib" pragmas in other
environments (MSVC in particular).
Dependent library support is implemented differently for ELF platforms than on
the other platforms. Primarily this difference is that on ELF we pass the
dependent library specifiers directly to the linker without manipulating them.
This is in contrast to other platforms where they are mapped to a specific
linker option by the compiler. This difference is a result of the greater
variety of ELF linkers and the fact that ELF linkers tend to handle libraries in
a more complicated fashion than on other platforms. This forces us to defer
handling the specifiers to the linker.
In order to achieve a level of source code compatibility with other platforms
we have restricted this feature to work with libraries that meet the following
"reasonable" requirements:
1. There are no competing defined symbols in a given set of libraries, or
if they exist, the program owner doesn't care which is linked to their
program.
2. There may be circular dependencies between libraries.
The binary representation is a mergeable string section (SHF_MERGE,
SHF_STRINGS), called .deplibs, with custom type SHT_LLVM_DEPENDENT_LIBRARIES
(0x6fff4c04). The compiler forms this section by concatenating the arguments of
the "comment lib" pragmas and --dependent-library options in the order they are
encountered. Partial (-r, -Ur) links are handled by concatenating .deplibs
sections with the normal mergeable string section rules. As an example, #pragma
comment(lib, "foo") would result in:
.section ".deplibs","MS",@llvm_dependent_libraries,1
.asciz "foo"
For LTO, equivalent information to the contents of a the .deplibs section can be
retrieved by the LLD for bitcode input files.
LLD processes the dependent library specifiers in the following way:
1. Dependent libraries which are found from the specifiers in .deplibs sections
of relocatable object files are added when the linker decides to include that
file (which could itself be in a library) in the link. Dependent libraries
behave as if they were appended to the command line after all other options. As
a consequence the set of dependent libraries are searched last to resolve
symbols.
2. It is an error if a file cannot be found for a given specifier.
3. Any command line options in effect at the end of the command line parsing apply
to the dependent libraries, e.g. --whole-archive.
4. The linker tries to add a library or relocatable object file from each of the
strings in a .deplibs section by; first, handling the string as if it was
specified on the command line; second, by looking for the string in each of the
library search paths in turn; third, by looking for a lib<string>.a or
lib<string>.so (depending on the current mode of the linker) in each of the
library search paths.
5. A new command line option --no-dependent-libraries tells LLD to ignore the
dependent libraries.
Rationale for the above points:
1. Adding the dependent libraries last makes the process simple to understand
from a developers perspective. All linkers are able to implement this scheme.
2. Error-ing for libraries that are not found seems like better behavior than
failing the link during symbol resolution.
3. It seems useful for the user to be able to apply command line options which
will affect all of the dependent libraries. There is a potential problem of
surprise for developers, who might not realize that these options would apply
to these "invisible" input files; however, despite the potential for surprise,
this is easy for developers to reason about and gives developers the control
that they may require.
4. This algorithm takes into account all of the different ways that ELF linkers
find input files. The different search methods are tried by the linker in most
obvious to least obvious order.
5. I considered adding finer grained control over which dependent libraries were
ignored (e.g. MSVC has /nodefaultlib:<library>); however, I concluded that this
is not necessary: if finer control is required developers can fall back to using
the command line directly.
RFC thread: http://lists.llvm.org/pipermail/llvm-dev/2019-March/131004.html.
Differential Revision: https://reviews.llvm.org/D60274
llvm-svn: 360984
2019-05-17 11:44:15 +08:00
|
|
|
// symbols that we need to the symbol table. This process might
|
|
|
|
// add files to the link, via autolinking, these files are always
|
|
|
|
// appended to the Files vector.
|
2020-01-29 00:05:13 +08:00
|
|
|
{
|
|
|
|
llvm::TimeTraceScope timeScope("Parse input files");
|
2020-11-03 22:41:09 +08:00
|
|
|
for (size_t i = 0; i < files.size(); ++i) {
|
|
|
|
llvm::TimeTraceScope timeScope("Parse input files", files[i]->getName());
|
2020-01-29 00:05:13 +08:00
|
|
|
parseFile(files[i]);
|
2020-11-03 22:41:09 +08:00
|
|
|
}
|
2020-01-29 00:05:13 +08:00
|
|
|
}
|
2016-09-08 16:57:51 +08:00
|
|
|
|
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->isPic || 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.
|
2018-10-12 04:34:29 +08:00
|
|
|
for (StringRef name : script->referencedSymbols)
|
2019-05-30 22:50:10 +08:00
|
|
|
addUndefined(name);
|
2017-08-23 16:37:22 +08:00
|
|
|
|
2020-06-05 23:41:03 +08:00
|
|
|
// Prevent LTO from removing any definition referenced by -u.
|
|
|
|
for (StringRef name : config->undefined)
|
|
|
|
if (Defined *sym = dyn_cast_or_null<Defined>(symtab->find(name)))
|
|
|
|
sym->isUsedInRegularObj = true;
|
2017-10-04 04:45:09 +08:00
|
|
|
|
2018-08-01 04:36:17 +08:00
|
|
|
// If an entry symbol is in a static archive, pull out that file now.
|
2019-06-14 22:00:59 +08:00
|
|
|
if (Symbol *sym = symtab->find(config->entry))
|
2021-09-21 00:52:30 +08:00
|
|
|
handleUndefined(sym, "--entry");
|
2019-06-14 22:00:59 +08:00
|
|
|
|
|
|
|
// Handle the `--undefined-glob <pattern>` options.
|
|
|
|
for (StringRef pat : args::getStrings(args, OPT_undefined_glob))
|
|
|
|
handleUndefinedGlob(pat);
|
2016-09-08 16:57:51 +08:00
|
|
|
|
2019-11-08 13:39:14 +08:00
|
|
|
// Mark -init and -fini symbols so that the LTO doesn't eliminate them.
|
2020-07-14 16:54:35 +08:00
|
|
|
if (Symbol *sym = dyn_cast_or_null<Defined>(symtab->find(config->init)))
|
2019-11-08 13:39:14 +08:00
|
|
|
sym->isUsedInRegularObj = true;
|
2020-07-14 16:54:35 +08:00
|
|
|
if (Symbol *sym = dyn_cast_or_null<Defined>(symtab->find(config->fini)))
|
2019-11-08 13:39:14 +08:00
|
|
|
sym->isUsedInRegularObj = true;
|
|
|
|
|
2018-08-01 04:36:17 +08:00
|
|
|
// If any of our inputs are bitcode files, the LTO code generator may create
|
|
|
|
// references to certain library functions that might not be explicit in the
|
|
|
|
// bitcode file's symbol table. If any of those library functions are defined
|
|
|
|
// in a bitcode file in an archive member, we need to arrange to use LTO to
|
|
|
|
// compile those archive members by adding them to the link beforehand.
|
|
|
|
//
|
2018-08-09 07:48:12 +08:00
|
|
|
// However, adding all libcall symbols to the link can have undesired
|
|
|
|
// consequences. For example, the libgcc implementation of
|
|
|
|
// __sync_val_compare_and_swap_8 on 32-bit ARM pulls in an .init_array entry
|
|
|
|
// that aborts the program if the Linux kernel does not support 64-bit
|
|
|
|
// atomics, which would prevent the program from running even if it does not
|
|
|
|
// use 64-bit atomics.
|
|
|
|
//
|
|
|
|
// Therefore, we only add libcall symbols to the link before LTO if we have
|
|
|
|
// to, i.e. if the symbol's definition is in bitcode. Any other required
|
|
|
|
// libcall symbols will be added to the link after LTO when we add the LTO
|
|
|
|
// object file to the link.
|
2018-08-01 04:36:17 +08:00
|
|
|
if (!bitcodeFiles.empty())
|
2019-09-17 02:49:57 +08:00
|
|
|
for (auto *s : lto::LTO::getRuntimeLibcallSymbols())
|
2019-05-16 11:45:13 +08:00
|
|
|
handleLibcall(s);
|
2018-08-01 04:36:17 +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
|
|
|
|
2018-02-27 15:18:07 +08:00
|
|
|
// We want to declare linker script's symbols early,
|
|
|
|
// so that we can version them.
|
|
|
|
// They also might be exported if referenced by DSOs.
|
|
|
|
script->declareSymbols();
|
|
|
|
|
2021-01-12 01:33:21 +08:00
|
|
|
// Handle --exclude-libs. This is before scanVersionScript() due to a
|
|
|
|
// workaround for Android ndk: for a defined versioned symbol in an archive
|
|
|
|
// without a version node in the version script, Android does not expect a
|
|
|
|
// 'has undefined version' error in -shared --exclude-libs=ALL mode (PR36295).
|
|
|
|
// GNU ld errors in this case.
|
2017-06-21 23:36:24 +08:00
|
|
|
if (args.hasArg(OPT_exclude_libs))
|
2019-03-17 21:53:42 +08:00
|
|
|
excludeLibs(args);
|
2017-06-21 23:36:24 +08:00
|
|
|
|
2019-07-16 13:50:45 +08:00
|
|
|
// Create elfHeader early. We need a dummy section in
|
2017-12-12 01:23:28 +08:00
|
|
|
// addReservedSymbols to mark the created symbols as not absolute.
|
|
|
|
Out::elfHeader = make<OutputSection>("", 0, SHF_ALLOC);
|
|
|
|
|
2019-05-30 22:50:10 +08:00
|
|
|
std::vector<WrappedSymbol> wrapped = addWrappedSymbols(args);
|
2019-01-03 03:28:00 +08:00
|
|
|
|
2017-12-12 01:23:28 +08:00
|
|
|
// We need to create some reserved symbols such as _end. Create them.
|
|
|
|
if (!config->relocatable)
|
2017-12-24 01:21:39 +08:00
|
|
|
addReservedSymbols();
|
2017-12-12 01:23:28 +08:00
|
|
|
|
2017-06-21 23:36:24 +08:00
|
|
|
// Apply version scripts.
|
2018-02-15 10:40:58 +08:00
|
|
|
//
|
|
|
|
// For a relocatable output, version scripts don't make sense, and
|
|
|
|
// parsing a symbol version string (e.g. dropping "@ver1" from a symbol
|
|
|
|
// name "foo@ver1") rather do harm, so we don't call this if -r is given.
|
2020-11-03 22:41:09 +08:00
|
|
|
if (!config->relocatable) {
|
|
|
|
llvm::TimeTraceScope timeScope("Process symbol versions");
|
2018-02-15 10:40:58 +08:00
|
|
|
symtab->scanVersionScript();
|
2020-11-03 22:41:09 +08:00
|
|
|
}
|
2016-04-23 02:47:52 +08:00
|
|
|
|
2018-05-08 06:11:34 +08:00
|
|
|
// Do link-time optimization if given files are LLVM bitcode files.
|
|
|
|
// This compiles bitcode files into real object files.
|
2018-08-09 07:48:12 +08:00
|
|
|
//
|
|
|
|
// With this the symbol table should be complete. After this, no new names
|
|
|
|
// except a few linker-synthesized ones will be added to the symbol table.
|
2019-05-23 17:26:27 +08:00
|
|
|
compileBitcodeFiles<ELFT>();
|
2020-04-06 13:27:46 +08:00
|
|
|
|
2021-01-12 01:33:21 +08:00
|
|
|
// Handle --exclude-libs again because lto.tmp may reference additional
|
2021-01-23 10:46:56 +08:00
|
|
|
// libcalls symbols defined in an excluded archive. This may override
|
|
|
|
// versionId set by scanVersionScript().
|
2021-01-12 01:33:21 +08:00
|
|
|
if (args.hasArg(OPT_exclude_libs))
|
|
|
|
excludeLibs(args);
|
|
|
|
|
2020-04-06 13:27:46 +08:00
|
|
|
// Symbol resolution finished. Report backward reference problems.
|
|
|
|
reportBackrefs();
|
[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
|
|
|
|
2021-10-26 03:52:06 +08:00
|
|
|
// If --thinlto-index-only is given, we should create only "index
|
2018-05-08 06:11:34 +08:00
|
|
|
// files" and not object files. Index file creation is already done
|
2021-10-28 22:29:43 +08:00
|
|
|
// in compileBitcodeFiles, so we are done if that's the case.
|
[lld] Support --lto-emit-asm and --plugin-opt=emit-asm
Summary: The switch --plugin-opt=emit-asm can be used with the gold linker to dump the final assembly code generated by LTO in a user-friendly way. Unfortunately it doesn't work with lld. I'm hooking it up with lld. With that switch, lld emits assembly code into the output file (specified by -o) and if there are multiple input files, each of their assembly code will be emitted into a separate file named by suffixing the output file name with a unique number, respectively. The linking then stops after generating those assembly files.
Reviewers: espindola, wenlei, tejohnson, MaskRay, grimar
Reviewed By: tejohnson, MaskRay, grimar
Subscribers: pcc, emaste, inglorion, arichardson, hiraditya, MaskRay, steven_wu, dexonsmith, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D77231
2020-04-02 01:01:23 +08:00
|
|
|
// Likewise, --plugin-opt=emit-llvm and --plugin-opt=emit-asm are the
|
|
|
|
// options to create output files in bitcode or assembly code
|
2021-02-19 03:24:56 +08:00
|
|
|
// respectively. No object files are generated.
|
2020-05-22 04:19:44 +08:00
|
|
|
// Also bail out here when only certain thinLTO modules are specified for
|
|
|
|
// compilation. The intermediate object file are the expected output.
|
|
|
|
if (config->thinLTOIndexOnly || config->emitLLVM || config->ltoEmitAsm ||
|
|
|
|
!config->thinLTOModulesToCompile.empty())
|
2018-12-15 05:58:49 +08:00
|
|
|
return;
|
|
|
|
|
2021-10-26 03:52:06 +08:00
|
|
|
// Apply symbol renames for --wrap and combine foo@v1 and foo@@v1.
|
2020-12-02 00:54:01 +08:00
|
|
|
redirectSymbols(wrapped);
|
2017-04-26 18:40:02 +08:00
|
|
|
|
2020-11-03 22:41:09 +08:00
|
|
|
{
|
|
|
|
llvm::TimeTraceScope timeScope("Aggregate sections");
|
|
|
|
// 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.
|
|
|
|
for (InputFile *f : objectFiles)
|
|
|
|
for (InputSectionBase *s : f->getSections())
|
|
|
|
if (s && s != &InputSection::discarded)
|
|
|
|
inputSections.push_back(s);
|
|
|
|
for (BinaryFile *f : binaryFiles)
|
|
|
|
for (InputSectionBase *s : f->getSections())
|
|
|
|
inputSections.push_back(cast<InputSection>(s));
|
|
|
|
}
|
2019-05-29 11:55:20 +08:00
|
|
|
|
2020-11-03 22:41:09 +08:00
|
|
|
{
|
|
|
|
llvm::TimeTraceScope timeScope("Strip sections");
|
|
|
|
llvm::erase_if(inputSections, [](InputSectionBase *s) {
|
|
|
|
if (s->type == SHT_LLVM_SYMPART) {
|
|
|
|
readSymbolPartitionSection<ELFT>(s);
|
|
|
|
return true;
|
|
|
|
}
|
2020-02-13 06:08:42 +08:00
|
|
|
|
2020-11-03 22:41:09 +08:00
|
|
|
// We do not want to emit debug sections if --strip-all
|
2021-10-26 03:52:06 +08:00
|
|
|
// or --strip-debug are given.
|
2020-11-03 22:41:09 +08:00
|
|
|
if (config->strip == StripPolicy::None)
|
|
|
|
return false;
|
2020-02-13 06:08:42 +08:00
|
|
|
|
2020-11-03 22:41:09 +08:00
|
|
|
if (isDebugSection(*s))
|
|
|
|
return true;
|
|
|
|
if (auto *isec = dyn_cast<InputSection>(s))
|
|
|
|
if (InputSectionBase *rel = isec->getRelocatedSection())
|
|
|
|
if (isDebugSection(*rel))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
2017-11-04 16:20:30 +08:00
|
|
|
|
2020-06-24 11:00:04 +08:00
|
|
|
// Since we now have a complete set of input files, we can create
|
|
|
|
// a .d file to record build dependencies.
|
|
|
|
if (!config->dependencyFile.empty())
|
|
|
|
writeDependencyFile();
|
|
|
|
|
2019-06-08 01:57:58 +08:00
|
|
|
// Now that the number of partitions is fixed, save a pointer to the main
|
|
|
|
// partition.
|
|
|
|
mainPart = &partitions[0];
|
|
|
|
|
2019-06-05 11:04:46 +08:00
|
|
|
// Read .note.gnu.property sections from input object files which
|
|
|
|
// contain a hint to tweak linker's and loader's behaviors.
|
|
|
|
config->andFeatures = getAndFeatures<ELFT>();
|
|
|
|
|
2019-06-07 21:00:17 +08:00
|
|
|
// The Target instance handles target-specific stuff, such as applying
|
|
|
|
// relocations or writing a PLT section. It also contains target-dependent
|
|
|
|
// values such as a default image base address.
|
|
|
|
target = getTarget();
|
|
|
|
|
2017-10-25 01:01:40 +08:00
|
|
|
config->eflags = target->calcEFlags();
|
2019-07-16 13:50:45 +08:00
|
|
|
// maxPageSize (sometimes called abi page size) is the maximum page size that
|
2019-05-14 00:01:26 +08:00
|
|
|
// the output can be run on. For example if the OS can use 4k or 64k page
|
2019-07-16 13:50:45 +08:00
|
|
|
// sizes then maxPageSize must be 64k for the output to be useable on both.
|
2019-05-14 00:01:26 +08:00
|
|
|
// All important alignment decisions must use this value.
|
2019-03-29 01:38:53 +08:00
|
|
|
config->maxPageSize = getMaxPageSize(args);
|
2019-07-16 13:50:45 +08:00
|
|
|
// commonPageSize is the most common page size that the output will be run on.
|
2019-05-14 00:01:26 +08:00
|
|
|
// For example if an OS can use 4k or 64k page sizes and 4k is more common
|
2019-07-16 13:50:45 +08:00
|
|
|
// than 64k then commonPageSize is set to 4k. commonPageSize can be used for
|
2019-05-14 00:01:26 +08:00
|
|
|
// optimizations such as DATA_SEGMENT_ALIGN in linker scripts. LLD's use of it
|
|
|
|
// is limited to writing trap instructions on the last executable segment.
|
|
|
|
config->commonPageSize = getCommonPageSize(args);
|
|
|
|
|
2019-03-29 01:38:53 +08:00
|
|
|
config->imageBase = getImageBase(args);
|
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 "
|
2018-10-26 02:07:55 +08:00
|
|
|
"feature detected");
|
2017-11-28 21:51:48 +08:00
|
|
|
}
|
|
|
|
|
2019-09-24 19:48:31 +08:00
|
|
|
// This adds a .comment section containing a version string.
|
2017-06-12 08:00:51 +08:00
|
|
|
if (!config->relocatable)
|
2017-12-21 09:21:59 +08:00
|
|
|
inputSections.push_back(createCommentSection());
|
2017-06-12 08:00:51 +08:00
|
|
|
|
2019-05-16 11:29:03 +08:00
|
|
|
// Replace common symbols with regular symbols.
|
|
|
|
replaceCommonSymbols();
|
|
|
|
|
2019-10-10 22:50:02 +08:00
|
|
|
// Split SHF_MERGE and .eh_frame sections into pieces in preparation for garbage collection.
|
2018-04-28 02:17:36 +08:00
|
|
|
splitSections<ELFT>();
|
2019-10-10 22:50:02 +08:00
|
|
|
|
|
|
|
// Garbage collection and removal of shared symbols from unused shared objects.
|
2017-10-11 06:59:32 +08:00
|
|
|
markLive<ELFT>();
|
2019-04-09 01:35:55 +08:00
|
|
|
demoteSharedSymbols();
|
2019-09-06 23:57:24 +08:00
|
|
|
|
|
|
|
// Make copies of any input sections that need to be copied into each
|
|
|
|
// partition.
|
|
|
|
copySectionsIntoPartitions();
|
|
|
|
|
|
|
|
// Create synthesized sections such as .got and .plt. This is called before
|
|
|
|
// processSectionCommands() so that they can be placed by SECTIONS commands.
|
|
|
|
createSyntheticSections<ELFT>();
|
|
|
|
|
|
|
|
// Some input sections that are used for exception handling need to be moved
|
|
|
|
// into synthetic sections. Do that now so that they aren't assigned to
|
|
|
|
// output sections in the usual way.
|
|
|
|
if (!config->relocatable)
|
|
|
|
combineEhSections();
|
|
|
|
|
2020-11-03 22:41:09 +08:00
|
|
|
{
|
|
|
|
llvm::TimeTraceScope timeScope("Assign sections");
|
|
|
|
|
|
|
|
// Create output sections described by SECTIONS commands.
|
|
|
|
script->processSectionCommands();
|
|
|
|
|
|
|
|
// Linker scripts control how input sections are assigned to output
|
|
|
|
// sections. Input sections that were not handled by scripts are called
|
|
|
|
// "orphans", and they are assigned to output sections by the default rule.
|
|
|
|
// Process that.
|
|
|
|
script->addOrphanSections();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
llvm::TimeTraceScope timeScope("Merge/finalize input sections");
|
|
|
|
|
|
|
|
// Migrate InputSectionDescription::sectionBases to sections. This includes
|
|
|
|
// merging MergeInputSections into a single MergeSyntheticSection. From this
|
|
|
|
// point onwards InputSectionDescription::sections should be used instead of
|
|
|
|
// sectionBases.
|
2021-11-26 12:24:23 +08:00
|
|
|
for (SectionCommand *cmd : script->sectionCommands)
|
|
|
|
if (auto *sec = dyn_cast<OutputSection>(cmd))
|
2020-11-03 22:41:09 +08:00
|
|
|
sec->finalizeInputSections();
|
|
|
|
llvm::erase_if(inputSections, [](InputSectionBase *s) {
|
|
|
|
return isa<MergeInputSection>(s);
|
|
|
|
});
|
|
|
|
}
|
2019-09-24 19:48:31 +08:00
|
|
|
|
2019-09-06 23:57:24 +08:00
|
|
|
// Two input sections with different output sections should not be folded.
|
|
|
|
// ICF runs after processSectionCommands() so that we know the output sections.
|
2018-07-19 06:49:31 +08:00
|
|
|
if (config->icf != ICFLevel::None) {
|
|
|
|
findKeepUniqueSections<ELFT>(args);
|
2016-05-03 03:30:42 +08:00
|
|
|
doIcf<ELFT>();
|
2018-05-15 16:57:21 +08:00
|
|
|
}
|
2016-05-24 00:55:43 +08:00
|
|
|
|
2018-04-18 07:30:05 +08:00
|
|
|
// Read the callgraph now that we know what was gced or icfed
|
2018-10-26 07:15:23 +08:00
|
|
|
if (config->callGraphProfileSort) {
|
|
|
|
if (auto *arg = args.getLastArg(OPT_call_graph_ordering_file))
|
|
|
|
if (Optional<MemoryBufferRef> buffer = readFile(arg->getValue()))
|
|
|
|
readCallGraph(*buffer);
|
|
|
|
readCallGraphsFromObjectFiles<ELFT>();
|
|
|
|
}
|
2018-04-18 07:30:05 +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
|
|
|
}
|