llvm-project
78 строк · 2.3 Кб
1//===- Strings.cpp -------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "lld/Common/Strings.h"
10#include "lld/Common/ErrorHandler.h"
11#include "lld/Common/LLVM.h"
12#include "llvm/ADT/StringExtras.h"
13#include "llvm/Support/FileSystem.h"
14#include "llvm/Support/GlobPattern.h"
15#include <algorithm>
16#include <mutex>
17#include <vector>
18
19using namespace llvm;
20using namespace lld;
21
22SingleStringMatcher::SingleStringMatcher(StringRef Pattern) {
23if (Pattern.size() > 2 && Pattern.starts_with("\"") &&
24Pattern.ends_with("\"")) {
25ExactMatch = true;
26ExactPattern = Pattern.substr(1, Pattern.size() - 2);
27} else {
28Expected<GlobPattern> Glob = GlobPattern::create(Pattern);
29if (!Glob) {
30error(toString(Glob.takeError()) + ": " + Pattern);
31return;
32}
33ExactMatch = false;
34GlobPatternMatcher = *Glob;
35}
36}
37
38bool SingleStringMatcher::match(StringRef s) const {
39return ExactMatch ? (ExactPattern == s) : GlobPatternMatcher.match(s);
40}
41
42bool StringMatcher::match(StringRef s) const {
43for (const SingleStringMatcher &pat : patterns)
44if (pat.match(s))
45return true;
46return false;
47}
48
49// Converts a hex string (e.g. "deadbeef") to a vector.
50SmallVector<uint8_t, 0> lld::parseHex(StringRef s) {
51SmallVector<uint8_t, 0> hex;
52while (!s.empty()) {
53StringRef b = s.substr(0, 2);
54s = s.substr(2);
55uint8_t h;
56if (!to_integer(b, h, 16)) {
57error("not a hexadecimal value: " + b);
58return {};
59}
60hex.push_back(h);
61}
62return hex;
63}
64
65// Returns true if S is valid as a C language identifier.
66bool lld::isValidCIdentifier(StringRef s) {
67return !s.empty() && !isDigit(s[0]) &&
68llvm::all_of(s, [](char c) { return isAlnum(c) || c == '_'; });
69}
70
71// Write the contents of the a buffer to a file
72void lld::saveBuffer(StringRef buffer, const Twine &path) {
73std::error_code ec;
74raw_fd_ostream os(path.str(), ec, sys::fs::OpenFlags::OF_None);
75if (ec)
76error("cannot create " + path + ": " + ec.message());
77os << buffer;
78}
79