2003-10-05 21:27:59 +02:00
|
|
|
//===- InstrInfoEmitter.cpp - Generate a Instruction Set Desc. ------------===//
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 22:20:30 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:37:13 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 22:20:30 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-05 21:27:59 +02:00
|
|
|
//
|
|
|
|
// This tablegen backend is responsible for emitting a description of the target
|
|
|
|
// instruction set for the code generator.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "InstrInfoEmitter.h"
|
2004-08-01 06:04:35 +02:00
|
|
|
#include "CodeGenTarget.h"
|
2012-02-10 14:18:44 +01:00
|
|
|
#include "StringToOffsetTable.h"
|
2011-10-01 18:41:13 +02:00
|
|
|
#include "llvm/TableGen/Record.h"
|
2009-08-24 05:52:50 +02:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2005-11-01 19:04:06 +01:00
|
|
|
#include <algorithm>
|
2004-08-01 05:55:39 +02:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2008-01-06 02:21:51 +01:00
|
|
|
static void PrintDefList(const std::vector<Record*> &Uses,
|
2009-07-03 02:10:29 +02:00
|
|
|
unsigned Num, raw_ostream &OS) {
|
2005-08-18 23:36:47 +02:00
|
|
|
OS << "static const unsigned ImplicitList" << Num << "[] = { ";
|
|
|
|
for (unsigned i = 0, e = Uses.size(); i != e; ++i)
|
|
|
|
OS << getQualifiedName(Uses[i]) << ", ";
|
2003-10-05 21:27:59 +02:00
|
|
|
OS << "0 };\n";
|
|
|
|
}
|
|
|
|
|
2008-01-06 02:20:13 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Itinerary Information.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void InstrInfoEmitter::GatherItinClasses() {
|
|
|
|
std::vector<Record*> DefList =
|
|
|
|
Records.getAllDerivedDefinitions("InstrItinClass");
|
2010-03-19 02:07:44 +01:00
|
|
|
std::sort(DefList.begin(), DefList.end(), LessRecord());
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2008-01-06 02:20:13 +01:00
|
|
|
for (unsigned i = 0, N = DefList.size(); i < N; i++)
|
|
|
|
ItinClassMap[DefList[i]->getName()] = i;
|
2011-06-27 23:06:21 +02:00
|
|
|
}
|
2008-01-06 02:20:13 +01:00
|
|
|
|
|
|
|
unsigned InstrInfoEmitter::getItinClassNumber(const Record *InstRec) {
|
|
|
|
return ItinClassMap[InstRec->getValueAsDef("Itinerary")->getName()];
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Operand Info Emission.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-11-07 00:49:51 +01:00
|
|
|
std::vector<std::string>
|
|
|
|
InstrInfoEmitter::GetOperandInfo(const CodeGenInstruction &Inst) {
|
|
|
|
std::vector<std::string> Result;
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2010-11-01 05:03:32 +01:00
|
|
|
for (unsigned i = 0, e = Inst.Operands.size(); i != e; ++i) {
|
2006-11-10 03:01:40 +01:00
|
|
|
// Handle aggregate operands and normal operands the same way by expanding
|
|
|
|
// either case into a list of operands for this op.
|
2010-11-01 05:03:32 +01:00
|
|
|
std::vector<CGIOperandList::OperandInfo> OperandList;
|
2006-11-10 03:01:40 +01:00
|
|
|
|
|
|
|
// This might be a multiple operand thing. Targets like X86 have
|
|
|
|
// registers in their multi-operand operands. It may also be an anonymous
|
|
|
|
// operand, which has a single operand, but no declared class for the
|
|
|
|
// operand.
|
2011-07-30 00:43:06 +02:00
|
|
|
DagInit *MIOI = Inst.Operands[i].MIOperandInfo;
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2006-11-10 03:01:40 +01:00
|
|
|
if (!MIOI || MIOI->getNumArgs() == 0) {
|
|
|
|
// Single, anonymous, operand.
|
2010-11-01 05:03:32 +01:00
|
|
|
OperandList.push_back(Inst.Operands[i]);
|
2005-11-19 08:05:57 +01:00
|
|
|
} else {
|
2010-11-01 05:03:32 +01:00
|
|
|
for (unsigned j = 0, e = Inst.Operands[i].MINumOperands; j != e; ++j) {
|
|
|
|
OperandList.push_back(Inst.Operands[i]);
|
2006-11-07 00:49:51 +01:00
|
|
|
|
2011-07-30 00:43:06 +02:00
|
|
|
Record *OpR = dynamic_cast<DefInit*>(MIOI->getArg(j))->getDef();
|
2006-11-10 03:01:40 +01:00
|
|
|
OperandList.back().Rec = OpR;
|
|
|
|
}
|
|
|
|
}
|
2006-11-07 00:53:31 +01:00
|
|
|
|
2006-11-10 03:01:40 +01:00
|
|
|
for (unsigned j = 0, e = OperandList.size(); j != e; ++j) {
|
|
|
|
Record *OpR = OperandList[j].Rec;
|
|
|
|
std::string Res;
|
2011-06-27 23:06:21 +02:00
|
|
|
|
|
|
|
if (OpR->isSubClassOf("RegisterOperand"))
|
|
|
|
OpR = OpR->getValueAsDef("RegClass");
|
2006-11-10 03:01:40 +01:00
|
|
|
if (OpR->isSubClassOf("RegisterClass"))
|
|
|
|
Res += getQualifiedName(OpR) + "RegClassID, ";
|
2009-07-29 23:10:12 +02:00
|
|
|
else if (OpR->isSubClassOf("PointerLikeRegClass"))
|
|
|
|
Res += utostr(OpR->getValueAsInt("RegClassKind")) + ", ";
|
2006-11-10 03:01:40 +01:00
|
|
|
else
|
2010-06-18 20:13:55 +02:00
|
|
|
// -1 means the operand does not have a fixed register class.
|
|
|
|
Res += "-1, ";
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2006-11-10 03:01:40 +01:00
|
|
|
// Fill in applicable flags.
|
|
|
|
Res += "0";
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2006-11-10 03:01:40 +01:00
|
|
|
// Ptr value whose register class is resolved via callback.
|
2009-07-29 22:43:05 +02:00
|
|
|
if (OpR->isSubClassOf("PointerLikeRegClass"))
|
2011-06-28 21:10:37 +02:00
|
|
|
Res += "|(1<<MCOI::LookupPtrRegClass)";
|
2006-11-10 03:01:40 +01:00
|
|
|
|
|
|
|
// Predicate operands. Check to see if the original unexpanded operand
|
|
|
|
// was of type PredicateOperand.
|
2010-11-01 05:03:32 +01:00
|
|
|
if (Inst.Operands[i].Rec->isSubClassOf("PredicateOperand"))
|
2011-06-28 21:10:37 +02:00
|
|
|
Res += "|(1<<MCOI::Predicate)";
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2007-07-10 20:05:01 +02:00
|
|
|
// Optional def operands. Check to see if the original unexpanded operand
|
|
|
|
// was of type OptionalDefOperand.
|
2010-11-01 05:03:32 +01:00
|
|
|
if (Inst.Operands[i].Rec->isSubClassOf("OptionalDefOperand"))
|
2011-06-28 21:10:37 +02:00
|
|
|
Res += "|(1<<MCOI::OptionalDef)";
|
2007-07-10 20:05:01 +02:00
|
|
|
|
2006-11-10 03:01:40 +01:00
|
|
|
// Fill in constraint info.
|
2010-02-10 02:45:28 +01:00
|
|
|
Res += ", ";
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2010-11-01 05:03:32 +01:00
|
|
|
const CGIOperandList::ConstraintInfo &Constraint =
|
|
|
|
Inst.Operands[i].Constraints[j];
|
2010-02-10 02:45:28 +01:00
|
|
|
if (Constraint.isNone())
|
|
|
|
Res += "0";
|
|
|
|
else if (Constraint.isEarlyClobber())
|
2011-06-28 21:10:37 +02:00
|
|
|
Res += "(1 << MCOI::EARLY_CLOBBER)";
|
2010-02-10 02:45:28 +01:00
|
|
|
else {
|
|
|
|
assert(Constraint.isTied());
|
|
|
|
Res += "((" + utostr(Constraint.getTiedOperand()) +
|
2011-06-28 21:10:37 +02:00
|
|
|
" << 16) | (1 << MCOI::TIED_TO))";
|
2010-02-10 02:45:28 +01:00
|
|
|
}
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2011-07-14 23:47:18 +02:00
|
|
|
// Fill in operand type.
|
|
|
|
Res += ", MCOI::";
|
|
|
|
assert(!Inst.Operands[i].OperandType.empty() && "Invalid operand type.");
|
|
|
|
Res += Inst.Operands[i].OperandType;
|
|
|
|
|
2006-11-10 03:01:40 +01:00
|
|
|
Result.push_back(Res);
|
2005-08-19 20:46:26 +02:00
|
|
|
}
|
|
|
|
}
|
2006-11-01 01:27:05 +01:00
|
|
|
|
2005-08-19 20:46:26 +02:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2011-06-27 23:06:21 +02:00
|
|
|
void InstrInfoEmitter::EmitOperandInfo(raw_ostream &OS,
|
2008-01-06 02:20:13 +01:00
|
|
|
OperandInfoMapTy &OperandInfoIDs) {
|
|
|
|
// ID #0 is for no operand info.
|
|
|
|
unsigned OperandListNum = 0;
|
|
|
|
OperandInfoIDs[std::vector<std::string>()] = ++OperandListNum;
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2008-01-06 02:20:13 +01:00
|
|
|
OS << "\n";
|
|
|
|
const CodeGenTarget &Target = CDP.getTargetInfo();
|
|
|
|
for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
|
|
|
|
E = Target.inst_end(); II != E; ++II) {
|
2010-03-19 02:00:55 +01:00
|
|
|
std::vector<std::string> OperandInfo = GetOperandInfo(**II);
|
2008-01-06 02:20:13 +01:00
|
|
|
unsigned &N = OperandInfoIDs[OperandInfo];
|
|
|
|
if (N != 0) continue;
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2008-01-06 02:20:13 +01:00
|
|
|
N = ++OperandListNum;
|
2011-06-28 21:10:37 +02:00
|
|
|
OS << "static const MCOperandInfo OperandInfo" << N << "[] = { ";
|
2008-01-06 02:20:13 +01:00
|
|
|
for (unsigned i = 0, e = OperandInfo.size(); i != e; ++i)
|
|
|
|
OS << "{ " << OperandInfo[i] << " }, ";
|
|
|
|
OS << "};\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Main Output.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-05 21:27:59 +02:00
|
|
|
|
|
|
|
// run - Emit the main instruction description records for the target...
|
2009-07-03 02:10:29 +02:00
|
|
|
void InstrInfoEmitter::run(raw_ostream &OS) {
|
2011-06-28 22:07:07 +02:00
|
|
|
emitEnums(OS);
|
|
|
|
|
2005-10-31 18:16:46 +01:00
|
|
|
GatherItinClasses();
|
|
|
|
|
2003-10-05 21:27:59 +02:00
|
|
|
EmitSourceFileHeader("Target Instruction Descriptors", OS);
|
2011-06-28 22:07:07 +02:00
|
|
|
|
|
|
|
OS << "\n#ifdef GET_INSTRINFO_MC_DESC\n";
|
|
|
|
OS << "#undef GET_INSTRINFO_MC_DESC\n";
|
|
|
|
|
2004-08-17 05:08:28 +02:00
|
|
|
OS << "namespace llvm {\n\n";
|
|
|
|
|
2008-04-03 02:02:49 +02:00
|
|
|
CodeGenTarget &Target = CDP.getTargetInfo();
|
2003-10-05 21:27:59 +02:00
|
|
|
const std::string &TargetName = Target.getName();
|
|
|
|
Record *InstrInfo = Target.getInstructionSet();
|
|
|
|
|
2005-08-18 23:36:47 +02:00
|
|
|
// Keep track of all of the def lists we have emitted already.
|
|
|
|
std::map<std::vector<Record*>, unsigned> EmittedLists;
|
|
|
|
unsigned ListNumber = 0;
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2005-08-18 23:36:47 +02:00
|
|
|
// Emit all of the instruction's implicit uses and defs.
|
2004-08-01 07:04:00 +02:00
|
|
|
for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
|
|
|
|
E = Target.inst_end(); II != E; ++II) {
|
2010-03-19 02:00:55 +01:00
|
|
|
Record *Inst = (*II)->TheDef;
|
2005-10-29 00:59:53 +02:00
|
|
|
std::vector<Record*> Uses = Inst->getValueAsListOfDefs("Uses");
|
|
|
|
if (!Uses.empty()) {
|
2005-08-18 23:36:47 +02:00
|
|
|
unsigned &IL = EmittedLists[Uses];
|
2008-01-06 02:21:51 +01:00
|
|
|
if (!IL) PrintDefList(Uses, IL = ++ListNumber, OS);
|
2005-08-18 23:36:47 +02:00
|
|
|
}
|
2005-10-29 00:59:53 +02:00
|
|
|
std::vector<Record*> Defs = Inst->getValueAsListOfDefs("Defs");
|
|
|
|
if (!Defs.empty()) {
|
|
|
|
unsigned &IL = EmittedLists[Defs];
|
2008-01-06 02:21:51 +01:00
|
|
|
if (!IL) PrintDefList(Defs, IL = ++ListNumber, OS);
|
2005-08-18 23:36:47 +02:00
|
|
|
}
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
|
|
|
|
2008-01-06 02:20:13 +01:00
|
|
|
OperandInfoMapTy OperandInfoIDs;
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2005-08-19 18:57:28 +02:00
|
|
|
// Emit all of the operand info records.
|
2008-01-06 02:20:13 +01:00
|
|
|
EmitOperandInfo(OS, OperandInfoIDs);
|
2011-06-27 23:06:21 +02:00
|
|
|
|
2011-06-28 21:10:37 +02:00
|
|
|
// Emit all of the MCInstrDesc records in their ENUM ordering.
|
2005-08-19 18:57:28 +02:00
|
|
|
//
|
2011-10-22 18:50:00 +02:00
|
|
|
OS << "\nextern const MCInstrDesc " << TargetName << "Insts[] = {\n";
|
2010-03-19 01:34:35 +01:00
|
|
|
const std::vector<const CodeGenInstruction*> &NumberedInstructions =
|
|
|
|
Target.getInstructionsByEnumValue();
|
2003-10-05 21:27:59 +02:00
|
|
|
|
2006-01-27 02:44:09 +01:00
|
|
|
for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i)
|
|
|
|
emitRecord(*NumberedInstructions[i], i, InstrInfo, EmittedLists,
|
2011-06-28 01:47:21 +02:00
|
|
|
OperandInfoIDs, OS);
|
2011-06-28 22:29:03 +02:00
|
|
|
OS << "};\n\n";
|
|
|
|
|
2012-02-10 14:18:44 +01:00
|
|
|
OS << "extern const unsigned " << TargetName <<"InstrNameIndices[] = {\n ";
|
|
|
|
StringToOffsetTable StringTable;
|
|
|
|
for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
|
|
|
|
const CodeGenInstruction *Instr = NumberedInstructions[i];
|
|
|
|
OS << StringTable.GetOrAddStringOffset(Instr->TheDef->getName()) << "U, ";
|
|
|
|
if (i % 8 == 0)
|
|
|
|
OS << "\n ";
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << "\n};\n\n";
|
|
|
|
|
|
|
|
OS << "const char *" << TargetName << "InstrNameData =\n";
|
|
|
|
StringTable.EmitString(OS);
|
|
|
|
OS << ";\n\n";
|
|
|
|
|
2011-06-28 22:29:03 +02:00
|
|
|
// MCInstrInfo initialization routine.
|
|
|
|
OS << "static inline void Init" << TargetName
|
|
|
|
<< "MCInstrInfo(MCInstrInfo *II) {\n";
|
|
|
|
OS << " II->InitMCInstrInfo(" << TargetName << "Insts, "
|
2012-02-10 14:18:44 +01:00
|
|
|
<< TargetName << "InstrNameIndices, " << TargetName << "InstrNameData, "
|
2011-06-28 22:29:03 +02:00
|
|
|
<< NumberedInstructions.size() << ");\n}\n\n";
|
|
|
|
|
2004-08-17 05:08:28 +02:00
|
|
|
OS << "} // End llvm namespace \n";
|
2011-06-28 22:07:07 +02:00
|
|
|
|
|
|
|
OS << "#endif // GET_INSTRINFO_MC_DESC\n\n";
|
2011-07-01 19:57:27 +02:00
|
|
|
|
|
|
|
// Create a TargetInstrInfo subclass to hide the MC layer initialization.
|
|
|
|
OS << "\n#ifdef GET_INSTRINFO_HEADER\n";
|
|
|
|
OS << "#undef GET_INSTRINFO_HEADER\n";
|
|
|
|
|
|
|
|
std::string ClassName = TargetName + "GenInstrInfo";
|
2011-07-01 22:45:01 +02:00
|
|
|
OS << "namespace llvm {\n";
|
2011-07-01 19:57:27 +02:00
|
|
|
OS << "struct " << ClassName << " : public TargetInstrInfoImpl {\n"
|
|
|
|
<< " explicit " << ClassName << "(int SO = -1, int DO = -1);\n"
|
|
|
|
<< "};\n";
|
|
|
|
OS << "} // End llvm namespace \n";
|
|
|
|
|
|
|
|
OS << "#endif // GET_INSTRINFO_HEADER\n\n";
|
|
|
|
|
|
|
|
OS << "\n#ifdef GET_INSTRINFO_CTOR\n";
|
|
|
|
OS << "#undef GET_INSTRINFO_CTOR\n";
|
|
|
|
|
2011-07-01 22:45:01 +02:00
|
|
|
OS << "namespace llvm {\n";
|
2011-10-22 18:50:00 +02:00
|
|
|
OS << "extern const MCInstrDesc " << TargetName << "Insts[];\n";
|
2012-02-10 14:18:44 +01:00
|
|
|
OS << "extern const unsigned " << TargetName << "InstrNameIndices[];\n";
|
|
|
|
OS << "extern const char *" << TargetName << "InstrNameData;\n";
|
2011-07-01 19:57:27 +02:00
|
|
|
OS << ClassName << "::" << ClassName << "(int SO, int DO)\n"
|
|
|
|
<< " : TargetInstrInfoImpl(SO, DO) {\n"
|
|
|
|
<< " InitMCInstrInfo(" << TargetName << "Insts, "
|
2012-02-10 14:18:44 +01:00
|
|
|
<< TargetName << "InstrNameIndices, " << TargetName << "InstrNameData, "
|
2011-07-01 19:57:27 +02:00
|
|
|
<< NumberedInstructions.size() << ");\n}\n";
|
|
|
|
OS << "} // End llvm namespace \n";
|
|
|
|
|
|
|
|
OS << "#endif // GET_INSTRINFO_CTOR\n\n";
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
|
|
|
|
2004-08-01 07:04:00 +02:00
|
|
|
void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
2005-08-18 23:36:47 +02:00
|
|
|
Record *InstrInfo,
|
2005-10-29 00:59:53 +02:00
|
|
|
std::map<std::vector<Record*>, unsigned> &EmittedLists,
|
2008-01-06 02:20:13 +01:00
|
|
|
const OperandInfoMapTy &OpInfo,
|
2009-07-03 02:10:29 +02:00
|
|
|
raw_ostream &OS) {
|
2008-01-06 02:53:37 +01:00
|
|
|
int MinOperands = 0;
|
2010-11-01 05:03:32 +01:00
|
|
|
if (!Inst.Operands.size() == 0)
|
2005-08-19 02:59:49 +02:00
|
|
|
// Each logical operand can be multiple MI operands.
|
2010-11-01 05:03:32 +01:00
|
|
|
MinOperands = Inst.Operands.back().MIOperandNo +
|
|
|
|
Inst.Operands.back().MINumOperands;
|
2008-05-29 21:57:41 +02:00
|
|
|
|
2006-11-17 02:46:27 +01:00
|
|
|
OS << " { ";
|
2007-08-02 02:20:17 +02:00
|
|
|
OS << Num << ",\t" << MinOperands << ",\t"
|
2011-07-14 01:22:26 +02:00
|
|
|
<< Inst.Operands.NumDefs << ",\t"
|
|
|
|
<< getItinClassNumber(Inst.TheDef) << ",\t"
|
2012-02-09 12:25:09 +01:00
|
|
|
<< Inst.TheDef->getValueAsInt("Size") << ",\t0";
|
2003-10-05 21:27:59 +02:00
|
|
|
|
|
|
|
// Emit all of the target indepedent flags...
|
2011-09-25 21:21:35 +02:00
|
|
|
if (Inst.isPseudo) OS << "|(1<<MCID::Pseudo)";
|
2011-06-28 21:10:37 +02:00
|
|
|
if (Inst.isReturn) OS << "|(1<<MCID::Return)";
|
|
|
|
if (Inst.isBranch) OS << "|(1<<MCID::Branch)";
|
|
|
|
if (Inst.isIndirectBranch) OS << "|(1<<MCID::IndirectBranch)";
|
|
|
|
if (Inst.isCompare) OS << "|(1<<MCID::Compare)";
|
|
|
|
if (Inst.isMoveImm) OS << "|(1<<MCID::MoveImm)";
|
|
|
|
if (Inst.isBitcast) OS << "|(1<<MCID::Bitcast)";
|
|
|
|
if (Inst.isBarrier) OS << "|(1<<MCID::Barrier)";
|
|
|
|
if (Inst.hasDelaySlot) OS << "|(1<<MCID::DelaySlot)";
|
|
|
|
if (Inst.isCall) OS << "|(1<<MCID::Call)";
|
|
|
|
if (Inst.canFoldAsLoad) OS << "|(1<<MCID::FoldableAsLoad)";
|
|
|
|
if (Inst.mayLoad) OS << "|(1<<MCID::MayLoad)";
|
|
|
|
if (Inst.mayStore) OS << "|(1<<MCID::MayStore)";
|
|
|
|
if (Inst.isPredicable) OS << "|(1<<MCID::Predicable)";
|
|
|
|
if (Inst.isConvertibleToThreeAddress) OS << "|(1<<MCID::ConvertibleTo3Addr)";
|
|
|
|
if (Inst.isCommutable) OS << "|(1<<MCID::Commutable)";
|
|
|
|
if (Inst.isTerminator) OS << "|(1<<MCID::Terminator)";
|
|
|
|
if (Inst.isReMaterializable) OS << "|(1<<MCID::Rematerializable)";
|
|
|
|
if (Inst.isNotDuplicable) OS << "|(1<<MCID::NotDuplicable)";
|
|
|
|
if (Inst.Operands.hasOptionalDef) OS << "|(1<<MCID::HasOptionalDef)";
|
|
|
|
if (Inst.usesCustomInserter) OS << "|(1<<MCID::UsesCustomInserter)";
|
2011-09-20 20:22:31 +02:00
|
|
|
if (Inst.hasPostISelHook) OS << "|(1<<MCID::HasPostISelHook)";
|
2011-06-28 21:10:37 +02:00
|
|
|
if (Inst.Operands.isVariadic)OS << "|(1<<MCID::Variadic)";
|
|
|
|
if (Inst.hasSideEffects) OS << "|(1<<MCID::UnmodeledSideEffects)";
|
|
|
|
if (Inst.isAsCheapAsAMove) OS << "|(1<<MCID::CheapAsAMove)";
|
|
|
|
if (Inst.hasExtraSrcRegAllocReq) OS << "|(1<<MCID::ExtraSrcRegAllocReq)";
|
|
|
|
if (Inst.hasExtraDefRegAllocReq) OS << "|(1<<MCID::ExtraDefRegAllocReq)";
|
2003-10-05 21:27:59 +02:00
|
|
|
|
|
|
|
// Emit all of the target-specific flags...
|
2011-07-30 00:43:06 +02:00
|
|
|
BitsInit *TSF = Inst.TheDef->getValueAsBitsInit("TSFlags");
|
2010-04-05 05:10:20 +02:00
|
|
|
if (!TSF) throw "no TSFlags?";
|
|
|
|
uint64_t Value = 0;
|
|
|
|
for (unsigned i = 0, e = TSF->getNumBits(); i != e; ++i) {
|
2011-07-30 00:43:06 +02:00
|
|
|
if (BitInit *Bit = dynamic_cast<BitInit*>(TSF->getBit(i)))
|
2010-04-05 05:10:20 +02:00
|
|
|
Value |= uint64_t(Bit->getValue()) << i;
|
|
|
|
else
|
|
|
|
throw "Invalid TSFlags bit in " + Inst.TheDef->getName();
|
|
|
|
}
|
|
|
|
OS << ", 0x";
|
|
|
|
OS.write_hex(Value);
|
2010-06-09 18:16:48 +02:00
|
|
|
OS << "ULL, ";
|
2003-10-05 21:27:59 +02:00
|
|
|
|
|
|
|
// Emit the implicit uses and defs lists...
|
2005-10-29 00:59:53 +02:00
|
|
|
std::vector<Record*> UseList = Inst.TheDef->getValueAsListOfDefs("Uses");
|
|
|
|
if (UseList.empty())
|
2006-07-21 23:15:20 +02:00
|
|
|
OS << "NULL, ";
|
2005-04-22 02:00:37 +02:00
|
|
|
else
|
2005-10-29 00:59:53 +02:00
|
|
|
OS << "ImplicitList" << EmittedLists[UseList] << ", ";
|
2003-10-05 21:27:59 +02:00
|
|
|
|
2005-10-29 00:59:53 +02:00
|
|
|
std::vector<Record*> DefList = Inst.TheDef->getValueAsListOfDefs("Defs");
|
|
|
|
if (DefList.empty())
|
2006-07-21 23:15:20 +02:00
|
|
|
OS << "NULL, ";
|
2005-04-22 02:00:37 +02:00
|
|
|
else
|
2005-10-29 00:59:53 +02:00
|
|
|
OS << "ImplicitList" << EmittedLists[DefList] << ", ";
|
2003-10-05 21:27:59 +02:00
|
|
|
|
2005-08-19 18:57:28 +02:00
|
|
|
// Emit the operand info.
|
2006-11-07 00:49:51 +01:00
|
|
|
std::vector<std::string> OperandInfo = GetOperandInfo(Inst);
|
2005-08-19 20:46:26 +02:00
|
|
|
if (OperandInfo.empty())
|
|
|
|
OS << "0";
|
2005-08-19 18:57:28 +02:00
|
|
|
else
|
2008-01-06 02:20:13 +01:00
|
|
|
OS << "OperandInfo" << OpInfo.find(OperandInfo)->second;
|
2003-10-05 21:27:59 +02:00
|
|
|
|
2010-04-05 05:10:20 +02:00
|
|
|
OS << " }, // Inst #" << Num << " = " << Inst.TheDef->getName() << "\n";
|
2003-10-05 21:27:59 +02:00
|
|
|
}
|
2011-06-28 22:07:07 +02:00
|
|
|
|
|
|
|
// emitEnums - Print out enum values for all of the instructions.
|
|
|
|
void InstrInfoEmitter::emitEnums(raw_ostream &OS) {
|
|
|
|
EmitSourceFileHeader("Target Instruction Enum Values", OS);
|
|
|
|
|
|
|
|
OS << "\n#ifdef GET_INSTRINFO_ENUM\n";
|
|
|
|
OS << "#undef GET_INSTRINFO_ENUM\n";
|
|
|
|
|
|
|
|
OS << "namespace llvm {\n\n";
|
|
|
|
|
|
|
|
CodeGenTarget Target(Records);
|
|
|
|
|
|
|
|
// We must emit the PHI opcode first...
|
|
|
|
std::string Namespace = Target.getInstNamespace();
|
2011-09-20 20:22:31 +02:00
|
|
|
|
2011-06-28 22:07:07 +02:00
|
|
|
if (Namespace.empty()) {
|
|
|
|
fprintf(stderr, "No instructions defined!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<const CodeGenInstruction*> &NumberedInstructions =
|
|
|
|
Target.getInstructionsByEnumValue();
|
|
|
|
|
|
|
|
OS << "namespace " << Namespace << " {\n";
|
|
|
|
OS << " enum {\n";
|
|
|
|
for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
|
|
|
|
OS << " " << NumberedInstructions[i]->TheDef->getName()
|
|
|
|
<< "\t= " << i << ",\n";
|
|
|
|
}
|
|
|
|
OS << " INSTRUCTION_LIST_END = " << NumberedInstructions.size() << "\n";
|
|
|
|
OS << " };\n}\n";
|
|
|
|
OS << "} // End llvm namespace \n";
|
|
|
|
|
|
|
|
OS << "#endif // GET_INSTRINFO_ENUM\n\n";
|
|
|
|
}
|