[llvm-commits] CVS: llvm/utils/TableGen/TableGen.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Jun 3 00:05:01 PDT 2003
Changes in directory llvm/utils/TableGen:
TableGen.cpp updated: 1.5 -> 1.6
---
Log message:
Add -o support for TableGen
I figure that misha has done a lot of things on my todo list, the least I
can do is reciprocate a bit. :)
---
Diffs of the changes:
Index: llvm/utils/TableGen/TableGen.cpp
diff -u llvm/utils/TableGen/TableGen.cpp:1.5 llvm/utils/TableGen/TableGen.cpp:1.6
--- llvm/utils/TableGen/TableGen.cpp:1.5 Mon Jun 2 23:56:29 2003
+++ llvm/utils/TableGen/TableGen.cpp Tue Jun 3 00:04:42 2003
@@ -1,7 +1,9 @@
#include "Record.h"
#include "Support/CommandLine.h"
+#include "Support/Signals.h"
#include "CodeEmitterGen.h"
#include <algorithm>
+#include <fstream>
enum ActionType {
PrintRecords,
@@ -25,6 +27,10 @@
cl::opt<std::string>
Class("class", cl::desc("Print Enum list for this class"));
+
+ cl::opt<std::string>
+ OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
+ cl::init("-"));
}
@@ -374,13 +380,26 @@
cl::ParseCommandLineOptions(argc, argv);
ParseFile();
+ std::ostream *Out = &std::cout;
+ if (OutputFilename != "-") {
+ Out = new std::ofstream(OutputFilename.c_str());
+
+ if (!Out->good()) {
+ std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
+ return 1;
+ }
+
+ // Make sure the file gets removed if *gasp* tablegen crashes...
+ RemoveFileOnSignal(OutputFilename);
+ }
+
switch (Action) {
case Parse: ParseMachineCode(); break;
case GenEmitter:
- CodeEmitterGen(Records).createEmitter(std::cout);
+ CodeEmitterGen(Records).createEmitter(*Out);
break;
case PrintRecords:
- std::cout << Records; // No argument, dump all contents
+ *Out << Records; // No argument, dump all contents
break;
case PrintEnums:
Record *R = Records.getClass(Class);
@@ -393,11 +412,13 @@
for (std::map<std::string, Record*>::const_iterator I = Defs.begin(),
E = Defs.end(); I != E; ++I) {
if (I->second->isSubClassOf(R)) {
- std::cout << I->first << ", ";
+ *Out << I->first << ", ";
}
}
- std::cout << "\n";
+ *Out << "\n";
break;
}
+
+ if (Out != &std::cout) delete Out;
return 0;
}
More information about the llvm-commits
mailing list