Files
clang-p2996/lld/Common/Strings.cpp
Nico Weber e16c0a9a68 clang+lld: Improve clang+ld.darwinnew.lld interaction, pass -demangle
This patch:
- adds an ld64.lld.darwinnew symlink for lld, to go with f2710d4b57,
  so that `clang -fuse-ld=lld.darwinnew` can be used to test new
  Mach-O lld while it's in bring-up. (The expectation is that we'll
  remove this again once new Mach-O lld is the defauld and only Mach-O
  lld.)
- lets the clang driver know if the linker is lld (currently
  only triggered if `-fuse-ld=lld` or `-fuse-ld=lld.darwinnew` is
  passed). Currently only used for the next point, but could be used
  to implement other features that need close coordination between
  compiler and linker, e.g. having a diag for calling `clang++` instead
  of `clang` when link errors are caused by a missing C++ stdlib.
- lets the clang driver pass `-demangle` to Mach-O lld (both old and
  new), in addition to ld64
- implements -demangle for new Mach-O lld
- changes demangleItanium() to accept _Z, __Z, ___Z, ____Z prefixes
  (and updates one test added in D68014). Mach-O has an extra
  underscore for symbols, and the three (or, on Mach-O, four)
  underscores are used for block names.

Differential Revision: https://reviews.llvm.org/D91884
2020-11-24 08:51:58 -05:00

92 lines
2.8 KiB
C++

//===- Strings.cpp -------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "lld/Common/Strings.h"
#include "lld/Common/ErrorHandler.h"
#include "lld/Common/LLVM.h"
#include "llvm/Demangle/Demangle.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/GlobPattern.h"
#include <algorithm>
#include <mutex>
#include <vector>
using namespace llvm;
using namespace lld;
// Returns the demangled C++ symbol name for name.
std::string lld::demangleItanium(StringRef name) {
// demangleItanium() can be called for all symbols. Only demangle C++ symbols,
// to avoid getting unexpected result for a C symbol that happens to match a
// mangled type name such as "Pi" (which would demangle to "int*").
if (!name.startswith("_Z") && !name.startswith("__Z") &&
!name.startswith("___Z") && !name.startswith("____Z"))
return std::string(name);
return demangle(std::string(name));
}
SingleStringMatcher::SingleStringMatcher(StringRef Pattern) {
if (Pattern.size() > 2 && Pattern.startswith("\"") &&
Pattern.endswith("\"")) {
ExactMatch = true;
ExactPattern = Pattern.substr(1, Pattern.size() - 2);
} else {
Expected<GlobPattern> Glob = GlobPattern::create(Pattern);
if (!Glob) {
error(toString(Glob.takeError()));
return;
}
ExactMatch = false;
GlobPatternMatcher = *Glob;
}
}
bool SingleStringMatcher::match(StringRef s) const {
return ExactMatch ? (ExactPattern == s) : GlobPatternMatcher.match(s);
}
bool StringMatcher::match(StringRef s) const {
for (const SingleStringMatcher &pat : patterns)
if (pat.match(s))
return true;
return false;
}
// Converts a hex string (e.g. "deadbeef") to a vector.
std::vector<uint8_t> lld::parseHex(StringRef s) {
std::vector<uint8_t> hex;
while (!s.empty()) {
StringRef b = s.substr(0, 2);
s = s.substr(2);
uint8_t h;
if (!to_integer(b, h, 16)) {
error("not a hexadecimal value: " + b);
return {};
}
hex.push_back(h);
}
return hex;
}
// Returns true if S is valid as a C language identifier.
bool lld::isValidCIdentifier(StringRef s) {
return !s.empty() && (isAlpha(s[0]) || s[0] == '_') &&
std::all_of(s.begin() + 1, s.end(),
[](char c) { return c == '_' || isAlnum(c); });
}
// Write the contents of the a buffer to a file
void lld::saveBuffer(StringRef buffer, const Twine &path) {
std::error_code ec;
raw_fd_ostream os(path.str(), ec, sys::fs::OpenFlags::OF_None);
if (ec)
error("cannot create " + path + ": " + ec.message());
os << buffer;
}