1 //===- Main.cpp - Top-Level TableGen implementation -----------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // TableGen is a tool which can be used to build up a description of something,
11 // then invoke one or more "tablegen backends" to emit information about the
12 // description in some predefined format. In practice, this is used by the LLVM
13 // code generators to automate generation of a code generator through a
14 // high-level description of the target.
16 //===----------------------------------------------------------------------===//
19 #include "llvm/ADT/OwningPtr.h"
20 #include "llvm/Support/CommandLine.h"
21 #include "llvm/Support/MemoryBuffer.h"
22 #include "llvm/Support/ToolOutputFile.h"
23 #include "llvm/Support/system_error.h"
24 #include "llvm/TableGen/Error.h"
25 #include "llvm/TableGen/Record.h"
26 #include "llvm/TableGen/TableGenAction.h"
33 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
38 cl::desc("Dependency filename"),
39 cl::value_desc("filename"),
43 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
46 IncludeDirs("I", cl::desc("Directory of include files"),
47 cl::value_desc("directory"), cl::Prefix);
52 int TableGenMain(char *argv0, TableGenAction &Action) {
56 // Parse the input file.
57 OwningPtr<MemoryBuffer> File;
59 MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), File)) {
60 errs() << "Could not open input file '" << InputFilename << "': "
61 << ec.message() <<"\n";
64 MemoryBuffer *F = File.take();
66 // Tell SrcMgr about this buffer, which is what TGParser will pick up.
67 SrcMgr.AddNewSourceBuffer(F, SMLoc());
69 // Record the location of the include directory so that the lexer can find
71 SrcMgr.setIncludeDirs(IncludeDirs);
73 TGParser Parser(SrcMgr, Records);
75 if (Parser.ParseFile())
79 tool_output_file Out(OutputFilename.c_str(), Error);
81 errs() << argv0 << ": error opening " << OutputFilename
82 << ":" << Error << "\n";
85 if (!DependFilename.empty()) {
86 if (OutputFilename == "-") {
87 errs() << argv0 << ": the option -d must be used together with -o\n";
90 tool_output_file DepOut(DependFilename.c_str(), Error);
92 errs() << argv0 << ": error opening " << DependFilename
93 << ":" << Error << "\n";
96 DepOut.os() << OutputFilename << ":";
97 const std::vector<std::string> &Dependencies = Parser.getDependencies();
98 for (std::vector<std::string>::const_iterator I = Dependencies.begin(),
99 E = Dependencies.end();
101 DepOut.os() << " " << (*I);
107 if (Action(Out.os(), Records))
114 } catch (const TGError &Error) {
116 } catch (const std::string &Error) {
118 } catch (const char *Error) {
121 errs() << argv0 << ": Unknown unexpected exception occurred.\n";