mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-03 09:21:02 +00:00
Emit real operand info for instructions. This currently works but is bad
in one way: the generated tables require dynamic initialization for the register classes. This will be fixed in a future patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22919 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c67c18fd23
commit
d5aa3e26bb
@ -64,6 +64,24 @@ void InstrInfoEmitter::printDefList(const std::vector<Record*> &Uses,
|
||||
OS << "0 };\n";
|
||||
}
|
||||
|
||||
static std::vector<Record*> GetOperandInfo(const CodeGenInstruction &Inst) {
|
||||
std::vector<Record*> Result;
|
||||
if (Inst.hasVariableNumberOfOperands)
|
||||
return Result; // No info for variable operand instrs.
|
||||
|
||||
for (unsigned i = 0, e = Inst.OperandList.size(); i != e; ++i) {
|
||||
if (Inst.OperandList[i].Rec->isSubClassOf("RegisterClass"))
|
||||
Result.push_back(Inst.OperandList[i].Rec);
|
||||
else {
|
||||
// This might be a multiple operand thing.
|
||||
// FIXME: Targets like X86 have registers in their multi-operand operands.
|
||||
for (unsigned j = 0, e = Inst.OperandList[i].MINumOperands; j != e; ++j)
|
||||
Result.push_back(0);
|
||||
}
|
||||
}
|
||||
return Result;
|
||||
}
|
||||
|
||||
|
||||
// run - Emit the main instruction description records for the target...
|
||||
void InstrInfoEmitter::run(std::ostream &OS) {
|
||||
@ -103,15 +121,27 @@ void InstrInfoEmitter::run(std::ostream &OS) {
|
||||
}
|
||||
}
|
||||
|
||||
std::map<std::vector<Record*>, unsigned> OperandInfosEmitted;
|
||||
unsigned OperandListNum = 0;
|
||||
OperandInfosEmitted[std::vector<Record*>()] = ++OperandListNum;
|
||||
|
||||
// Emit all of the operand info records.
|
||||
OS << "\n";
|
||||
for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
|
||||
E = Target.inst_end(); II != E; ++II) {
|
||||
const CodeGenInstruction &Inst = II->second;
|
||||
if (!Inst.hasVariableNumberOfOperands) {
|
||||
OS << "static const TargetOperandInfo " << Inst.TheDef->getName()
|
||||
<< "_Operands[] = {";
|
||||
// FIXME: Emit operand info.
|
||||
std::vector<Record*> OperandInfo = GetOperandInfo(II->second);
|
||||
unsigned &N = OperandInfosEmitted[OperandInfo];
|
||||
if (N == 0) {
|
||||
N = ++OperandListNum;
|
||||
OS << "static const TargetOperandInfo OperandInfo" << N << "[] = { ";
|
||||
for (unsigned i = 0, e = OperandInfo.size(); i != e; ++i) {
|
||||
if (Record *RC = OperandInfo[i]) {
|
||||
// FIXME: BAD: REQUIRES RUNTIME INIT
|
||||
OS << "{ " << getQualifiedName(RC) << "RegisterClass }, ";
|
||||
} else {
|
||||
OS << "{ 0 }, ";
|
||||
}
|
||||
}
|
||||
OS << "};\n";
|
||||
}
|
||||
}
|
||||
@ -120,13 +150,15 @@ void InstrInfoEmitter::run(std::ostream &OS) {
|
||||
//
|
||||
OS << "\nstatic const TargetInstrDescriptor " << TargetName
|
||||
<< "Insts[] = {\n";
|
||||
emitRecord(Target.getPHIInstruction(), 0, InstrInfo, ListNumbers, OS);
|
||||
emitRecord(Target.getPHIInstruction(), 0, InstrInfo, ListNumbers,
|
||||
OperandInfosEmitted, OS);
|
||||
|
||||
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, ListNumbers, OS);
|
||||
emitRecord(II->second, ++i, InstrInfo, ListNumbers,
|
||||
OperandInfosEmitted, OS);
|
||||
OS << "};\n";
|
||||
OS << "} // End llvm namespace \n";
|
||||
}
|
||||
@ -134,6 +166,7 @@ void InstrInfoEmitter::run(std::ostream &OS) {
|
||||
void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
||||
Record *InstrInfo,
|
||||
std::map<ListInit*, unsigned> &ListNumbers,
|
||||
std::map<std::vector<Record*>, unsigned> &OpInfo,
|
||||
std::ostream &OS) {
|
||||
int NumOperands;
|
||||
if (Inst.hasVariableNumberOfOperands)
|
||||
@ -193,10 +226,11 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
||||
OS << "ImplicitList" << ListNumbers[LI] << ", ";
|
||||
|
||||
// Emit the operand info.
|
||||
if (NumOperands == -1)
|
||||
OS << "0 ";
|
||||
std::vector<Record*> OperandInfo = GetOperandInfo(Inst);
|
||||
if (OperandInfo.empty())
|
||||
OS << "0";
|
||||
else
|
||||
OS << Inst.TheDef->getName() << "_Operands ";
|
||||
OS << "OperandInfo" << OpInfo[OperandInfo];
|
||||
|
||||
OS << " }, // Inst #" << Num << " = " << Inst.TheDef->getName() << "\n";
|
||||
}
|
||||
|
@ -42,6 +42,7 @@ private:
|
||||
void emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
||||
Record *InstrInfo,
|
||||
std::map<ListInit*, unsigned> &ListNumbers,
|
||||
std::map<std::vector<Record*>, unsigned> &OpInfo,
|
||||
std::ostream &OS);
|
||||
void emitShiftedValue(Record *R, StringInit *Val, IntInit *Shift,
|
||||
std::ostream &OS);
|
||||
|
Loading…
Reference in New Issue
Block a user