2003-08-01 04:39:05 +00:00
|
|
|
//===- TableGen.cpp - Top-Level TableGen implementation -------------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 20:20:30 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 20:20:30 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-01 04:39:05 +00:00
|
|
|
//
|
|
|
|
// TableGen is a tool which can be used to build up a description of something,
|
|
|
|
// then invoke one or more "tablegen backends" to emit information about the
|
|
|
|
// description in some predefined format. In practice, this is used by the LLVM
|
|
|
|
// code generators to automate generation of a code generator through a
|
|
|
|
// high-level description of the target.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-12-02 01:23:04 +00:00
|
|
|
#include "Record.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/FileUtilities.h"
|
2003-05-24 00:17:12 +00:00
|
|
|
#include "CodeEmitterGen.h"
|
2003-08-01 04:39:05 +00:00
|
|
|
#include "RegisterInfoEmitter.h"
|
2003-08-03 17:24:20 +00:00
|
|
|
#include "InstrInfoEmitter.h"
|
2004-08-01 05:59:33 +00:00
|
|
|
#include "AsmWriterEmitter.h"
|
2005-09-03 01:14:03 +00:00
|
|
|
#include "DAGISelEmitter.h"
|
2005-10-21 19:05:19 +00:00
|
|
|
#include "SubtargetEmitter.h"
|
2006-03-03 02:32:46 +00:00
|
|
|
#include "IntrinsicEmitter.h"
|
2002-12-02 01:23:04 +00:00
|
|
|
#include <algorithm>
|
2003-08-14 16:05:35 +00:00
|
|
|
#include <cstdio>
|
2003-06-03 05:04:42 +00:00
|
|
|
#include <fstream>
|
2005-12-26 05:08:55 +00:00
|
|
|
#include <ios>
|
2004-08-01 03:55:39 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-06-03 04:56:29 +00:00
|
|
|
enum ActionType {
|
|
|
|
PrintRecords,
|
|
|
|
GenEmitter,
|
2003-08-01 05:59:20 +00:00
|
|
|
GenRegisterEnums, GenRegister, GenRegisterHeader,
|
2005-10-23 05:47:52 +00:00
|
|
|
GenInstrEnums, GenInstrs, GenAsmWriter,
|
2005-09-03 01:14:03 +00:00
|
|
|
GenDAGISel,
|
2005-10-21 19:05:19 +00:00
|
|
|
GenSubtarget,
|
2006-03-03 02:32:46 +00:00
|
|
|
GenIntrinsic,
|
2006-03-03 02:34:28 +00:00
|
|
|
PrintEnums
|
2003-06-03 04:56:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
cl::opt<ActionType>
|
|
|
|
Action(cl::desc("Action to perform:"),
|
|
|
|
cl::values(clEnumValN(PrintRecords, "print-records",
|
2003-06-03 05:07:28 +00:00
|
|
|
"Print all records to stdout (default)"),
|
2003-06-03 04:56:29 +00:00
|
|
|
clEnumValN(GenEmitter, "gen-emitter",
|
|
|
|
"Generate machine code emitter"),
|
2003-08-01 05:59:20 +00:00
|
|
|
clEnumValN(GenRegisterEnums, "gen-register-enums",
|
|
|
|
"Generate enum values for registers"),
|
2003-08-01 04:39:05 +00:00
|
|
|
clEnumValN(GenRegister, "gen-register-desc",
|
|
|
|
"Generate a register info description"),
|
|
|
|
clEnumValN(GenRegisterHeader, "gen-register-desc-header",
|
|
|
|
"Generate a register info description header"),
|
2003-08-03 17:24:20 +00:00
|
|
|
clEnumValN(GenInstrEnums, "gen-instr-enums",
|
|
|
|
"Generate enum values for instructions"),
|
2003-08-03 21:58:28 +00:00
|
|
|
clEnumValN(GenInstrs, "gen-instr-desc",
|
|
|
|
"Generate instruction descriptions"),
|
2004-08-01 05:59:33 +00:00
|
|
|
clEnumValN(GenAsmWriter, "gen-asm-writer",
|
|
|
|
"Generate assembly writer"),
|
2005-09-03 01:14:03 +00:00
|
|
|
clEnumValN(GenDAGISel, "gen-dag-isel",
|
|
|
|
"Generate a DAG instruction selector"),
|
2005-10-21 19:05:19 +00:00
|
|
|
clEnumValN(GenSubtarget, "gen-subtarget",
|
|
|
|
"Generate subtarget enumerations"),
|
2006-03-03 02:32:46 +00:00
|
|
|
clEnumValN(GenIntrinsic, "gen-intrinsic",
|
|
|
|
"Generate intrinsic information"),
|
2003-06-03 04:56:29 +00:00
|
|
|
clEnumValN(PrintEnums, "print-enums",
|
|
|
|
"Print enum values for a class"),
|
2004-07-16 00:02:21 +00:00
|
|
|
clEnumValEnd));
|
2003-06-03 04:56:29 +00:00
|
|
|
|
|
|
|
cl::opt<std::string>
|
2003-06-03 05:07:28 +00:00
|
|
|
Class("class", cl::desc("Print Enum list for this class"),
|
|
|
|
cl::value_desc("class name"));
|
2003-06-03 05:04:42 +00:00
|
|
|
|
2003-07-30 19:48:02 +00:00
|
|
|
cl::opt<std::string>
|
|
|
|
OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
|
|
|
|
cl::init("-"));
|
|
|
|
|
|
|
|
cl::opt<std::string>
|
|
|
|
InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
|
2003-08-27 13:41:57 +00:00
|
|
|
|
2006-03-03 01:47:14 +00:00
|
|
|
cl::list<std::string>
|
|
|
|
IncludeDirs("I", cl::desc("Directory of include files"),
|
2006-03-03 01:53:40 +00:00
|
|
|
cl::value_desc("directory"), cl::Prefix);
|
2003-06-03 04:56:29 +00:00
|
|
|
}
|
|
|
|
|
2004-08-01 03:55:39 +00:00
|
|
|
namespace llvm {
|
|
|
|
void ParseFile(const std::string &Filename,
|
2006-03-03 01:47:14 +00:00
|
|
|
const std::vector<std::string> &IncludeDirs);
|
2004-08-01 03:55:39 +00:00
|
|
|
}
|
2002-12-02 01:23:04 +00:00
|
|
|
|
2004-08-01 03:55:39 +00:00
|
|
|
RecordKeeper llvm::Records;
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
cl::ParseCommandLineOptions(argc, argv);
|
2006-03-03 01:47:14 +00:00
|
|
|
ParseFile(InputFilename, IncludeDirs);
|
2002-12-02 01:23:04 +00:00
|
|
|
|
2003-06-03 05:04:42 +00:00
|
|
|
std::ostream *Out = &std::cout;
|
|
|
|
if (OutputFilename != "-") {
|
2004-07-13 06:11:46 +00:00
|
|
|
Out = new std::ofstream(OutputFilename.c_str());
|
2003-06-03 05:04:42 +00:00
|
|
|
|
|
|
|
if (!Out->good()) {
|
2004-07-13 06:11:46 +00:00
|
|
|
std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
|
2003-06-03 05:04:42 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the file gets removed if *gasp* tablegen crashes...
|
2004-11-14 22:30:54 +00:00
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
2003-06-03 05:04:42 +00:00
|
|
|
}
|
|
|
|
|
2003-08-01 04:39:05 +00:00
|
|
|
try {
|
|
|
|
switch (Action) {
|
2003-08-01 04:47:20 +00:00
|
|
|
case PrintRecords:
|
|
|
|
*Out << Records; // No argument, dump all contents
|
|
|
|
break;
|
2003-08-01 04:39:05 +00:00
|
|
|
case GenEmitter:
|
|
|
|
CodeEmitterGen(Records).run(*Out);
|
|
|
|
break;
|
2003-08-03 17:24:20 +00:00
|
|
|
|
2003-08-01 05:59:20 +00:00
|
|
|
case GenRegisterEnums:
|
|
|
|
RegisterInfoEmitter(Records).runEnums(*Out);
|
|
|
|
break;
|
2003-08-01 04:39:05 +00:00
|
|
|
case GenRegister:
|
|
|
|
RegisterInfoEmitter(Records).run(*Out);
|
|
|
|
break;
|
|
|
|
case GenRegisterHeader:
|
|
|
|
RegisterInfoEmitter(Records).runHeader(*Out);
|
|
|
|
break;
|
2003-08-03 17:24:20 +00:00
|
|
|
|
|
|
|
case GenInstrEnums:
|
|
|
|
InstrInfoEmitter(Records).runEnums(*Out);
|
|
|
|
break;
|
2003-08-03 21:58:28 +00:00
|
|
|
case GenInstrs:
|
|
|
|
InstrInfoEmitter(Records).run(*Out);
|
|
|
|
break;
|
2004-08-01 05:59:33 +00:00
|
|
|
|
|
|
|
case GenAsmWriter:
|
|
|
|
AsmWriterEmitter(Records).run(*Out);
|
|
|
|
break;
|
|
|
|
|
2005-09-03 01:14:03 +00:00
|
|
|
case GenDAGISel:
|
|
|
|
DAGISelEmitter(Records).run(*Out);
|
2005-10-21 19:05:19 +00:00
|
|
|
break;
|
|
|
|
case GenSubtarget:
|
|
|
|
SubtargetEmitter(Records).run(*Out);
|
2006-03-03 02:32:46 +00:00
|
|
|
break;
|
|
|
|
case GenIntrinsic:
|
|
|
|
IntrinsicEmitter(Records).run(*Out);
|
2003-08-06 04:47:56 +00:00
|
|
|
break;
|
2003-08-01 04:39:05 +00:00
|
|
|
case PrintEnums:
|
2003-11-11 22:41:34 +00:00
|
|
|
{
|
2003-08-01 04:39:05 +00:00
|
|
|
std::vector<Record*> Recs = Records.getAllDerivedDefinitions(Class);
|
|
|
|
for (unsigned i = 0, e = Recs.size(); i != e; ++i)
|
2004-02-06 03:19:17 +00:00
|
|
|
*Out << Recs[i]->getName() << ", ";
|
2003-08-01 04:39:05 +00:00
|
|
|
*Out << "\n";
|
|
|
|
break;
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
default:
|
|
|
|
assert(1 && "Invalid Action");
|
|
|
|
return 1;
|
|
|
|
}
|
2003-08-01 04:39:05 +00:00
|
|
|
} catch (const std::string &Error) {
|
2004-09-03 23:17:54 +00:00
|
|
|
std::cerr << argv[0] << ": " << Error << "\n";
|
2003-08-01 19:21:43 +00:00
|
|
|
if (Out != &std::cout) {
|
|
|
|
delete Out; // Close the file
|
|
|
|
std::remove(OutputFilename.c_str()); // Remove the file, it's broken
|
|
|
|
}
|
2003-08-01 04:39:05 +00:00
|
|
|
return 1;
|
2004-09-03 23:17:54 +00:00
|
|
|
} catch (...) {
|
|
|
|
std::cerr << argv[0] << ": Unknown unexpected exception occurred.\n";
|
|
|
|
if (Out != &std::cout) {
|
|
|
|
delete Out; // Close the file
|
|
|
|
std::remove(OutputFilename.c_str()); // Remove the file, it's broken
|
|
|
|
}
|
|
|
|
return 2;
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
2003-06-03 05:04:42 +00:00
|
|
|
|
2003-08-01 20:35:01 +00:00
|
|
|
if (Out != &std::cout) {
|
|
|
|
delete Out; // Close the file
|
|
|
|
}
|
2003-08-01 04:39:05 +00:00
|
|
|
return 0;
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|