2016-06-29 16:01:32 +08:00
|
|
|
//===- Strings.cpp -------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Strings.h"
|
2016-10-27 02:28:06 +08:00
|
|
|
#include "Config.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"
|
2016-09-03 05:17:20 +08:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2016-06-29 16:01:32 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2016-09-07 03:17:14 +08:00
|
|
|
#include "llvm/Demangle/Demangle.h"
|
2016-06-29 17:08:02 +08:00
|
|
|
#include <algorithm>
|
2016-11-30 02:05:04 +08:00
|
|
|
#include <cstring>
|
2016-06-29 16:01:32 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace lld;
|
|
|
|
using namespace lld::elf;
|
|
|
|
|
2016-12-21 07:17:00 +08:00
|
|
|
StringMatcher::StringMatcher(ArrayRef<StringRef> Pat) {
|
2016-12-21 07:09:09 +08:00
|
|
|
for (StringRef S : Pat) {
|
|
|
|
Expected<GlobPattern> Pat = GlobPattern::create(S);
|
|
|
|
if (!Pat)
|
|
|
|
error(toString(Pat.takeError()));
|
|
|
|
else
|
|
|
|
Patterns.push_back(*Pat);
|
|
|
|
}
|
2016-11-04 01:57:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool StringMatcher::match(StringRef S) const {
|
|
|
|
for (const GlobPattern &Pat : Patterns)
|
|
|
|
if (Pat.match(S))
|
2016-11-03 18:54:58 +08:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-04 01:57:38 +08:00
|
|
|
|
2016-06-29 16:01:32 +08:00
|
|
|
// Converts a hex string (e.g. "deadbeef") to a vector.
|
|
|
|
std::vector<uint8_t> elf::parseHex(StringRef S) {
|
|
|
|
std::vector<uint8_t> Hex;
|
|
|
|
while (!S.empty()) {
|
|
|
|
StringRef B = S.substr(0, 2);
|
|
|
|
S = S.substr(2);
|
|
|
|
uint8_t H;
|
2017-05-16 16:19:25 +08:00
|
|
|
if (!to_integer(B, H, 16)) {
|
2016-06-29 16:01:32 +08:00
|
|
|
error("not a hexadecimal value: " + B);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
Hex.push_back(H);
|
|
|
|
}
|
|
|
|
return Hex;
|
|
|
|
}
|
2016-06-29 17:08:02 +08:00
|
|
|
|
|
|
|
// Returns true if S is valid as a C language identifier.
|
|
|
|
bool elf::isValidCIdentifier(StringRef S) {
|
2017-10-04 16:50:34 +08:00
|
|
|
return !S.empty() && (isAlpha(S[0]) || S[0] == '_') &&
|
|
|
|
std::all_of(S.begin() + 1, S.end(),
|
|
|
|
[](char C) { return C == '_' || isAlnum(C); });
|
2016-06-29 17:08:02 +08:00
|
|
|
}
|