36#include <system_error>
69 "long-string-literals",
70 cl::desc(
"when emitting large string tables, prefer string literals over "
71 "comma-separated char literals. This can be a readability and "
72 "compile-time performance win, but upsets some compilers"),
77 "no-warn-on-unused-template-args",
78 cl::desc(
"Disable unused template argument warnings."));
81 errs() << ProgName <<
": " << Msg;
92 return reportError(argv0,
"the option -d must be used together with -o\n");
101 DepOut.
os() <<
' ' << Dep;
109 std::function<TableGenMainFn> MainFn) {
114 Timer.startPhaseTiming();
121 if (std::error_code EC = FileOrErr.
getError())
123 "': " + EC.message() +
"\n");
146 Timer.startBackendTimer(
"Backend overall");
147 std::string OutString;
153 status = MainFn ? MainFn(Out, Records) : 1;
154 Timer.stopBackendTimer();
168 bool WriteFile =
true;
173 if (
auto ExistingOrErr =
175 if (std::move(ExistingOrErr.get())->getBuffer() == OutString)
183 EC.message() +
"\n");
184 OutFile.
os() << OutString;
190 Timer.stopPhaseTiming();
Provides ErrorOr<T> smart pointer.
static cl::opt< bool > NoWarnOnUnusedTemplateArgs("no-warn-on-unused-template-args", cl::desc("Disable unused template argument warnings."))
static cl::list< std::string > IncludeDirs("I", cl::desc("Directory of include files"), cl::value_desc("directory"), cl::Prefix)
static int createDependencyFile(const TGParser &Parser, const char *argv0)
Create a dependency file for -d option.
static cl::opt< bool > WriteIfChanged("write-if-changed", cl::desc("Only write output if it changed"))
static cl::opt< std::string > DependFilename("d", cl::desc("Dependency filename"), cl::value_desc("filename"), cl::init(""))
static cl::opt< std::string > OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"), cl::init("-"))
static cl::opt< bool > TimePhases("time-phases", cl::desc("Time phases of parser and backend"))
static cl::opt< std::string > InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"))
static cl::list< std::string > MacroNames("D", cl::desc("Name of the macro to be defined"), cl::value_desc("macro name"), cl::Prefix)
static int reportError(const char *ProgName, Twine Msg)
Represents either an error or a value T.
std::error_code getError() const
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileOrSTDIN(const Twine &Filename, bool IsText=false, bool RequiresNullTerminator=true, std::optional< Align > Alignment=std::nullopt)
Open the specified file as a MemoryBuffer, or open stdin if the Filename is "-".
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFile(const Twine &Filename, bool IsText=false, bool RequiresNullTerminator=true, bool IsVolatile=false, std::optional< Align > Alignment=std::nullopt)
Open the specified file as a MemoryBuffer, returning a new MemoryBuffer if successful,...
Represents a location in source code.
void setIncludeDirs(const std::vector< std::string > &Dirs)
unsigned AddNewSourceBuffer(std::unique_ptr< MemoryBuffer > F, SMLoc IncludeLoc)
Add a new source buffer to this source manager.
const TGLexer::DependenciesSetTy & getDependencies() const
bool ParseFile()
ParseFile - Main entrypoint for parsing a tblgen file.
This class is used to track the amount of time spent between invocations of its startTimer()/stopTime...
LLVM_ABI void stopTimer()
Stop the timer.
LLVM_ABI void startTimer()
Start the timer running.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
A raw_ostream that writes to an std::string.
bool ApplyCallback(const RecordKeeper &Records, raw_ostream &OS)
Apply callback for any command line option registered above.
initializer< Ty > init(const Ty &Val)
@ OF_Text
The file should be opened in text mode on platforms like z/OS that make this distinction.
This is an optimization pass for GlobalISel generic memory operations.
cl::opt< bool > EmitLongStrLiterals
Controls emitting large character arrays as strings or character arrays.
int TableGenMain(const char *argv0, std::function< TableGenMainFn > MainFn=nullptr)
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.