diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-01 07:45:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-01 07:45:09 +0000 |
commit | 505277a7f554fcfe73e97cbdca304da5716cefa7 (patch) | |
tree | 54b2866f935f4471d12035e441cde5178962924d /lib/CodeGen/SelectionDAG/ScheduleDAG.cpp | |
parent | 2aeaf4e839438d51766996006fc22310d05ab2a7 (diff) |
Add some very paranoid checking for operand/result reg class matchup
For instructions that define multiple results, use the right regclass
to define the result, not always the rc of result #0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/ScheduleDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/ScheduleDAG.cpp | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp index 648db02919..4d54d548c8 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp @@ -909,7 +909,7 @@ unsigned SimpleSched::CreateVirtualRegisters(MachineInstr *MI, MI->addRegOperand(ResultReg, MachineOperand::Def); for (unsigned i = 1; i != NumResults; ++i) { assert(OpInfo[i].RegClass && "Isn't a register operand!"); - MI->addRegOperand(RegMap->createVirtualRegister(OpInfo[0].RegClass), + MI->addRegOperand(RegMap->createVirtualRegister(OpInfo[i].RegClass), MachineOperand::Def); } return ResultReg; @@ -951,8 +951,17 @@ void SimpleSched::EmitNode(NodeInfo *NI) { assert(Node->getOperand(i).getValueType() != MVT::Other && Node->getOperand(i).getValueType() != MVT::Flag && "Chain and flag operands should occur at end of operand list!"); + + // Get/emit the operand. + unsigned VReg = getVR(Node->getOperand(i)); + MI->addRegOperand(VReg, MachineOperand::Use); - MI->addRegOperand(getVR(Node->getOperand(i)), MachineOperand::Use); + // Verify that it is right. + assert(MRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?"); + assert(II.OpInfo[i+NumResults].RegClass && + "Don't have operand info for this instruction!"); + assert(RegMap->getRegClass(VReg) == II.OpInfo[i+NumResults].RegClass && + "Register class of operand and regclass of use don't agree!"); } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Node->getOperand(i))) { MI->addZeroExtImm64Operand(C->getValue()); @@ -979,7 +988,15 @@ void SimpleSched::EmitNode(NodeInfo *NI) { assert(Node->getOperand(i).getValueType() != MVT::Other && Node->getOperand(i).getValueType() != MVT::Flag && "Chain and flag operands should occur at end of operand list!"); - MI->addRegOperand(getVR(Node->getOperand(i)), MachineOperand::Use); + unsigned VReg = getVR(Node->getOperand(i)); + MI->addRegOperand(VReg, MachineOperand::Use); + + // Verify that it is right. + assert(MRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?"); + assert(II.OpInfo[i+NumResults].RegClass && + "Don't have operand info for this instruction!"); + assert(RegMap->getRegClass(VReg) == II.OpInfo[i+NumResults].RegClass && + "Register class of operand and regclass of use don't agree!"); } } |