38#include <system_error>
70 "long-string-literals",
71 cl::desc(
"when emitting large string tables, prefer string literals over "
72 "comma-separated char literals. This can be a readability and "
73 "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;
115 if (std::move(ExistingOrErr.get())->getBuffer() == Content)
121 return reportError(argv0,
"error opening " + Filename +
": " +
122 EC.message() +
"\n");
123 OutFile.
os() << Content;
135 Timer.startPhaseTiming();
142 if (std::error_code EC = FileOrErr.
getError())
144 "': " + EC.message() +
"\n");
149 SrcMgr.AddNewSourceBuffer(std::move(*FileOrErr),
SMLoc());
168 Timer.startBackendTimer(
"Backend overall");
175 status = MainFn ? MainFn(OutFiles, Records) : 1;
176 Timer.stopBackendTimer();
195 if (Filename !=
"-") {
197 Filename.append(Suffix);
199 if (
int Ret =
WriteOutput(Parser, argv0, Filename, Content))
204 Timer.stopPhaseTiming();
216 int Res = MainFn(OS, Records);
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 int WriteOutput(const TGParser &Parser, const char *argv0, StringRef Filename, StringRef Content)
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)
Defines the virtual file system interface vfs::FileSystem.
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.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
StringRef - Represent a constant reference to a string, i.e.
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, TableGenOutputFiles &OutFiles, StringRef FilenamePrefix)
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.
LLVM_ABI StringRef stem(StringRef path LLVM_LIFETIME_BOUND, Style style=Style::native)
Get stem.
LLVM_ABI void replace_extension(SmallVectorImpl< char > &path, const Twine &extension, Style style=Style::native)
Replace the file extension of path with extension.
LLVM_ABI IntrusiveRefCntPtr< FileSystem > getRealFileSystem()
Gets an vfs::FileSystem for the 'real' file system, as seen by the operating system.
This is an optimization pass for GlobalISel generic memory operations.
function_ref< bool(TableGenOutputFiles &OutFiles, const RecordKeeper &Records)> MultiFileTableGenMainFn
Perform the action using Records, and store output in OutFiles.
function_ref< bool(raw_ostream &OS, const RecordKeeper &Records)> TableGenMainFn
Returns true on error, false otherwise.
cl::opt< bool > EmitLongStrLiterals
Controls emitting large character arrays as strings or character arrays.
int TableGenMain(const char *argv0, TableGenMainFn MainFn=nullptr)
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
std::map< StringRef, std::string > AdditionalFiles