aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/TableGen/Main.cpp
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@gmail.com>2011-10-04 15:14:51 +0000
committerChe-Liang Chiou <clchiou@gmail.com>2011-10-04 15:14:51 +0000
commit67a16e2564ef6042abdc14f2da82db81781cbed8 (patch)
tree7c7496a35a93ab3d4a3881aa59c97257f57f549a /llvm/lib/TableGen/Main.cpp
parent2cf8a077eee6c547f228833b6ef97d8576ed967e (diff)
downloadllvm-67a16e2564ef6042abdc14f2da82db81781cbed8.zip
llvm-67a16e2564ef6042abdc14f2da82db81781cbed8.tar.gz
llvm-67a16e2564ef6042abdc14f2da82db81781cbed8.tar.bz2
tblgen: add preprocessor as a separate mode
This patch adds a preprocessor that can expand nested for-loops for saving some copy-n-paste in *.td files. The preprocessor is not yet integrated with TGParser, and so it has no direct effect on *.td inputs. However, you may preprocess an td input (and only preprocess it). To test the proprecessor, type: tblgen -E -o $@ $< llvm-svn: 141079
Diffstat (limited to 'llvm/lib/TableGen/Main.cpp')
-rw-r--r--llvm/lib/TableGen/Main.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/llvm/lib/TableGen/Main.cpp b/llvm/lib/TableGen/Main.cpp
index 01bc55e..e15c09f 100644
--- a/llvm/lib/TableGen/Main.cpp
+++ b/llvm/lib/TableGen/Main.cpp
@@ -16,6 +16,7 @@
//===----------------------------------------------------------------------===//
#include "TGParser.h"
+#include "TGPreprocessor.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MemoryBuffer.h"
@@ -43,6 +44,12 @@ namespace {
cl::list<std::string>
IncludeDirs("I", cl::desc("Directory of include files"),
cl::value_desc("directory"), cl::Prefix);
+
+ cl::opt<bool>
+ PreprocessOnly("E",
+ cl::desc("Stop after the preprocessing stage; "
+ "This is work in progress and has no effect yet"),
+ cl::init(false));
}
namespace llvm {
@@ -67,6 +74,22 @@ int TableGenMain(char *argv0, TableGenAction &Action) {
// it later.
SrcMgr.setIncludeDirs(IncludeDirs);
+ // TODO(clchiou): Integrate preprocessor into TGParser
+ if (PreprocessOnly) {
+ std::string Error;
+ tool_output_file Out(OutputFilename.c_str(), Error);
+ if (!Error.empty()) {
+ errs() << argv0 << ": error opening " << OutputFilename
+ << ":" << Error << "\n";
+ return 1;
+ }
+ TGPreprocessor Preprocessor(SrcMgr, Out);
+ if (Preprocessor.PreprocessFile())
+ return 1;
+ Out.keep();
+ return 0;
+ }
+
TGParser Parser(SrcMgr, Records);
if (Parser.ParseFile())