2003-08-03 17:24:10 +00:00
|
|
|
//===- InstrInfoEmitter.cpp - Generate a Instruction Set Desc. ------------===//
|
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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-03 17:24:10 +00: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 04:04:35 +00:00
|
|
|
#include "CodeGenTarget.h"
|
2003-08-03 17:24:10 +00:00
|
|
|
#include "Record.h"
|
2004-08-01 03:55:39 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-08-03 17:24:10 +00:00
|
|
|
// runEnums - Print out enum values for all of the instructions.
|
|
|
|
void InstrInfoEmitter::runEnums(std::ostream &OS) {
|
2003-08-06 04:32:07 +00:00
|
|
|
EmitSourceFileHeader("Target Instruction Enum Values", OS);
|
2004-08-17 03:08:28 +00:00
|
|
|
OS << "namespace llvm {\n\n";
|
2003-08-03 17:24:10 +00:00
|
|
|
|
2003-08-07 05:39:09 +00:00
|
|
|
CodeGenTarget Target;
|
|
|
|
|
2003-08-03 21:57:51 +00:00
|
|
|
// We must emit the PHI opcode first...
|
2003-08-07 05:39:09 +00:00
|
|
|
Record *InstrInfo = Target.getInstructionSet();
|
2003-08-03 17:24:10 +00:00
|
|
|
Record *PHI = InstrInfo->getValueAsDef("PHIInst");
|
|
|
|
|
2004-08-01 05:04:00 +00:00
|
|
|
std::string Namespace = Target.inst_begin()->second.Namespace;
|
|
|
|
|
|
|
|
if (!Namespace.empty())
|
|
|
|
OS << "namespace " << Namespace << " {\n";
|
|
|
|
OS << " enum {\n";
|
|
|
|
|
2003-08-03 21:57:51 +00:00
|
|
|
OS << " " << PHI->getName() << ", \t// 0 (fixed for all targets)\n";
|
2003-08-03 17:24:10 +00:00
|
|
|
|
2004-08-01 05:04:00 +00:00
|
|
|
// Print out the rest of the instructions now.
|
|
|
|
unsigned i = 0;
|
|
|
|
for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
|
|
|
|
E = Target.inst_end(); II != E; ++II)
|
|
|
|
if (II->second.TheDef != PHI)
|
|
|
|
OS << " " << II->first << ", \t// " << ++i << "\n";
|
2003-08-03 17:24:10 +00:00
|
|
|
|
|
|
|
OS << " };\n";
|
|
|
|
if (!Namespace.empty())
|
|
|
|
OS << "}\n";
|
2004-08-17 03:08:28 +00:00
|
|
|
OS << "} // End llvm namespace \n";
|
2003-08-03 17:24:10 +00:00
|
|
|
}
|
2003-08-03 21:57:51 +00:00
|
|
|
|
2003-08-06 04:32:07 +00:00
|
|
|
void InstrInfoEmitter::printDefList(ListInit *LI, const std::string &Name,
|
|
|
|
std::ostream &OS) const {
|
2003-08-03 21:57:51 +00:00
|
|
|
OS << "static const unsigned " << Name << "[] = { ";
|
|
|
|
for (unsigned j = 0, e = LI->getSize(); j != e; ++j)
|
|
|
|
if (DefInit *DI = dynamic_cast<DefInit*>(LI->getElement(j)))
|
|
|
|
OS << getQualifiedName(DI->getDef()) << ", ";
|
|
|
|
else
|
|
|
|
throw "Illegal value in '" + Name + "' list!";
|
|
|
|
OS << "0 };\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// run - Emit the main instruction description records for the target...
|
|
|
|
void InstrInfoEmitter::run(std::ostream &OS) {
|
2003-08-06 04:32:07 +00:00
|
|
|
EmitSourceFileHeader("Target Instruction Descriptors", OS);
|
2004-08-17 03:08:28 +00:00
|
|
|
OS << "namespace llvm {\n\n";
|
|
|
|
|
2003-08-07 05:39:09 +00:00
|
|
|
CodeGenTarget Target;
|
|
|
|
const std::string &TargetName = Target.getName();
|
|
|
|
Record *InstrInfo = Target.getInstructionSet();
|
2003-08-03 21:57:51 +00:00
|
|
|
Record *PHI = InstrInfo->getValueAsDef("PHIInst");
|
|
|
|
|
2003-10-08 05:20:08 +00:00
|
|
|
// Emit empty implicit uses and defs lists
|
|
|
|
OS << "static const unsigned EmptyImpUses[] = { 0 };\n"
|
|
|
|
<< "static const unsigned EmptyImpDefs[] = { 0 };\n";
|
|
|
|
|
2003-08-03 21:57:51 +00:00
|
|
|
// Emit all of the instruction's implicit uses and defs...
|
2004-08-01 05:04:00 +00:00
|
|
|
for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
|
|
|
|
E = Target.inst_end(); II != E; ++II) {
|
|
|
|
Record *Inst = II->second.TheDef;
|
2003-08-03 21:57:51 +00:00
|
|
|
ListInit *LI = Inst->getValueAsListInit("Uses");
|
|
|
|
if (LI->getSize()) printDefList(LI, Inst->getName()+"ImpUses", OS);
|
|
|
|
LI = Inst->getValueAsListInit("Defs");
|
|
|
|
if (LI->getSize()) printDefList(LI, Inst->getName()+"ImpDefs", OS);
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << "\nstatic const TargetInstrDescriptor " << TargetName
|
|
|
|
<< "Insts[] = {\n";
|
2004-08-01 05:04:00 +00:00
|
|
|
emitRecord(Target.getPHIInstruction(), 0, InstrInfo, OS);
|
2003-08-03 21:57:51 +00:00
|
|
|
|
2004-08-01 05:04:00 +00:00
|
|
|
unsigned i = 0;
|
|
|
|
for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
|
|
|
|
E = Target.inst_end(); II != E; ++II)
|
|
|
|
if (II->second.TheDef != PHI)
|
|
|
|
emitRecord(II->second, ++i, InstrInfo, OS);
|
2003-08-03 21:57:51 +00:00
|
|
|
OS << "};\n";
|
2004-08-17 03:08:28 +00:00
|
|
|
OS << "} // End llvm namespace \n";
|
2003-08-03 21:57:51 +00:00
|
|
|
}
|
|
|
|
|
2004-08-01 05:04:00 +00:00
|
|
|
void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
|
|
|
Record *InstrInfo, std::ostream &OS) {
|
2004-08-01 08:38:17 +00:00
|
|
|
OS << " { \"";
|
|
|
|
if (Inst.Name.empty())
|
|
|
|
OS << Inst.TheDef->getName();
|
|
|
|
else
|
|
|
|
OS << Inst.Name;
|
|
|
|
OS << "\",\t-1, -1, 0, false, 0, 0, 0, 0";
|
2003-08-03 21:57:51 +00:00
|
|
|
|
|
|
|
// Emit all of the target indepedent flags...
|
2004-08-01 05:04:00 +00:00
|
|
|
if (Inst.isReturn) OS << "|M_RET_FLAG";
|
|
|
|
if (Inst.isBranch) OS << "|M_BRANCH_FLAG";
|
|
|
|
if (Inst.isBarrier) OS << "|M_BARRIER_FLAG";
|
2004-09-28 18:38:01 +00:00
|
|
|
if (Inst.hasDelaySlot) OS << "|M_DELAY_SLOT_FLAG";
|
2004-08-01 05:04:00 +00:00
|
|
|
if (Inst.isCall) OS << "|M_CALL_FLAG";
|
2004-09-28 21:01:45 +00:00
|
|
|
if (Inst.isLoad) OS << "|M_LOAD_FLAG";
|
|
|
|
if (Inst.isStore) OS << "|M_STORE_FLAG";
|
2004-08-01 05:04:00 +00:00
|
|
|
if (Inst.isTwoAddress) OS << "|M_2_ADDR_FLAG";
|
2005-01-02 02:29:04 +00:00
|
|
|
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
|
|
|
|
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
|
2004-08-01 05:04:00 +00:00
|
|
|
if (Inst.isTerminator) OS << "|M_TERMINATOR_FLAG";
|
2003-08-03 21:57:51 +00:00
|
|
|
OS << ", 0";
|
|
|
|
|
|
|
|
// Emit all of the target-specific flags...
|
|
|
|
ListInit *LI = InstrInfo->getValueAsListInit("TSFlagsFields");
|
|
|
|
ListInit *Shift = InstrInfo->getValueAsListInit("TSFlagsShifts");
|
|
|
|
if (LI->getSize() != Shift->getSize())
|
|
|
|
throw "Lengths of " + InstrInfo->getName() +
|
|
|
|
":(TargetInfoFields, TargetInfoPositions) must be equal!";
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
|
2004-08-01 05:04:00 +00:00
|
|
|
emitShiftedValue(Inst.TheDef, dynamic_cast<StringInit*>(LI->getElement(i)),
|
2003-08-03 21:57:51 +00:00
|
|
|
dynamic_cast<IntInit*>(Shift->getElement(i)), OS);
|
|
|
|
|
|
|
|
OS << ", ";
|
|
|
|
|
|
|
|
// Emit the implicit uses and defs lists...
|
2004-08-01 05:04:00 +00:00
|
|
|
LI = Inst.TheDef->getValueAsListInit("Uses");
|
2003-08-03 21:57:51 +00:00
|
|
|
if (!LI->getSize())
|
2003-10-08 05:20:08 +00:00
|
|
|
OS << "EmptyImpUses, ";
|
2003-08-03 21:57:51 +00:00
|
|
|
else
|
2004-08-01 05:04:00 +00:00
|
|
|
OS << Inst.TheDef->getName() << "ImpUses, ";
|
2003-08-03 21:57:51 +00:00
|
|
|
|
2004-08-01 05:04:00 +00:00
|
|
|
LI = Inst.TheDef->getValueAsListInit("Defs");
|
2003-08-03 21:57:51 +00:00
|
|
|
if (!LI->getSize())
|
2003-10-08 05:20:08 +00:00
|
|
|
OS << "EmptyImpDefs ";
|
2003-08-03 21:57:51 +00:00
|
|
|
else
|
2004-08-01 05:04:00 +00:00
|
|
|
OS << Inst.TheDef->getName() << "ImpDefs ";
|
2003-08-03 21:57:51 +00:00
|
|
|
|
2004-08-01 05:04:00 +00:00
|
|
|
OS << " }, // Inst #" << Num << " = " << Inst.TheDef->getName() << "\n";
|
2003-08-03 21:57:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InstrInfoEmitter::emitShiftedValue(Record *R, StringInit *Val,
|
|
|
|
IntInit *ShiftInt, std::ostream &OS) {
|
|
|
|
if (Val == 0 || ShiftInt == 0)
|
|
|
|
throw std::string("Illegal value or shift amount in TargetInfo*!");
|
|
|
|
RecordVal *RV = R->getValue(Val->getValue());
|
|
|
|
int Shift = ShiftInt->getValue();
|
|
|
|
|
|
|
|
if (RV == 0 || RV->getValue() == 0)
|
|
|
|
throw R->getName() + " doesn't have a field named '" + Val->getValue()+"'!";
|
|
|
|
|
|
|
|
Init *Value = RV->getValue();
|
|
|
|
if (BitInit *BI = dynamic_cast<BitInit*>(Value)) {
|
|
|
|
if (BI->getValue()) OS << "|(1<<" << Shift << ")";
|
|
|
|
return;
|
|
|
|
} else if (BitsInit *BI = dynamic_cast<BitsInit*>(Value)) {
|
|
|
|
// Convert the Bits to an integer to print...
|
|
|
|
Init *I = BI->convertInitializerTo(new IntRecTy());
|
|
|
|
if (I)
|
|
|
|
if (IntInit *II = dynamic_cast<IntInit*>(I)) {
|
|
|
|
if (II->getValue())
|
|
|
|
OS << "|(" << II->getValue() << "<<" << Shift << ")";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (IntInit *II = dynamic_cast<IntInit*>(Value)) {
|
|
|
|
if (II->getValue()) OS << "|(" << II->getValue() << "<<" << Shift << ")";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cerr << "Unhandled initializer: " << *Val << "\n";
|
|
|
|
throw "In record '" + R->getName() + "' for TSFlag emission.";
|
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|