Refactor of the llvm-tblgen source into: - a "Basic" library, which contains the bare minimum utilities to build `llvm-min-tablegen` - a "Common" library which contains all of the helpers for TableGen backends. Such helpers can be shared by more than one backend, and even unit tested (e.g. CodeExpander is, maybe we can add more over time) Fixes #80647
81 lines
2.3 KiB
C++
81 lines
2.3 KiB
C++
//===- CodeExpander.cpp - Expand variables in a string --------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
/// \file Expand the variables in a string.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "CodeExpander.h"
|
|
#include "CodeExpansions.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "llvm/TableGen/Error.h"
|
|
|
|
using namespace llvm;
|
|
|
|
void CodeExpander::emit(raw_ostream &OS) const {
|
|
StringRef Current = Code;
|
|
|
|
while (!Current.empty()) {
|
|
size_t Pos = Current.find_first_of("$\n\\");
|
|
if (Pos == StringRef::npos) {
|
|
OS << Current;
|
|
Current = "";
|
|
continue;
|
|
}
|
|
|
|
OS << Current.substr(0, Pos);
|
|
Current = Current.substr(Pos);
|
|
|
|
if (Current.consume_front("\n")) {
|
|
OS << "\n" << Indent;
|
|
continue;
|
|
}
|
|
|
|
if (Current.starts_with("\\$") || Current.starts_with("\\\\")) {
|
|
OS << Current[1];
|
|
Current = Current.drop_front(2);
|
|
continue;
|
|
}
|
|
|
|
if (Current.consume_front("\\"))
|
|
continue;
|
|
|
|
if (Current.starts_with("${")) {
|
|
StringRef StartVar = Current;
|
|
Current = Current.drop_front(2);
|
|
StringRef Var;
|
|
std::tie(Var, Current) = Current.split("}");
|
|
|
|
// Warn if we split because no terminator was found.
|
|
StringRef EndVar = StartVar.drop_front(2 /* ${ */ + Var.size());
|
|
if (EndVar.empty()) {
|
|
PrintWarning(Loc, "Unterminated expansion '${" + Var + "'");
|
|
PrintNote("Code: [{" + Code + "}]");
|
|
}
|
|
|
|
auto ValueI = Expansions.find(Var);
|
|
if (ValueI == Expansions.end()) {
|
|
PrintError(Loc,
|
|
"Attempt to expand an undeclared variable '" + Var + "'");
|
|
PrintNote("Code: [{" + Code + "}]");
|
|
}
|
|
if (ShowExpansions)
|
|
OS << "/*$" << Var << "{*/";
|
|
OS << Expansions.lookup(Var);
|
|
if (ShowExpansions)
|
|
OS << "/*}*/";
|
|
continue;
|
|
}
|
|
|
|
PrintWarning(Loc, "Assuming missing escape character: \\$");
|
|
PrintNote("Code: [{" + Code + "}]");
|
|
OS << "$";
|
|
Current = Current.drop_front(1);
|
|
}
|
|
}
|