2003-08-03 17:24:10 +00:00
|
|
|
//===- InstrInfoEmitter.cpp - Generate a Instruction Set Desc. ------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 20:20:30 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:37:13 +00:00
|
|
|
// This file 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-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"
|
2005-11-01 18:04:06 +00:00
|
|
|
#include <algorithm>
|
2007-12-30 00:25:23 +00:00
|
|
|
#include <iostream>
|
2004-08-01 03:55:39 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2008-01-06 01:21:51 +00:00
|
|
|
static void PrintDefList(const std::vector<Record*> &Uses,
|
|
|
|
unsigned Num, std::ostream &OS) {
|
2005-08-18 21:36:47 +00:00
|
|
|
OS << "static const unsigned ImplicitList" << Num << "[] = { ";
|
|
|
|
for (unsigned i = 0, e = Uses.size(); i != e; ++i)
|
|
|
|
OS << getQualifiedName(Uses[i]) << ", ";
|
2003-08-03 21:57:51 +00:00
|
|
|
OS << "0 };\n";
|
|
|
|
}
|
|
|
|
|
2008-01-06 01:20:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Itinerary Information.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
struct RecordNameComparator {
|
|
|
|
bool operator()(const Record *Rec1, const Record *Rec2) const {
|
|
|
|
return Rec1->getName() < Rec2->getName();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void InstrInfoEmitter::GatherItinClasses() {
|
|
|
|
std::vector<Record*> DefList =
|
|
|
|
Records.getAllDerivedDefinitions("InstrItinClass");
|
|
|
|
std::sort(DefList.begin(), DefList.end(), RecordNameComparator());
|
|
|
|
|
|
|
|
for (unsigned i = 0, N = DefList.size(); i < N; i++)
|
|
|
|
ItinClassMap[DefList[i]->getName()] = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned InstrInfoEmitter::getItinClassNumber(const Record *InstRec) {
|
|
|
|
return ItinClassMap[InstRec->getValueAsDef("Itinerary")->getName()];
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Operand Info Emission.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-11-06 23:49:51 +00:00
|
|
|
std::vector<std::string>
|
|
|
|
InstrInfoEmitter::GetOperandInfo(const CodeGenInstruction &Inst) {
|
|
|
|
std::vector<std::string> Result;
|
2006-11-10 02:01:40 +00:00
|
|
|
|
2005-08-19 18:46:26 +00:00
|
|
|
for (unsigned i = 0, e = Inst.OperandList.size(); i != e; ++i) {
|
2006-11-10 02:01:40 +00:00
|
|
|
// Handle aggregate operands and normal operands the same way by expanding
|
|
|
|
// either case into a list of operands for this op.
|
|
|
|
std::vector<CodeGenInstruction::OperandInfo> OperandList;
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
DagInit *MIOI = Inst.OperandList[i].MIOperandInfo;
|
|
|
|
|
|
|
|
if (!MIOI || MIOI->getNumArgs() == 0) {
|
|
|
|
// Single, anonymous, operand.
|
|
|
|
OperandList.push_back(Inst.OperandList[i]);
|
2005-11-19 07:05:57 +00:00
|
|
|
} else {
|
|
|
|
for (unsigned j = 0, e = Inst.OperandList[i].MINumOperands; j != e; ++j) {
|
2006-11-10 02:01:40 +00:00
|
|
|
OperandList.push_back(Inst.OperandList[i]);
|
2006-11-06 23:49:51 +00:00
|
|
|
|
2006-11-10 02:01:40 +00:00
|
|
|
Record *OpR = dynamic_cast<DefInit*>(MIOI->getArg(j))->getDef();
|
|
|
|
OperandList.back().Rec = OpR;
|
|
|
|
}
|
|
|
|
}
|
2006-11-06 23:53:31 +00:00
|
|
|
|
2006-11-10 02:01:40 +00:00
|
|
|
for (unsigned j = 0, e = OperandList.size(); j != e; ++j) {
|
|
|
|
Record *OpR = OperandList[j].Rec;
|
|
|
|
std::string Res;
|
|
|
|
|
|
|
|
if (OpR->isSubClassOf("RegisterClass"))
|
|
|
|
Res += getQualifiedName(OpR) + "RegClassID, ";
|
|
|
|
else
|
|
|
|
Res += "0, ";
|
|
|
|
// Fill in applicable flags.
|
|
|
|
Res += "0";
|
2006-11-06 23:49:51 +00:00
|
|
|
|
2006-11-10 02:01:40 +00:00
|
|
|
// Ptr value whose register class is resolved via callback.
|
|
|
|
if (OpR->getName() == "ptr_rc")
|
|
|
|
Res += "|M_LOOK_UP_PTR_REG_CLASS";
|
|
|
|
|
|
|
|
// Predicate operands. Check to see if the original unexpanded operand
|
|
|
|
// was of type PredicateOperand.
|
2007-07-06 23:23:38 +00:00
|
|
|
if (Inst.OperandList[i].Rec->isSubClassOf("PredicateOperand"))
|
2006-11-10 02:01:40 +00:00
|
|
|
Res += "|M_PREDICATE_OPERAND";
|
2006-11-06 23:49:51 +00:00
|
|
|
|
2007-07-10 18:05:01 +00:00
|
|
|
// Optional def operands. Check to see if the original unexpanded operand
|
|
|
|
// was of type OptionalDefOperand.
|
|
|
|
if (Inst.OperandList[i].Rec->isSubClassOf("OptionalDefOperand"))
|
|
|
|
Res += "|M_OPTIONAL_DEF_OPERAND";
|
|
|
|
|
2006-11-10 02:01:40 +00:00
|
|
|
// Fill in constraint info.
|
2006-11-15 02:38:17 +00:00
|
|
|
Res += ", " + Inst.OperandList[i].Constraints[j];
|
2006-11-10 02:01:40 +00:00
|
|
|
Result.push_back(Res);
|
2005-08-19 18:46:26 +00:00
|
|
|
}
|
|
|
|
}
|
2006-11-01 00:27:05 +00:00
|
|
|
|
2005-08-19 18:46:26 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2008-01-06 01:20:13 +00:00
|
|
|
void InstrInfoEmitter::EmitOperandInfo(std::ostream &OS,
|
|
|
|
OperandInfoMapTy &OperandInfoIDs) {
|
|
|
|
// ID #0 is for no operand info.
|
|
|
|
unsigned OperandListNum = 0;
|
|
|
|
OperandInfoIDs[std::vector<std::string>()] = ++OperandListNum;
|
|
|
|
|
|
|
|
OS << "\n";
|
|
|
|
const CodeGenTarget &Target = CDP.getTargetInfo();
|
|
|
|
for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
|
|
|
|
E = Target.inst_end(); II != E; ++II) {
|
|
|
|
std::vector<std::string> OperandInfo = GetOperandInfo(II->second);
|
|
|
|
unsigned &N = OperandInfoIDs[OperandInfo];
|
|
|
|
if (N != 0) continue;
|
|
|
|
|
|
|
|
N = ++OperandListNum;
|
|
|
|
OS << "static const TargetOperandInfo OperandInfo" << N << "[] = { ";
|
|
|
|
for (unsigned i = 0, e = OperandInfo.size(); i != e; ++i)
|
|
|
|
OS << "{ " << OperandInfo[i] << " }, ";
|
|
|
|
OS << "};\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Main Output.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-03 21:57:51 +00:00
|
|
|
|
|
|
|
// run - Emit the main instruction description records for the target...
|
|
|
|
void InstrInfoEmitter::run(std::ostream &OS) {
|
2005-10-31 17:16:46 +00:00
|
|
|
GatherItinClasses();
|
|
|
|
|
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
|
|
|
|
2005-08-18 21:36:47 +00:00
|
|
|
// Keep track of all of the def lists we have emitted already.
|
|
|
|
std::map<std::vector<Record*>, unsigned> EmittedLists;
|
|
|
|
unsigned ListNumber = 0;
|
|
|
|
|
|
|
|
// 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;
|
2005-10-28 22:59:53 +00:00
|
|
|
std::vector<Record*> Uses = Inst->getValueAsListOfDefs("Uses");
|
|
|
|
if (!Uses.empty()) {
|
2005-08-18 21:36:47 +00:00
|
|
|
unsigned &IL = EmittedLists[Uses];
|
2008-01-06 01:21:51 +00:00
|
|
|
if (!IL) PrintDefList(Uses, IL = ++ListNumber, OS);
|
2005-08-18 21:36:47 +00:00
|
|
|
}
|
2005-10-28 22:59:53 +00:00
|
|
|
std::vector<Record*> Defs = Inst->getValueAsListOfDefs("Defs");
|
|
|
|
if (!Defs.empty()) {
|
|
|
|
unsigned &IL = EmittedLists[Defs];
|
2008-01-06 01:21:51 +00:00
|
|
|
if (!IL) PrintDefList(Defs, IL = ++ListNumber, OS);
|
2005-08-18 21:36:47 +00:00
|
|
|
}
|
2003-08-03 21:57:51 +00:00
|
|
|
}
|
|
|
|
|
2008-01-06 01:20:13 +00:00
|
|
|
OperandInfoMapTy OperandInfoIDs;
|
2005-08-19 18:46:26 +00:00
|
|
|
|
2005-08-19 16:57:28 +00:00
|
|
|
// Emit all of the operand info records.
|
2008-01-06 01:20:13 +00:00
|
|
|
EmitOperandInfo(OS, OperandInfoIDs);
|
2005-08-19 16:57:28 +00:00
|
|
|
|
2006-01-27 01:44:09 +00:00
|
|
|
// Emit all of the TargetInstrDescriptor records in their ENUM ordering.
|
2005-08-19 16:57:28 +00:00
|
|
|
//
|
2003-08-03 21:57:51 +00:00
|
|
|
OS << "\nstatic const TargetInstrDescriptor " << TargetName
|
|
|
|
<< "Insts[] = {\n";
|
2006-01-27 01:44:09 +00:00
|
|
|
std::vector<const CodeGenInstruction*> NumberedInstructions;
|
|
|
|
Target.getInstructionsByEnumValue(NumberedInstructions);
|
2003-08-03 21:57:51 +00:00
|
|
|
|
2006-01-27 01:44:09 +00:00
|
|
|
for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i)
|
|
|
|
emitRecord(*NumberedInstructions[i], i, InstrInfo, EmittedLists,
|
2008-01-06 01:20:13 +00:00
|
|
|
OperandInfoIDs, 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,
|
2005-08-18 21:36:47 +00:00
|
|
|
Record *InstrInfo,
|
2005-10-28 22:59:53 +00:00
|
|
|
std::map<std::vector<Record*>, unsigned> &EmittedLists,
|
2008-01-06 01:20:13 +00:00
|
|
|
const OperandInfoMapTy &OpInfo,
|
2005-08-18 21:36:47 +00:00
|
|
|
std::ostream &OS) {
|
2006-06-15 07:22:16 +00:00
|
|
|
int MinOperands;
|
|
|
|
if (!Inst.OperandList.empty())
|
2005-08-19 00:59:49 +00:00
|
|
|
// Each logical operand can be multiple MI operands.
|
2006-06-15 07:22:16 +00:00
|
|
|
MinOperands = Inst.OperandList.back().MIOperandNo +
|
2005-08-19 00:59:49 +00:00
|
|
|
Inst.OperandList.back().MINumOperands;
|
|
|
|
else
|
2006-06-15 07:22:16 +00:00
|
|
|
MinOperands = 0;
|
2005-08-19 00:59:49 +00:00
|
|
|
|
2006-11-17 01:46:27 +00:00
|
|
|
OS << " { ";
|
2007-08-02 00:20:17 +00:00
|
|
|
OS << Num << ",\t" << MinOperands << ",\t"
|
|
|
|
<< Inst.NumDefs << ",\t\"";
|
2006-11-17 01:46:27 +00:00
|
|
|
|
2004-08-01 08:38:17 +00:00
|
|
|
if (Inst.Name.empty())
|
|
|
|
OS << Inst.TheDef->getName();
|
|
|
|
else
|
|
|
|
OS << Inst.Name;
|
2005-10-31 17:16:46 +00:00
|
|
|
|
2008-01-06 01:12:44 +00:00
|
|
|
OS << "\",\t" << getItinClassNumber(Inst.TheDef) << ", 0";
|
2003-08-03 21:57:51 +00:00
|
|
|
|
2006-05-01 09:04:20 +00:00
|
|
|
// Try to determine (from the pattern), if the instruction is a store.
|
|
|
|
bool isStore = false;
|
|
|
|
if (dynamic_cast<ListInit*>(Inst.TheDef->getValueInit("Pattern"))) {
|
|
|
|
ListInit *LI = Inst.TheDef->getValueAsListInit("Pattern");
|
|
|
|
if (LI && LI->getSize() > 0) {
|
|
|
|
DagInit *Dag = (DagInit *)LI->getElement(0);
|
|
|
|
DefInit *OpDef = dynamic_cast<DefInit*>(Dag->getOperator());
|
|
|
|
if (OpDef) {
|
|
|
|
Record *Operator = OpDef->getDef();
|
2006-05-03 02:08:34 +00:00
|
|
|
if (Operator->isSubClassOf("SDNode")) {
|
|
|
|
const std::string Opcode = Operator->getValueAsString("Opcode");
|
|
|
|
if (Opcode == "ISD::STORE" || Opcode == "ISD::TRUNCSTORE")
|
|
|
|
isStore = true;
|
|
|
|
}
|
2006-05-01 09:04:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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";
|
2007-11-12 07:39:39 +00:00
|
|
|
if (Inst.isIndirectBranch) OS << "|M_INDIRECT_FLAG";
|
2004-08-01 05:04:00 +00:00
|
|
|
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";
|
2006-05-01 09:04:20 +00:00
|
|
|
if (Inst.isStore || isStore) OS << "|M_STORE_FLAG";
|
2007-12-13 00:42:35 +00:00
|
|
|
if (Inst.isImplicitDef)OS << "|M_IMPLICIT_DEF_FLAG";
|
2007-05-16 20:45:24 +00:00
|
|
|
if (Inst.isPredicable) OS << "|M_PREDICABLE";
|
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";
|
2007-06-26 00:48:07 +00:00
|
|
|
if (Inst.isReMaterializable) OS << "|M_REMATERIALIZIBLE";
|
2007-06-19 01:26:51 +00:00
|
|
|
if (Inst.isNotDuplicable) OS << "|M_NOT_DUPLICABLE";
|
2007-07-10 18:05:01 +00:00
|
|
|
if (Inst.hasOptionalDef) OS << "|M_HAS_OPTIONAL_DEF";
|
2005-08-26 20:42:52 +00:00
|
|
|
if (Inst.usesCustomDAGSchedInserter)
|
2005-08-26 20:40:46 +00:00
|
|
|
OS << "|M_USES_CUSTOM_DAG_SCHED_INSERTION";
|
2007-12-14 01:48:59 +00:00
|
|
|
if (Inst.hasVariableNumberOfOperands) OS << "|M_VARIABLE_OPS";
|
|
|
|
if (Inst.mayHaveSideEffects) OS << "|M_MAY_HAVE_SIDE_EFFECTS";
|
|
|
|
if (Inst.neverHasSideEffects) OS << "|M_NEVER_HAS_SIDE_EFFECTS";
|
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...
|
2005-10-28 22:59:53 +00:00
|
|
|
std::vector<Record*> UseList = Inst.TheDef->getValueAsListOfDefs("Uses");
|
|
|
|
if (UseList.empty())
|
2006-07-21 21:15:20 +00:00
|
|
|
OS << "NULL, ";
|
2005-04-22 00:00:37 +00:00
|
|
|
else
|
2005-10-28 22:59:53 +00:00
|
|
|
OS << "ImplicitList" << EmittedLists[UseList] << ", ";
|
2003-08-03 21:57:51 +00:00
|
|
|
|
2005-10-28 22:59:53 +00:00
|
|
|
std::vector<Record*> DefList = Inst.TheDef->getValueAsListOfDefs("Defs");
|
|
|
|
if (DefList.empty())
|
2006-07-21 21:15:20 +00:00
|
|
|
OS << "NULL, ";
|
2005-04-22 00:00:37 +00:00
|
|
|
else
|
2005-10-28 22:59:53 +00:00
|
|
|
OS << "ImplicitList" << EmittedLists[DefList] << ", ";
|
2003-08-03 21:57:51 +00:00
|
|
|
|
2005-08-19 16:57:28 +00:00
|
|
|
// Emit the operand info.
|
2006-11-06 23:49:51 +00:00
|
|
|
std::vector<std::string> OperandInfo = GetOperandInfo(Inst);
|
2005-08-19 18:46:26 +00:00
|
|
|
if (OperandInfo.empty())
|
|
|
|
OS << "0";
|
2005-08-19 16:57:28 +00:00
|
|
|
else
|
2008-01-06 01:20:13 +00:00
|
|
|
OS << "OperandInfo" << OpInfo.find(OperandInfo)->second;
|
2005-08-19 16:57:28 +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
|
|
|
}
|
|
|
|
|
2005-10-31 17:16:46 +00:00
|
|
|
|
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();
|
|
|
|
|
2006-01-27 01:44:09 +00:00
|
|
|
if (RV == 0 || RV->getValue() == 0) {
|
|
|
|
// This isn't an error if this is a builtin instruction.
|
2007-01-26 17:29:20 +00:00
|
|
|
if (R->getName() != "PHI" &&
|
|
|
|
R->getName() != "INLINEASM" &&
|
2007-07-26 07:48:21 +00:00
|
|
|
R->getName() != "LABEL" &&
|
|
|
|
R->getName() != "EXTRACT_SUBREG" &&
|
|
|
|
R->getName() != "INSERT_SUBREG")
|
2006-01-27 01:44:09 +00:00
|
|
|
throw R->getName() + " doesn't have a field named '" +
|
|
|
|
Val->getValue() + "'!";
|
|
|
|
return;
|
|
|
|
}
|
2003-08-03 21:57:51 +00:00
|
|
|
|
|
|
|
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)) {
|
2006-01-27 01:44:09 +00:00
|
|
|
if (II->getValue()) {
|
|
|
|
if (Shift)
|
|
|
|
OS << "|(" << II->getValue() << "<<" << Shift << ")";
|
|
|
|
else
|
|
|
|
OS << "|" << II->getValue();
|
|
|
|
}
|
2003-08-03 21:57:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (IntInit *II = dynamic_cast<IntInit*>(Value)) {
|
2006-01-27 01:44:09 +00:00
|
|
|
if (II->getValue()) {
|
|
|
|
if (Shift)
|
|
|
|
OS << "|(" << II->getValue() << "<<" << Shift << ")";
|
|
|
|
else
|
|
|
|
OS << II->getValue();
|
|
|
|
}
|
2003-08-03 21:57:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-12-30 00:25:23 +00:00
|
|
|
std::cerr << "Unhandled initializer: " << *Val << "\n";
|
2003-08-03 21:57:51 +00:00
|
|
|
throw "In record '" + R->getName() + "' for TSFlag emission.";
|
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|