2018-10-12 00:33:50 +02:00
|
|
|
//===- CopyConfig.cpp -----------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01: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
|
2018-10-12 00:33:50 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CopyConfig.h"
|
|
|
|
|
|
|
|
#include "llvm/ADT/Optional.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2019-06-18 02:39:10 +02:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2018-10-12 00:33:50 +02:00
|
|
|
#include "llvm/Option/Arg.h"
|
|
|
|
#include "llvm/Option/ArgList.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Compression.h"
|
2019-02-08 11:33:16 +01:00
|
|
|
#include "llvm/Support/Errc.h"
|
2019-05-14 12:59:04 +02:00
|
|
|
#include "llvm/Support/JamCRC.h"
|
2018-10-12 00:33:50 +02:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2019-02-04 19:38:00 +01:00
|
|
|
#include "llvm/Support/StringSaver.h"
|
2018-10-12 00:33:50 +02:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace objcopy {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
enum ObjcopyID {
|
|
|
|
OBJCOPY_INVALID = 0, // This is not an option ID.
|
|
|
|
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
|
|
|
|
HELPTEXT, METAVAR, VALUES) \
|
|
|
|
OBJCOPY_##ID,
|
|
|
|
#include "ObjcopyOpts.inc"
|
|
|
|
#undef OPTION
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PREFIX(NAME, VALUE) const char *const OBJCOPY_##NAME[] = VALUE;
|
|
|
|
#include "ObjcopyOpts.inc"
|
|
|
|
#undef PREFIX
|
|
|
|
|
|
|
|
static const opt::OptTable::Info ObjcopyInfoTable[] = {
|
|
|
|
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
|
|
|
|
HELPTEXT, METAVAR, VALUES) \
|
|
|
|
{OBJCOPY_##PREFIX, \
|
|
|
|
NAME, \
|
|
|
|
HELPTEXT, \
|
|
|
|
METAVAR, \
|
|
|
|
OBJCOPY_##ID, \
|
|
|
|
opt::Option::KIND##Class, \
|
|
|
|
PARAM, \
|
|
|
|
FLAGS, \
|
|
|
|
OBJCOPY_##GROUP, \
|
|
|
|
OBJCOPY_##ALIAS, \
|
|
|
|
ALIASARGS, \
|
|
|
|
VALUES},
|
|
|
|
#include "ObjcopyOpts.inc"
|
|
|
|
#undef OPTION
|
|
|
|
};
|
|
|
|
|
|
|
|
class ObjcopyOptTable : public opt::OptTable {
|
|
|
|
public:
|
[llvm-strip] Support -s alias for --strip-all. Make both strip and objcopy case sensitive to support both -s (--strip-all) and -S (--strip-debug).
Summary:
GNU strip supports both `-s` and `-S` as aliases for `--strip-all` and `--strip-debug`, respectfully.
As part of this, it turns out that strip/objcopy were accepting case insensitive command line args. I'm not sure if there was an explicit reason for this. The only others uses of this are llvm-cvtres/llvm-mt/llvm-lib, which are all tools specific for windows support. Forcing case sensitivity allows both aliases to exist, but seems like a good idea anyway.
And as a surprise test case adjustment, the llvm-strip unit test was running with `-keep=unavailable_symbol`, despite `keep` not be a valid flag for strip. This is because there is a flag `-K` which, when case insensitivity is permitted, allows it to be interpreted as `-K` = `eep=unavailable_symbol` (e.g. to allow `-Kfoo` == `--keep-symbol=foo`).
Reviewers: jakehehrlich, jhenderson, alexshap
Reviewed By: jakehehrlich
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D53163
llvm-svn: 345068
2018-10-23 20:46:33 +02:00
|
|
|
ObjcopyOptTable() : OptTable(ObjcopyInfoTable) {}
|
2018-10-12 00:33:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum StripID {
|
|
|
|
STRIP_INVALID = 0, // This is not an option ID.
|
|
|
|
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
|
|
|
|
HELPTEXT, METAVAR, VALUES) \
|
|
|
|
STRIP_##ID,
|
|
|
|
#include "StripOpts.inc"
|
|
|
|
#undef OPTION
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PREFIX(NAME, VALUE) const char *const STRIP_##NAME[] = VALUE;
|
|
|
|
#include "StripOpts.inc"
|
|
|
|
#undef PREFIX
|
|
|
|
|
|
|
|
static const opt::OptTable::Info StripInfoTable[] = {
|
|
|
|
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
|
|
|
|
HELPTEXT, METAVAR, VALUES) \
|
|
|
|
{STRIP_##PREFIX, NAME, HELPTEXT, \
|
|
|
|
METAVAR, STRIP_##ID, opt::Option::KIND##Class, \
|
|
|
|
PARAM, FLAGS, STRIP_##GROUP, \
|
|
|
|
STRIP_##ALIAS, ALIASARGS, VALUES},
|
|
|
|
#include "StripOpts.inc"
|
|
|
|
#undef OPTION
|
|
|
|
};
|
|
|
|
|
|
|
|
class StripOptTable : public opt::OptTable {
|
|
|
|
public:
|
[llvm-strip] Support -s alias for --strip-all. Make both strip and objcopy case sensitive to support both -s (--strip-all) and -S (--strip-debug).
Summary:
GNU strip supports both `-s` and `-S` as aliases for `--strip-all` and `--strip-debug`, respectfully.
As part of this, it turns out that strip/objcopy were accepting case insensitive command line args. I'm not sure if there was an explicit reason for this. The only others uses of this are llvm-cvtres/llvm-mt/llvm-lib, which are all tools specific for windows support. Forcing case sensitivity allows both aliases to exist, but seems like a good idea anyway.
And as a surprise test case adjustment, the llvm-strip unit test was running with `-keep=unavailable_symbol`, despite `keep` not be a valid flag for strip. This is because there is a flag `-K` which, when case insensitivity is permitted, allows it to be interpreted as `-K` = `eep=unavailable_symbol` (e.g. to allow `-Kfoo` == `--keep-symbol=foo`).
Reviewers: jakehehrlich, jhenderson, alexshap
Reviewed By: jakehehrlich
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D53163
llvm-svn: 345068
2018-10-23 20:46:33 +02:00
|
|
|
StripOptTable() : OptTable(StripInfoTable) {}
|
2018-10-12 00:33:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
static SectionFlag parseSectionRenameFlag(StringRef SectionName) {
|
|
|
|
return llvm::StringSwitch<SectionFlag>(SectionName)
|
2019-04-03 16:40:27 +02:00
|
|
|
.CaseLower("alloc", SectionFlag::SecAlloc)
|
|
|
|
.CaseLower("load", SectionFlag::SecLoad)
|
|
|
|
.CaseLower("noload", SectionFlag::SecNoload)
|
|
|
|
.CaseLower("readonly", SectionFlag::SecReadonly)
|
|
|
|
.CaseLower("debug", SectionFlag::SecDebug)
|
|
|
|
.CaseLower("code", SectionFlag::SecCode)
|
|
|
|
.CaseLower("data", SectionFlag::SecData)
|
|
|
|
.CaseLower("rom", SectionFlag::SecRom)
|
|
|
|
.CaseLower("merge", SectionFlag::SecMerge)
|
|
|
|
.CaseLower("strings", SectionFlag::SecStrings)
|
|
|
|
.CaseLower("contents", SectionFlag::SecContents)
|
|
|
|
.CaseLower("share", SectionFlag::SecShare)
|
2018-10-12 00:33:50 +02:00
|
|
|
.Default(SectionFlag::SecNone);
|
|
|
|
}
|
|
|
|
|
2019-03-28 19:27:00 +01:00
|
|
|
static Expected<SectionFlag>
|
2019-02-21 18:05:19 +01:00
|
|
|
parseSectionFlagSet(ArrayRef<StringRef> SectionFlags) {
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
SectionFlag ParsedFlags = SectionFlag::SecNone;
|
|
|
|
for (StringRef Flag : SectionFlags) {
|
|
|
|
SectionFlag ParsedFlag = parseSectionRenameFlag(Flag);
|
|
|
|
if (ParsedFlag == SectionFlag::SecNone)
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"unrecognized section flag '%s'. Flags supported for GNU "
|
2019-02-21 18:05:19 +01:00
|
|
|
"compatibility: alloc, load, noload, readonly, debug, code, data, "
|
|
|
|
"rom, share, contents, merge, strings",
|
|
|
|
Flag.str().c_str());
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
ParsedFlags |= ParsedFlag;
|
|
|
|
}
|
|
|
|
|
2019-03-28 19:27:00 +01:00
|
|
|
return ParsedFlags;
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
}
|
|
|
|
|
2019-02-21 18:05:19 +01:00
|
|
|
static Expected<SectionRename> parseRenameSectionValue(StringRef FlagValue) {
|
2018-10-12 00:33:50 +02:00
|
|
|
if (!FlagValue.contains('='))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"bad format for --rename-section: missing '='");
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
// Initial split: ".foo" = ".bar,f1,f2,..."
|
|
|
|
auto Old2New = FlagValue.split('=');
|
|
|
|
SectionRename SR;
|
|
|
|
SR.OriginalName = Old2New.first;
|
|
|
|
|
|
|
|
// Flags split: ".bar" "f1" "f2" ...
|
|
|
|
SmallVector<StringRef, 6> NameAndFlags;
|
|
|
|
Old2New.second.split(NameAndFlags, ',');
|
|
|
|
SR.NewName = NameAndFlags[0];
|
|
|
|
|
2019-02-21 18:05:19 +01:00
|
|
|
if (NameAndFlags.size() > 1) {
|
2019-03-28 19:27:00 +01:00
|
|
|
Expected<SectionFlag> ParsedFlagSet =
|
2019-02-21 18:05:19 +01:00
|
|
|
parseSectionFlagSet(makeArrayRef(NameAndFlags).drop_front());
|
|
|
|
if (!ParsedFlagSet)
|
|
|
|
return ParsedFlagSet.takeError();
|
|
|
|
SR.NewFlags = *ParsedFlagSet;
|
|
|
|
}
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
return SR;
|
|
|
|
}
|
|
|
|
|
2019-02-21 18:05:19 +01:00
|
|
|
static Expected<SectionFlagsUpdate>
|
|
|
|
parseSetSectionFlagValue(StringRef FlagValue) {
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
if (!StringRef(FlagValue).contains('='))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"bad format for --set-section-flags: missing '='");
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
|
|
|
|
// Initial split: ".foo" = "f1,f2,..."
|
|
|
|
auto Section2Flags = StringRef(FlagValue).split('=');
|
|
|
|
SectionFlagsUpdate SFU;
|
|
|
|
SFU.Name = Section2Flags.first;
|
|
|
|
|
|
|
|
// Flags split: "f1" "f2" ...
|
|
|
|
SmallVector<StringRef, 6> SectionFlags;
|
|
|
|
Section2Flags.second.split(SectionFlags, ',');
|
2019-03-28 19:27:00 +01:00
|
|
|
Expected<SectionFlag> ParsedFlagSet = parseSectionFlagSet(SectionFlags);
|
2019-02-21 18:05:19 +01:00
|
|
|
if (!ParsedFlagSet)
|
|
|
|
return ParsedFlagSet.takeError();
|
|
|
|
SFU.NewFlags = *ParsedFlagSet;
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
|
|
|
|
return SFU;
|
|
|
|
}
|
|
|
|
|
2019-03-13 23:26:01 +01:00
|
|
|
static Expected<NewSymbolInfo> parseNewSymbolInfo(StringRef FlagValue) {
|
2019-02-25 15:12:41 +01:00
|
|
|
// Parse value given with --add-symbol option and create the
|
|
|
|
// new symbol if possible. The value format for --add-symbol is:
|
|
|
|
//
|
|
|
|
// <name>=[<section>:]<value>[,<flags>]
|
|
|
|
//
|
|
|
|
// where:
|
|
|
|
// <name> - symbol name, can be empty string
|
|
|
|
// <section> - optional section name. If not given ABS symbol is created
|
|
|
|
// <value> - symbol value, can be decimal or hexadecimal number prefixed
|
|
|
|
// with 0x.
|
|
|
|
// <flags> - optional flags affecting symbol type, binding or visibility:
|
|
|
|
// The following are currently supported:
|
|
|
|
//
|
|
|
|
// global, local, weak, default, hidden, file, section, object,
|
|
|
|
// indirect-function.
|
|
|
|
//
|
|
|
|
// The following flags are ignored and provided for GNU
|
|
|
|
// compatibility only:
|
|
|
|
//
|
|
|
|
// warning, debug, constructor, indirect, synthetic,
|
|
|
|
// unique-object, before=<symbol>.
|
|
|
|
NewSymbolInfo SI;
|
|
|
|
StringRef Value;
|
|
|
|
std::tie(SI.SymbolName, Value) = FlagValue.split('=');
|
|
|
|
if (Value.empty())
|
2019-03-13 23:26:01 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
|
|
|
"bad format for --add-symbol, missing '=' after '%s'",
|
|
|
|
SI.SymbolName.str().c_str());
|
2019-02-25 15:12:41 +01:00
|
|
|
|
|
|
|
if (Value.contains(':')) {
|
|
|
|
std::tie(SI.SectionName, Value) = Value.split(':');
|
|
|
|
if (SI.SectionName.empty() || Value.empty())
|
2019-03-13 23:26:01 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
2019-02-25 15:12:41 +01:00
|
|
|
"bad format for --add-symbol, missing section name or symbol value");
|
|
|
|
}
|
|
|
|
|
|
|
|
SmallVector<StringRef, 6> Flags;
|
|
|
|
Value.split(Flags, ',');
|
|
|
|
if (Flags[0].getAsInteger(0, SI.Value))
|
2019-03-13 23:26:01 +01:00
|
|
|
return createStringError(errc::invalid_argument, "bad symbol value: '%s'",
|
|
|
|
Flags[0].str().c_str());
|
2019-02-25 15:12:41 +01:00
|
|
|
|
2019-03-13 23:26:01 +01:00
|
|
|
using Functor = std::function<void(void)>;
|
|
|
|
SmallVector<StringRef, 6> UnsupportedFlags;
|
|
|
|
for (size_t I = 1, NumFlags = Flags.size(); I < NumFlags; ++I)
|
2019-02-25 15:12:41 +01:00
|
|
|
static_cast<Functor>(
|
|
|
|
StringSwitch<Functor>(Flags[I])
|
|
|
|
.CaseLower("global", [&SI] { SI.Bind = ELF::STB_GLOBAL; })
|
|
|
|
.CaseLower("local", [&SI] { SI.Bind = ELF::STB_LOCAL; })
|
|
|
|
.CaseLower("weak", [&SI] { SI.Bind = ELF::STB_WEAK; })
|
|
|
|
.CaseLower("default", [&SI] { SI.Visibility = ELF::STV_DEFAULT; })
|
|
|
|
.CaseLower("hidden", [&SI] { SI.Visibility = ELF::STV_HIDDEN; })
|
|
|
|
.CaseLower("file", [&SI] { SI.Type = ELF::STT_FILE; })
|
|
|
|
.CaseLower("section", [&SI] { SI.Type = ELF::STT_SECTION; })
|
|
|
|
.CaseLower("object", [&SI] { SI.Type = ELF::STT_OBJECT; })
|
|
|
|
.CaseLower("function", [&SI] { SI.Type = ELF::STT_FUNC; })
|
|
|
|
.CaseLower("indirect-function",
|
|
|
|
[&SI] { SI.Type = ELF::STT_GNU_IFUNC; })
|
|
|
|
.CaseLower("debug", [] {})
|
|
|
|
.CaseLower("constructor", [] {})
|
|
|
|
.CaseLower("warning", [] {})
|
|
|
|
.CaseLower("indirect", [] {})
|
|
|
|
.CaseLower("synthetic", [] {})
|
|
|
|
.CaseLower("unique-object", [] {})
|
|
|
|
.StartsWithLower("before", [] {})
|
2019-03-13 23:26:01 +01:00
|
|
|
.Default([&] { UnsupportedFlags.push_back(Flags[I]); }))();
|
|
|
|
if (!UnsupportedFlags.empty())
|
|
|
|
return createStringError(errc::invalid_argument,
|
|
|
|
"unsupported flag%s for --add-symbol: '%s'",
|
|
|
|
UnsupportedFlags.size() > 1 ? "s" : "",
|
|
|
|
join(UnsupportedFlags, "', '").c_str());
|
2019-02-25 15:12:41 +01:00
|
|
|
return SI;
|
|
|
|
}
|
|
|
|
|
2018-10-12 00:33:50 +02:00
|
|
|
static const StringMap<MachineInfo> ArchMap{
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
// Name, {EMachine, 64bit, LittleEndian}
|
|
|
|
{"aarch64", {ELF::EM_AARCH64, true, true}},
|
|
|
|
{"arm", {ELF::EM_ARM, false, true}},
|
|
|
|
{"i386", {ELF::EM_386, false, true}},
|
|
|
|
{"i386:x86-64", {ELF::EM_X86_64, true, true}},
|
2019-04-18 16:22:37 +02:00
|
|
|
{"mips", {ELF::EM_MIPS, false, false}},
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"powerpc:common64", {ELF::EM_PPC64, true, true}},
|
[llvm-objcopy] Add RISC-V support for -B/-O
Reviewers: jorgbrown, espindola, alexshap, jhenderson
Subscribers: emaste, arichardson, fedor.sergeev, jakehehrlich, kito-cheng, shiva0217, MaskRay, rogfer01, rkruppe, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61272
llvm-svn: 359568
2019-04-30 17:21:36 +02:00
|
|
|
{"riscv:rv32", {ELF::EM_RISCV, false, true}},
|
|
|
|
{"riscv:rv64", {ELF::EM_RISCV, true, true}},
|
[llvm-objcopy] Fix sparc target endianness
Summary: AFAIK, the "sparc" target is big endian and the target for 32-bit little-endian SPARC is denoted as "sparcel". This patch fixes the endianness of "sparc" target and adds "sparcel" target for 32-bit little-endian SPARC.
Reviewers: espindola, alexshap, rupprecht, jhenderson
Reviewed By: jhenderson
Subscribers: jyknight, emaste, arichardson, fedor.sergeev, jakehehrlich, MaskRay, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D63251
llvm-svn: 363336
2019-06-14 01:24:12 +02:00
|
|
|
{"sparc", {ELF::EM_SPARC, false, false}},
|
|
|
|
{"sparcel", {ELF::EM_SPARC, false, true}},
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"x86-64", {ELF::EM_X86_64, true, true}},
|
2018-10-12 00:33:50 +02:00
|
|
|
};
|
|
|
|
|
2019-02-21 18:05:19 +01:00
|
|
|
static Expected<const MachineInfo &> getMachineInfo(StringRef Arch) {
|
2018-10-12 00:33:50 +02:00
|
|
|
auto Iter = ArchMap.find(Arch);
|
|
|
|
if (Iter == std::end(ArchMap))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"invalid architecture: '%s'", Arch.str().c_str());
|
2018-10-12 00:33:50 +02:00
|
|
|
return Iter->getValue();
|
|
|
|
}
|
|
|
|
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
// FIXME: consolidate with the bfd parsing used by lld.
|
2019-06-26 05:00:57 +02:00
|
|
|
static const StringMap<MachineInfo> OutputFormatMap{
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
// Name, {EMachine, 64bit, LittleEndian}
|
[llvm-objcopy] Add RISC-V support for -B/-O
Reviewers: jorgbrown, espindola, alexshap, jhenderson
Subscribers: emaste, arichardson, fedor.sergeev, jakehehrlich, kito-cheng, shiva0217, MaskRay, rogfer01, rkruppe, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61272
llvm-svn: 359568
2019-04-30 17:21:36 +02:00
|
|
|
// x86
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"elf32-i386", {ELF::EM_386, false, true}},
|
[llvm-objcopy] Add RISC-V support for -B/-O
Reviewers: jorgbrown, espindola, alexshap, jhenderson
Subscribers: emaste, arichardson, fedor.sergeev, jakehehrlich, kito-cheng, shiva0217, MaskRay, rogfer01, rkruppe, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61272
llvm-svn: 359568
2019-04-30 17:21:36 +02:00
|
|
|
{"elf32-x86-64", {ELF::EM_X86_64, false, true}},
|
|
|
|
{"elf64-x86-64", {ELF::EM_X86_64, true, true}},
|
|
|
|
// Intel MCU
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"elf32-iamcu", {ELF::EM_IAMCU, false, true}},
|
[llvm-objcopy] Add RISC-V support for -B/-O
Reviewers: jorgbrown, espindola, alexshap, jhenderson
Subscribers: emaste, arichardson, fedor.sergeev, jakehehrlich, kito-cheng, shiva0217, MaskRay, rogfer01, rkruppe, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61272
llvm-svn: 359568
2019-04-30 17:21:36 +02:00
|
|
|
// ARM
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"elf32-littlearm", {ELF::EM_ARM, false, true}},
|
[llvm-objcopy] Add RISC-V support for -B/-O
Reviewers: jorgbrown, espindola, alexshap, jhenderson
Subscribers: emaste, arichardson, fedor.sergeev, jakehehrlich, kito-cheng, shiva0217, MaskRay, rogfer01, rkruppe, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61272
llvm-svn: 359568
2019-04-30 17:21:36 +02:00
|
|
|
// ARM AArch64
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"elf64-aarch64", {ELF::EM_AARCH64, true, true}},
|
|
|
|
{"elf64-littleaarch64", {ELF::EM_AARCH64, true, true}},
|
[llvm-objcopy] Add RISC-V support for -B/-O
Reviewers: jorgbrown, espindola, alexshap, jhenderson
Subscribers: emaste, arichardson, fedor.sergeev, jakehehrlich, kito-cheng, shiva0217, MaskRay, rogfer01, rkruppe, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61272
llvm-svn: 359568
2019-04-30 17:21:36 +02:00
|
|
|
// RISC-V
|
|
|
|
{"elf32-littleriscv", {ELF::EM_RISCV, false, true}},
|
|
|
|
{"elf64-littleriscv", {ELF::EM_RISCV, true, true}},
|
|
|
|
// PowerPC
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"elf32-powerpc", {ELF::EM_PPC, false, false}},
|
|
|
|
{"elf32-powerpcle", {ELF::EM_PPC, false, true}},
|
|
|
|
{"elf64-powerpc", {ELF::EM_PPC64, true, false}},
|
|
|
|
{"elf64-powerpcle", {ELF::EM_PPC64, true, true}},
|
[llvm-objcopy] Add RISC-V support for -B/-O
Reviewers: jorgbrown, espindola, alexshap, jhenderson
Subscribers: emaste, arichardson, fedor.sergeev, jakehehrlich, kito-cheng, shiva0217, MaskRay, rogfer01, rkruppe, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61272
llvm-svn: 359568
2019-04-30 17:21:36 +02:00
|
|
|
// MIPS
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"elf32-bigmips", {ELF::EM_MIPS, false, false}},
|
|
|
|
{"elf32-ntradbigmips", {ELF::EM_MIPS, false, false}},
|
|
|
|
{"elf32-ntradlittlemips", {ELF::EM_MIPS, false, true}},
|
[llvm-objcopy] Add RISC-V support for -B/-O
Reviewers: jorgbrown, espindola, alexshap, jhenderson
Subscribers: emaste, arichardson, fedor.sergeev, jakehehrlich, kito-cheng, shiva0217, MaskRay, rogfer01, rkruppe, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61272
llvm-svn: 359568
2019-04-30 17:21:36 +02:00
|
|
|
{"elf32-tradbigmips", {ELF::EM_MIPS, false, false}},
|
|
|
|
{"elf32-tradlittlemips", {ELF::EM_MIPS, false, true}},
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
{"elf64-tradbigmips", {ELF::EM_MIPS, true, false}},
|
|
|
|
{"elf64-tradlittlemips", {ELF::EM_MIPS, true, true}},
|
[llvm-objcopy] Add elf32-sparc and elf32-sparcel target
Summary:
The "sparc"/"sparcel" architectures appears in ArchMap (used by -B option) but not in OutputFormatMap (used by -I/-O option). Add their targets into OutputFormatMap for consistency.
Note that AFAIK there're no targets for 32-bit little-endian SPARC ("elf32-sparcel") in GNU binutils.
Reviewers: espindola, alexshap, rupprecht, jhenderson, compnerd, jakehehrlich
Reviewed By: jhenderson, compnerd, jakehehrlich
Subscribers: jyknight, emaste, arichardson, fedor.sergeev, jakehehrlich, MaskRay, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D63238
llvm-svn: 363524
2019-06-17 04:03:45 +02:00
|
|
|
// SPARC
|
|
|
|
{"elf32-sparc", {ELF::EM_SPARC, false, false}},
|
|
|
|
{"elf32-sparcel", {ELF::EM_SPARC, false, true}},
|
2019-01-07 17:59:12 +01:00
|
|
|
};
|
|
|
|
|
2019-06-26 05:00:57 +02:00
|
|
|
static Expected<MachineInfo> getOutputFormatMachineInfo(StringRef Format) {
|
|
|
|
StringRef OriginalFormat = Format;
|
|
|
|
bool IsFreeBSD = Format.consume_back("-freebsd");
|
|
|
|
auto Iter = OutputFormatMap.find(Format);
|
|
|
|
if (Iter == std::end(OutputFormatMap))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"invalid output format: '%s'",
|
2019-06-26 05:00:57 +02:00
|
|
|
OriginalFormat.str().c_str());
|
[llvm-objcopy] Support full list of bfd targets that lld uses.
Summary:
This change takes the full list of bfd targets that lld supports (see `ScriptParser.cpp`), including generic handling for `*-freebsd` targets (which uses the same settings but with a FreeBSD OSABI). In particular this adds mips support for `--output-target` (but not yet via `--binary-architecture`).
lld and llvm-objcopy use their own different custom data structures, so I'd prefer to check this in as-is (add support directly in llvm-objcopy, including all the test coverage) and do a separate NFC patch(s) that consolidate the two by putting this mapping into libobject.
See [[ https://bugs.llvm.org/show_bug.cgi?id=41462 | PR41462 ]].
Reviewers: jhenderson, jakehehrlich, espindola, alexshap, arichardson
Reviewed By: arichardson
Subscribers: fedor.sergeev, emaste, sdardis, krytarowski, atanasyan, llvm-commits, MaskRay, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60773
llvm-svn: 358562
2019-04-17 09:42:31 +02:00
|
|
|
MachineInfo MI = Iter->getValue();
|
|
|
|
if (IsFreeBSD)
|
|
|
|
MI.OSABI = ELF::ELFOSABI_FREEBSD;
|
2019-06-26 05:00:57 +02:00
|
|
|
return {MI};
|
2019-01-07 17:59:12 +01:00
|
|
|
}
|
|
|
|
|
2019-02-21 18:05:19 +01:00
|
|
|
static Error addSymbolsFromFile(std::vector<NameOrRegex> &Symbols,
|
|
|
|
BumpPtrAllocator &Alloc, StringRef Filename,
|
|
|
|
bool UseRegex) {
|
2019-02-04 19:38:00 +01:00
|
|
|
StringSaver Saver(Alloc);
|
2018-10-12 00:33:50 +02:00
|
|
|
SmallVector<StringRef, 16> Lines;
|
|
|
|
auto BufOrErr = MemoryBuffer::getFile(Filename);
|
|
|
|
if (!BufOrErr)
|
2019-02-21 18:05:19 +01:00
|
|
|
return createFileError(Filename, BufOrErr.getError());
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
BufOrErr.get()->getBuffer().split(Lines, '\n');
|
|
|
|
for (StringRef Line : Lines) {
|
|
|
|
// Ignore everything after '#', trim whitespace, and only add the symbol if
|
|
|
|
// it's not empty.
|
|
|
|
auto TrimmedLine = Line.split('#').first.trim();
|
|
|
|
if (!TrimmedLine.empty())
|
2019-02-06 12:00:07 +01:00
|
|
|
Symbols.emplace_back(Saver.save(TrimmedLine), UseRegex);
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
2019-02-21 18:05:19 +01:00
|
|
|
|
|
|
|
return Error::success();
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
|
|
|
|
2019-02-06 12:00:07 +01:00
|
|
|
NameOrRegex::NameOrRegex(StringRef Pattern, bool IsRegex) {
|
|
|
|
if (!IsRegex) {
|
|
|
|
Name = Pattern;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SmallVector<char, 32> Data;
|
|
|
|
R = std::make_shared<Regex>(
|
|
|
|
("^" + Pattern.ltrim('^').rtrim('$') + "$").toStringRef(Data));
|
|
|
|
}
|
|
|
|
|
2019-02-08 11:33:16 +01:00
|
|
|
static Error addSymbolsToRenameFromFile(StringMap<StringRef> &SymbolsToRename,
|
|
|
|
BumpPtrAllocator &Alloc,
|
|
|
|
StringRef Filename) {
|
|
|
|
StringSaver Saver(Alloc);
|
|
|
|
SmallVector<StringRef, 16> Lines;
|
|
|
|
auto BufOrErr = MemoryBuffer::getFile(Filename);
|
|
|
|
if (!BufOrErr)
|
2019-02-11 10:49:37 +01:00
|
|
|
return createFileError(Filename, BufOrErr.getError());
|
2019-02-08 11:33:16 +01:00
|
|
|
|
|
|
|
BufOrErr.get()->getBuffer().split(Lines, '\n');
|
|
|
|
size_t NumLines = Lines.size();
|
|
|
|
for (size_t LineNo = 0; LineNo < NumLines; ++LineNo) {
|
|
|
|
StringRef TrimmedLine = Lines[LineNo].split('#').first.trim();
|
|
|
|
if (TrimmedLine.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::pair<StringRef, StringRef> Pair = Saver.save(TrimmedLine).split(' ');
|
|
|
|
StringRef NewName = Pair.second.trim();
|
|
|
|
if (NewName.empty())
|
|
|
|
return createStringError(errc::invalid_argument,
|
|
|
|
"%s:%zu: missing new symbol name",
|
|
|
|
Filename.str().c_str(), LineNo + 1);
|
|
|
|
SymbolsToRename.insert({Pair.first, NewName});
|
|
|
|
}
|
|
|
|
return Error::success();
|
|
|
|
}
|
2019-02-26 10:24:22 +01:00
|
|
|
|
|
|
|
template <class T> static ErrorOr<T> getAsInteger(StringRef Val) {
|
|
|
|
T Result;
|
|
|
|
if (Val.getAsInteger(0, Result))
|
|
|
|
return errc::invalid_argument;
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2018-10-12 00:33:50 +02:00
|
|
|
// ParseObjcopyOptions returns the config and sets the input arguments. If a
|
|
|
|
// help flag is set then ParseObjcopyOptions will print the help messege and
|
|
|
|
// exit.
|
2019-02-21 18:05:19 +01:00
|
|
|
Expected<DriverConfig> parseObjcopyOptions(ArrayRef<const char *> ArgsArr) {
|
2019-02-04 19:38:00 +01:00
|
|
|
DriverConfig DC;
|
2018-10-12 00:33:50 +02:00
|
|
|
ObjcopyOptTable T;
|
|
|
|
unsigned MissingArgumentIndex, MissingArgumentCount;
|
|
|
|
llvm::opt::InputArgList InputArgs =
|
|
|
|
T.ParseArgs(ArgsArr, MissingArgumentIndex, MissingArgumentCount);
|
|
|
|
|
|
|
|
if (InputArgs.size() == 0) {
|
|
|
|
T.PrintHelp(errs(), "llvm-objcopy input [output]", "objcopy tool");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (InputArgs.hasArg(OBJCOPY_help)) {
|
|
|
|
T.PrintHelp(outs(), "llvm-objcopy input [output]", "objcopy tool");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (InputArgs.hasArg(OBJCOPY_version)) {
|
2018-11-28 07:51:50 +01:00
|
|
|
outs() << "llvm-objcopy, compatible with GNU objcopy\n";
|
2018-10-12 00:33:50 +02:00
|
|
|
cl::PrintVersionMessage();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SmallVector<const char *, 2> Positional;
|
|
|
|
|
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_UNKNOWN))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument, "unknown argument '%s'",
|
|
|
|
Arg->getAsString(InputArgs).c_str());
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_INPUT))
|
|
|
|
Positional.push_back(Arg->getValue());
|
|
|
|
|
|
|
|
if (Positional.empty())
|
2019-06-14 04:04:02 +02:00
|
|
|
return createStringError(errc::invalid_argument, "no input file specified");
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
if (Positional.size() > 2)
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"too many positional arguments");
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
CopyConfig Config;
|
|
|
|
Config.InputFilename = Positional[0];
|
|
|
|
Config.OutputFilename = Positional[Positional.size() == 1 ? 0 : 1];
|
2018-10-12 02:36:01 +02:00
|
|
|
if (InputArgs.hasArg(OBJCOPY_target) &&
|
|
|
|
(InputArgs.hasArg(OBJCOPY_input_target) ||
|
|
|
|
InputArgs.hasArg(OBJCOPY_output_target)))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
|
|
|
"--target cannot be used with --input-target or --output-target");
|
2018-10-12 02:36:01 +02:00
|
|
|
|
2019-02-06 12:00:07 +01:00
|
|
|
bool UseRegex = InputArgs.hasArg(OBJCOPY_regex);
|
2018-10-12 02:36:01 +02:00
|
|
|
if (InputArgs.hasArg(OBJCOPY_target)) {
|
2019-06-26 05:00:57 +02:00
|
|
|
Config.InputFormat = InputArgs.getLastArgValue(OBJCOPY_target);
|
|
|
|
Config.OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target);
|
2018-10-12 02:36:01 +02:00
|
|
|
} else {
|
2019-06-26 05:00:57 +02:00
|
|
|
Config.InputFormat = InputArgs.getLastArgValue(OBJCOPY_input_target);
|
|
|
|
Config.OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target);
|
2018-10-12 02:36:01 +02:00
|
|
|
}
|
2019-06-26 05:00:57 +02:00
|
|
|
if (Config.InputFormat == "binary") {
|
2018-10-12 00:33:50 +02:00
|
|
|
auto BinaryArch = InputArgs.getLastArgValue(OBJCOPY_binary_architecture);
|
|
|
|
if (BinaryArch.empty())
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"specified binary input without specifiying an architecture");
|
2019-02-21 18:05:19 +01:00
|
|
|
Expected<const MachineInfo &> MI = getMachineInfo(BinaryArch);
|
|
|
|
if (!MI)
|
|
|
|
return MI.takeError();
|
|
|
|
Config.BinaryArch = *MI;
|
|
|
|
}
|
2019-06-26 05:00:57 +02:00
|
|
|
if (!Config.OutputFormat.empty() && Config.OutputFormat != "binary" &&
|
|
|
|
Config.OutputFormat != "ihex") {
|
|
|
|
Expected<MachineInfo> MI = getOutputFormatMachineInfo(Config.OutputFormat);
|
|
|
|
if (!MI)
|
|
|
|
return MI.takeError();
|
|
|
|
Config.OutputArch = *MI;
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (auto Arg = InputArgs.getLastArg(OBJCOPY_compress_debug_sections,
|
|
|
|
OBJCOPY_compress_debug_sections_eq)) {
|
|
|
|
Config.CompressionType = DebugCompressionType::Z;
|
|
|
|
|
|
|
|
if (Arg->getOption().getID() == OBJCOPY_compress_debug_sections_eq) {
|
|
|
|
Config.CompressionType =
|
|
|
|
StringSwitch<DebugCompressionType>(
|
|
|
|
InputArgs.getLastArgValue(OBJCOPY_compress_debug_sections_eq))
|
|
|
|
.Case("zlib-gnu", DebugCompressionType::GNU)
|
|
|
|
.Case("zlib", DebugCompressionType::Z)
|
|
|
|
.Default(DebugCompressionType::None);
|
|
|
|
if (Config.CompressionType == DebugCompressionType::None)
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"invalid or unsupported --compress-debug-sections format: %s",
|
2019-02-21 18:05:19 +01:00
|
|
|
InputArgs.getLastArgValue(OBJCOPY_compress_debug_sections_eq)
|
|
|
|
.str()
|
|
|
|
.c_str());
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
2019-03-05 12:32:14 +01:00
|
|
|
if (!zlib::isAvailable())
|
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
|
|
|
"LLVM was not compiled with LLVM_ENABLE_ZLIB: can not compress");
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Config.AddGnuDebugLink = InputArgs.getLastArgValue(OBJCOPY_add_gnu_debuglink);
|
2019-05-14 12:59:04 +02:00
|
|
|
// The gnu_debuglink's target is expected to not change or else its CRC would
|
|
|
|
// become invalidated and get rejected. We can avoid recalculating the
|
|
|
|
// checksum for every target file inside an archive by precomputing the CRC
|
|
|
|
// here. This prevents a significant amount of I/O.
|
|
|
|
if (!Config.AddGnuDebugLink.empty()) {
|
|
|
|
auto DebugOrErr = MemoryBuffer::getFile(Config.AddGnuDebugLink);
|
|
|
|
if (!DebugOrErr)
|
|
|
|
return createFileError(Config.AddGnuDebugLink, DebugOrErr.getError());
|
|
|
|
auto Debug = std::move(*DebugOrErr);
|
|
|
|
JamCRC CRC;
|
|
|
|
CRC.update(
|
|
|
|
ArrayRef<char>(Debug->getBuffer().data(), Debug->getBuffer().size()));
|
|
|
|
// The CRC32 value needs to be complemented because the JamCRC doesn't
|
|
|
|
// finalize the CRC32 value.
|
|
|
|
Config.GnuDebugLinkCRC32 = ~CRC.getCRC();
|
|
|
|
}
|
2018-12-03 20:49:23 +01:00
|
|
|
Config.BuildIdLinkDir = InputArgs.getLastArgValue(OBJCOPY_build_id_link_dir);
|
|
|
|
if (InputArgs.hasArg(OBJCOPY_build_id_link_input))
|
|
|
|
Config.BuildIdLinkInput =
|
|
|
|
InputArgs.getLastArgValue(OBJCOPY_build_id_link_input);
|
|
|
|
if (InputArgs.hasArg(OBJCOPY_build_id_link_output))
|
|
|
|
Config.BuildIdLinkOutput =
|
|
|
|
InputArgs.getLastArgValue(OBJCOPY_build_id_link_output);
|
|
|
|
Config.SplitDWO = InputArgs.getLastArgValue(OBJCOPY_split_dwo);
|
2018-10-12 00:33:50 +02:00
|
|
|
Config.SymbolsPrefix = InputArgs.getLastArgValue(OBJCOPY_prefix_symbols);
|
2019-05-08 11:49:35 +02:00
|
|
|
Config.AllocSectionsPrefix =
|
|
|
|
InputArgs.getLastArgValue(OBJCOPY_prefix_alloc_sections);
|
2019-06-07 19:57:48 +02:00
|
|
|
if (auto Arg = InputArgs.getLastArg(OBJCOPY_extract_partition))
|
|
|
|
Config.ExtractPartition = Arg->getValue();
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_redefine_symbol)) {
|
|
|
|
if (!StringRef(Arg->getValue()).contains('='))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"bad format for --redefine-sym");
|
2018-10-12 00:33:50 +02:00
|
|
|
auto Old2New = StringRef(Arg->getValue()).split('=');
|
|
|
|
if (!Config.SymbolsToRename.insert(Old2New).second)
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"multiple redefinition of symbol '%s'",
|
2019-02-21 18:05:19 +01:00
|
|
|
Old2New.first.str().c_str());
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
|
|
|
|
2019-02-08 11:33:16 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_redefine_symbols))
|
|
|
|
if (Error E = addSymbolsToRenameFromFile(Config.SymbolsToRename, DC.Alloc,
|
|
|
|
Arg->getValue()))
|
2019-02-21 18:05:19 +01:00
|
|
|
return std::move(E);
|
2019-02-08 11:33:16 +01:00
|
|
|
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_rename_section)) {
|
2019-02-21 18:05:19 +01:00
|
|
|
Expected<SectionRename> SR =
|
|
|
|
parseRenameSectionValue(StringRef(Arg->getValue()));
|
|
|
|
if (!SR)
|
|
|
|
return SR.takeError();
|
|
|
|
if (!Config.SectionsToRename.try_emplace(SR->OriginalName, *SR).second)
|
|
|
|
return createStringError(errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"multiple renames of section '%s'",
|
2019-02-21 18:05:19 +01:00
|
|
|
SR->OriginalName.str().c_str());
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_set_section_flags)) {
|
2019-02-21 18:05:19 +01:00
|
|
|
Expected<SectionFlagsUpdate> SFU =
|
|
|
|
parseSetSectionFlagValue(Arg->getValue());
|
|
|
|
if (!SFU)
|
|
|
|
return SFU.takeError();
|
|
|
|
if (!Config.SetSectionFlags.try_emplace(SFU->Name, *SFU).second)
|
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"--set-section-flags set multiple times for section '%s'",
|
2019-02-21 18:05:19 +01:00
|
|
|
SFU->Name.str().c_str());
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
}
|
|
|
|
// Prohibit combinations of --set-section-flags when the section name is used
|
|
|
|
// by --rename-section, either as a source or a destination.
|
|
|
|
for (const auto &E : Config.SectionsToRename) {
|
|
|
|
const SectionRename &SR = E.second;
|
|
|
|
if (Config.SetSectionFlags.count(SR.OriginalName))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
|
|
|
"--set-section-flags=%s conflicts with --rename-section=%s=%s",
|
|
|
|
SR.OriginalName.str().c_str(), SR.OriginalName.str().c_str(),
|
|
|
|
SR.NewName.str().c_str());
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
if (Config.SetSectionFlags.count(SR.NewName))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
|
|
|
"--set-section-flags=%s conflicts with --rename-section=%s=%s",
|
|
|
|
SR.NewName.str().c_str(), SR.OriginalName.str().c_str(),
|
|
|
|
SR.NewName.str().c_str());
|
[llvm-objcopy] Implement --set-section-flags.
Summary:
--set-section-flags is used to change the section flags (e.g. SHF_ALLOC) for given sections. The flags allowed are the same from the existing --rename-section=.old=.new[,flags] feature.
Additionally, make sure that --set-section-flag cannot be used with --rename-section (either the source or destination), since --rename-section accepts flags. This avoids ambiguity for something like "--rename-section=.foo=.bar,alloc --set-section-flag=.bar,code".
Reviewers: jhenderson, jakehehrlich, alexshap, espindola
Reviewed By: jhenderson, jakehehrlich
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57198
llvm-svn: 352505
2019-01-29 16:05:38 +01:00
|
|
|
}
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_remove_section))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.ToRemove.emplace_back(Arg->getValue(), UseRegex);
|
[llvm-objcopy] Rename --keep to --keep-section.
Summary:
llvm-objcopy/strip support `--keep` (for sections) and `--keep-symbols` (for symbols). For consistency and clarity, rename `--keep` to `--keep-section`.
In fact, for GNU compatability, -K is --keep-symbol, so it's weird that the alias `-K` is not the same as the short-ish `--keep`.
Reviewers: jakehehrlich, jhenderson, alexshap, MaskRay, espindola
Reviewed By: jakehehrlich, MaskRay
Subscribers: emaste, arichardson, llvm-commits
Differential Revision: https://reviews.llvm.org/D54477
llvm-svn: 346782
2018-11-13 20:32:27 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_keep_section))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.KeepSection.emplace_back(Arg->getValue(), UseRegex);
|
2018-12-06 03:03:53 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_only_section))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.OnlySection.emplace_back(Arg->getValue(), UseRegex);
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_add_section))
|
|
|
|
Config.AddSection.push_back(Arg->getValue());
|
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_dump_section))
|
|
|
|
Config.DumpSection.push_back(Arg->getValue());
|
|
|
|
Config.StripAll = InputArgs.hasArg(OBJCOPY_strip_all);
|
|
|
|
Config.StripAllGNU = InputArgs.hasArg(OBJCOPY_strip_all_gnu);
|
|
|
|
Config.StripDebug = InputArgs.hasArg(OBJCOPY_strip_debug);
|
|
|
|
Config.StripDWO = InputArgs.hasArg(OBJCOPY_strip_dwo);
|
|
|
|
Config.StripSections = InputArgs.hasArg(OBJCOPY_strip_sections);
|
|
|
|
Config.StripNonAlloc = InputArgs.hasArg(OBJCOPY_strip_non_alloc);
|
|
|
|
Config.StripUnneeded = InputArgs.hasArg(OBJCOPY_strip_unneeded);
|
|
|
|
Config.ExtractDWO = InputArgs.hasArg(OBJCOPY_extract_dwo);
|
2019-06-07 19:57:48 +02:00
|
|
|
Config.ExtractMainPartition =
|
|
|
|
InputArgs.hasArg(OBJCOPY_extract_main_partition);
|
2018-10-12 00:33:50 +02:00
|
|
|
Config.LocalizeHidden = InputArgs.hasArg(OBJCOPY_localize_hidden);
|
|
|
|
Config.Weaken = InputArgs.hasArg(OBJCOPY_weaken);
|
[llvm-objcopy] Support -X|--discard-locals.
Summary:
This adds support for the --discard-locals flag, which acts similarly to --discard-all, except it only applies to compiler-generated symbols (i.e. symbols starting with `.L` in ELF).
I am not sure about COFF local symbols: those appear to also use `.L` in most cases, but also use just `L` in other cases, so for now I am just leaving it unimplemented there.
Fixes PR36160
Reviewers: jhenderson, alexshap, jakehehrlich, mstorsjo, espindola
Reviewed By: jhenderson
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57248
llvm-svn: 352626
2019-01-30 15:58:13 +01:00
|
|
|
if (InputArgs.hasArg(OBJCOPY_discard_all, OBJCOPY_discard_locals))
|
|
|
|
Config.DiscardMode =
|
|
|
|
InputArgs.hasFlag(OBJCOPY_discard_all, OBJCOPY_discard_locals)
|
|
|
|
? DiscardType::All
|
|
|
|
: DiscardType::Locals;
|
2018-10-12 00:33:50 +02:00
|
|
|
Config.OnlyKeepDebug = InputArgs.hasArg(OBJCOPY_only_keep_debug);
|
|
|
|
Config.KeepFileSymbols = InputArgs.hasArg(OBJCOPY_keep_file_symbols);
|
|
|
|
Config.DecompressDebugSections =
|
|
|
|
InputArgs.hasArg(OBJCOPY_decompress_debug_sections);
|
2019-05-03 16:14:01 +02:00
|
|
|
if (Config.DiscardMode == DiscardType::All)
|
|
|
|
Config.StripDebug = true;
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_localize_symbol))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.SymbolsToLocalize.emplace_back(Arg->getValue(), UseRegex);
|
2019-02-08 15:37:54 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_localize_symbols))
|
2019-02-21 18:05:19 +01:00
|
|
|
if (Error E = addSymbolsFromFile(Config.SymbolsToLocalize, DC.Alloc,
|
|
|
|
Arg->getValue(), UseRegex))
|
|
|
|
return std::move(E);
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_keep_global_symbol))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.SymbolsToKeepGlobal.emplace_back(Arg->getValue(), UseRegex);
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_keep_global_symbols))
|
2019-02-21 18:05:19 +01:00
|
|
|
if (Error E = addSymbolsFromFile(Config.SymbolsToKeepGlobal, DC.Alloc,
|
|
|
|
Arg->getValue(), UseRegex))
|
|
|
|
return std::move(E);
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_globalize_symbol))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.SymbolsToGlobalize.emplace_back(Arg->getValue(), UseRegex);
|
2019-02-08 15:37:54 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_globalize_symbols))
|
2019-02-21 18:05:19 +01:00
|
|
|
if (Error E = addSymbolsFromFile(Config.SymbolsToGlobalize, DC.Alloc,
|
|
|
|
Arg->getValue(), UseRegex))
|
|
|
|
return std::move(E);
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_weaken_symbol))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.SymbolsToWeaken.emplace_back(Arg->getValue(), UseRegex);
|
2019-02-08 15:37:54 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_weaken_symbols))
|
2019-02-21 18:05:19 +01:00
|
|
|
if (Error E = addSymbolsFromFile(Config.SymbolsToWeaken, DC.Alloc,
|
|
|
|
Arg->getValue(), UseRegex))
|
|
|
|
return std::move(E);
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_strip_symbol))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.SymbolsToRemove.emplace_back(Arg->getValue(), UseRegex);
|
2019-02-08 15:37:54 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_strip_symbols))
|
2019-02-21 18:05:19 +01:00
|
|
|
if (Error E = addSymbolsFromFile(Config.SymbolsToRemove, DC.Alloc,
|
|
|
|
Arg->getValue(), UseRegex))
|
|
|
|
return std::move(E);
|
2019-02-13 08:34:54 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_strip_unneeded_symbol))
|
|
|
|
Config.UnneededSymbolsToRemove.emplace_back(Arg->getValue(), UseRegex);
|
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_strip_unneeded_symbols))
|
2019-02-21 18:05:19 +01:00
|
|
|
if (Error E = addSymbolsFromFile(Config.UnneededSymbolsToRemove, DC.Alloc,
|
|
|
|
Arg->getValue(), UseRegex))
|
|
|
|
return std::move(E);
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_keep_symbol))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.SymbolsToKeep.emplace_back(Arg->getValue(), UseRegex);
|
2019-04-01 20:12:43 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_keep_symbols))
|
|
|
|
if (Error E = addSymbolsFromFile(Config.SymbolsToKeep, DC.Alloc,
|
|
|
|
Arg->getValue(), UseRegex))
|
|
|
|
return std::move(E);
|
2019-03-13 23:26:01 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(OBJCOPY_add_symbol)) {
|
|
|
|
Expected<NewSymbolInfo> NSI = parseNewSymbolInfo(Arg->getValue());
|
|
|
|
if (!NSI)
|
|
|
|
return NSI.takeError();
|
|
|
|
Config.SymbolsToAdd.push_back(*NSI);
|
|
|
|
}
|
2018-10-12 00:33:50 +02:00
|
|
|
|
2019-04-18 11:13:30 +02:00
|
|
|
Config.AllowBrokenLinks = InputArgs.hasArg(OBJCOPY_allow_broken_links);
|
|
|
|
|
2018-11-01 18:36:37 +01:00
|
|
|
Config.DeterministicArchives = InputArgs.hasFlag(
|
|
|
|
OBJCOPY_enable_deterministic_archives,
|
|
|
|
OBJCOPY_disable_deterministic_archives, /*default=*/true);
|
|
|
|
|
2018-10-12 00:33:50 +02:00
|
|
|
Config.PreserveDates = InputArgs.hasArg(OBJCOPY_preserve_dates);
|
|
|
|
|
2019-06-15 07:32:23 +02:00
|
|
|
if (Config.PreserveDates &&
|
|
|
|
(Config.OutputFilename == "-" || Config.InputFilename == "-"))
|
|
|
|
return createStringError(errc::invalid_argument,
|
|
|
|
"--preserve-dates requires a file");
|
|
|
|
|
2019-02-26 10:24:22 +01:00
|
|
|
for (auto Arg : InputArgs)
|
|
|
|
if (Arg->getOption().matches(OBJCOPY_set_start)) {
|
|
|
|
auto EAddr = getAsInteger<uint64_t>(Arg->getValue());
|
|
|
|
if (!EAddr)
|
|
|
|
return createStringError(
|
|
|
|
EAddr.getError(), "bad entry point address: '%s'", Arg->getValue());
|
|
|
|
|
|
|
|
Config.EntryExpr = [EAddr](uint64_t) { return *EAddr; };
|
|
|
|
} else if (Arg->getOption().matches(OBJCOPY_change_start)) {
|
|
|
|
auto EIncr = getAsInteger<int64_t>(Arg->getValue());
|
|
|
|
if (!EIncr)
|
|
|
|
return createStringError(EIncr.getError(),
|
|
|
|
"bad entry point increment: '%s'",
|
|
|
|
Arg->getValue());
|
|
|
|
auto Expr = Config.EntryExpr ? std::move(Config.EntryExpr)
|
|
|
|
: [](uint64_t A) { return A; };
|
|
|
|
Config.EntryExpr = [Expr, EIncr](uint64_t EAddr) {
|
|
|
|
return Expr(EAddr) + *EIncr;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-12 00:33:50 +02:00
|
|
|
if (Config.DecompressDebugSections &&
|
|
|
|
Config.CompressionType != DebugCompressionType::None) {
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"cannot specify both --compress-debug-sections and "
|
|
|
|
"--decompress-debug-sections");
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Config.DecompressDebugSections && !zlib::isAvailable())
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
|
|
|
"LLVM was not compiled with LLVM_ENABLE_ZLIB: cannot decompress");
|
2018-10-12 00:33:50 +02:00
|
|
|
|
2019-06-07 19:57:48 +02:00
|
|
|
if (Config.ExtractPartition && Config.ExtractMainPartition)
|
|
|
|
return createStringError(errc::invalid_argument,
|
|
|
|
"cannot specify --extract-partition together with "
|
|
|
|
"--extract-main-partition");
|
|
|
|
|
2018-10-23 22:54:51 +02:00
|
|
|
DC.CopyConfigs.push_back(std::move(Config));
|
2019-02-21 18:24:55 +01:00
|
|
|
return std::move(DC);
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ParseStripOptions returns the config and sets the input arguments. If a
|
|
|
|
// help flag is set then ParseStripOptions will print the help messege and
|
|
|
|
// exit.
|
2019-06-18 02:39:10 +02:00
|
|
|
Expected<DriverConfig>
|
|
|
|
parseStripOptions(ArrayRef<const char *> ArgsArr,
|
|
|
|
std::function<Error(Error)> ErrorCallback) {
|
2018-10-12 00:33:50 +02:00
|
|
|
StripOptTable T;
|
|
|
|
unsigned MissingArgumentIndex, MissingArgumentCount;
|
|
|
|
llvm::opt::InputArgList InputArgs =
|
|
|
|
T.ParseArgs(ArgsArr, MissingArgumentIndex, MissingArgumentCount);
|
|
|
|
|
|
|
|
if (InputArgs.size() == 0) {
|
|
|
|
T.PrintHelp(errs(), "llvm-strip [options] file...", "strip tool");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (InputArgs.hasArg(STRIP_help)) {
|
|
|
|
T.PrintHelp(outs(), "llvm-strip [options] file...", "strip tool");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (InputArgs.hasArg(STRIP_version)) {
|
2018-11-28 07:51:50 +01:00
|
|
|
outs() << "llvm-strip, compatible with GNU strip\n";
|
2018-10-12 00:33:50 +02:00
|
|
|
cl::PrintVersionMessage();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2019-06-15 07:32:23 +02:00
|
|
|
SmallVector<StringRef, 2> Positional;
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(STRIP_UNKNOWN))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(errc::invalid_argument, "unknown argument '%s'",
|
|
|
|
Arg->getAsString(InputArgs).c_str());
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(STRIP_INPUT))
|
|
|
|
Positional.push_back(Arg->getValue());
|
|
|
|
|
|
|
|
if (Positional.empty())
|
2019-06-14 04:04:02 +02:00
|
|
|
return createStringError(errc::invalid_argument, "no input file specified");
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
if (Positional.size() > 1 && InputArgs.hasArg(STRIP_output))
|
2019-02-21 18:05:19 +01:00
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
2019-06-14 04:04:02 +02:00
|
|
|
"multiple input files cannot be used in combination with -o");
|
2018-10-12 00:33:50 +02:00
|
|
|
|
|
|
|
CopyConfig Config;
|
2019-02-06 12:00:07 +01:00
|
|
|
bool UseRegexp = InputArgs.hasArg(STRIP_regex);
|
2019-04-18 11:13:30 +02:00
|
|
|
Config.AllowBrokenLinks = InputArgs.hasArg(STRIP_allow_broken_links);
|
2018-10-12 00:33:50 +02:00
|
|
|
Config.StripDebug = InputArgs.hasArg(STRIP_strip_debug);
|
|
|
|
|
[llvm-objcopy] Support -X|--discard-locals.
Summary:
This adds support for the --discard-locals flag, which acts similarly to --discard-all, except it only applies to compiler-generated symbols (i.e. symbols starting with `.L` in ELF).
I am not sure about COFF local symbols: those appear to also use `.L` in most cases, but also use just `L` in other cases, so for now I am just leaving it unimplemented there.
Fixes PR36160
Reviewers: jhenderson, alexshap, jakehehrlich, mstorsjo, espindola
Reviewed By: jhenderson
Subscribers: llvm-commits, emaste, arichardson
Differential Revision: https://reviews.llvm.org/D57248
llvm-svn: 352626
2019-01-30 15:58:13 +01:00
|
|
|
if (InputArgs.hasArg(STRIP_discard_all, STRIP_discard_locals))
|
|
|
|
Config.DiscardMode =
|
|
|
|
InputArgs.hasFlag(STRIP_discard_all, STRIP_discard_locals)
|
|
|
|
? DiscardType::All
|
|
|
|
: DiscardType::Locals;
|
2018-10-12 00:33:50 +02:00
|
|
|
Config.StripUnneeded = InputArgs.hasArg(STRIP_strip_unneeded);
|
2019-05-02 13:53:02 +02:00
|
|
|
if (auto Arg = InputArgs.getLastArg(STRIP_strip_all, STRIP_no_strip_all))
|
|
|
|
Config.StripAll = Arg->getOption().getID() == STRIP_strip_all;
|
2018-11-01 18:48:46 +01:00
|
|
|
Config.StripAllGNU = InputArgs.hasArg(STRIP_strip_all_gnu);
|
2019-03-14 22:51:42 +01:00
|
|
|
Config.OnlyKeepDebug = InputArgs.hasArg(STRIP_only_keep_debug);
|
2019-02-01 16:25:15 +01:00
|
|
|
Config.KeepFileSymbols = InputArgs.hasArg(STRIP_keep_file_symbols);
|
2018-10-12 00:33:50 +02:00
|
|
|
|
[llvm-objcopy] Rename --keep to --keep-section.
Summary:
llvm-objcopy/strip support `--keep` (for sections) and `--keep-symbols` (for symbols). For consistency and clarity, rename `--keep` to `--keep-section`.
In fact, for GNU compatability, -K is --keep-symbol, so it's weird that the alias `-K` is not the same as the short-ish `--keep`.
Reviewers: jakehehrlich, jhenderson, alexshap, MaskRay, espindola
Reviewed By: jakehehrlich, MaskRay
Subscribers: emaste, arichardson, llvm-commits
Differential Revision: https://reviews.llvm.org/D54477
llvm-svn: 346782
2018-11-13 20:32:27 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(STRIP_keep_section))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.KeepSection.emplace_back(Arg->getValue(), UseRegexp);
|
2018-11-01 18:48:46 +01:00
|
|
|
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(STRIP_remove_section))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.ToRemove.emplace_back(Arg->getValue(), UseRegexp);
|
2018-10-12 00:33:50 +02:00
|
|
|
|
2019-01-31 13:16:20 +01:00
|
|
|
for (auto Arg : InputArgs.filtered(STRIP_strip_symbol))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.SymbolsToRemove.emplace_back(Arg->getValue(), UseRegexp);
|
2019-01-31 13:16:20 +01:00
|
|
|
|
2018-10-12 00:33:50 +02:00
|
|
|
for (auto Arg : InputArgs.filtered(STRIP_keep_symbol))
|
2019-02-06 12:00:07 +01:00
|
|
|
Config.SymbolsToKeep.emplace_back(Arg->getValue(), UseRegexp);
|
2018-10-12 00:33:50 +02:00
|
|
|
|
2019-05-02 13:53:02 +02:00
|
|
|
if (!InputArgs.hasArg(STRIP_no_strip_all) && !Config.StripDebug &&
|
|
|
|
!Config.StripUnneeded && Config.DiscardMode == DiscardType::None &&
|
|
|
|
!Config.StripAllGNU && Config.SymbolsToRemove.empty())
|
2019-01-31 13:16:20 +01:00
|
|
|
Config.StripAll = true;
|
|
|
|
|
2019-05-03 16:14:01 +02:00
|
|
|
if (Config.DiscardMode == DiscardType::All)
|
|
|
|
Config.StripDebug = true;
|
|
|
|
|
2018-11-01 18:36:37 +01:00
|
|
|
Config.DeterministicArchives =
|
|
|
|
InputArgs.hasFlag(STRIP_enable_deterministic_archives,
|
|
|
|
STRIP_disable_deterministic_archives, /*default=*/true);
|
|
|
|
|
2018-10-12 00:33:50 +02:00
|
|
|
Config.PreserveDates = InputArgs.hasArg(STRIP_preserve_dates);
|
|
|
|
|
|
|
|
DriverConfig DC;
|
|
|
|
if (Positional.size() == 1) {
|
|
|
|
Config.InputFilename = Positional[0];
|
|
|
|
Config.OutputFilename =
|
|
|
|
InputArgs.getLastArgValue(STRIP_output, Positional[0]);
|
|
|
|
DC.CopyConfigs.push_back(std::move(Config));
|
|
|
|
} else {
|
2019-06-18 02:39:10 +02:00
|
|
|
StringMap<unsigned> InputFiles;
|
2019-06-15 07:32:23 +02:00
|
|
|
for (StringRef Filename : Positional) {
|
2019-06-18 02:39:10 +02:00
|
|
|
if (InputFiles[Filename]++ == 1) {
|
|
|
|
if (Filename == "-")
|
|
|
|
return createStringError(
|
|
|
|
errc::invalid_argument,
|
|
|
|
"cannot specify '-' as an input file more than once");
|
|
|
|
if (Error E = ErrorCallback(createStringError(
|
|
|
|
errc::invalid_argument, "'%s' was already specified",
|
|
|
|
Filename.str().c_str())))
|
|
|
|
return std::move(E);
|
|
|
|
}
|
2018-10-12 00:33:50 +02:00
|
|
|
Config.InputFilename = Filename;
|
|
|
|
Config.OutputFilename = Filename;
|
|
|
|
DC.CopyConfigs.push_back(Config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-15 07:32:23 +02:00
|
|
|
if (Config.PreserveDates && (is_contained(Positional, "-") ||
|
|
|
|
InputArgs.getLastArgValue(STRIP_output) == "-"))
|
|
|
|
return createStringError(errc::invalid_argument,
|
|
|
|
"--preserve-dates requires a file");
|
|
|
|
|
2019-02-21 18:24:55 +01:00
|
|
|
return std::move(DC);
|
2018-10-12 00:33:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace objcopy
|
|
|
|
} // namespace llvm
|