Displaying 1 result from an estimated 1 matches for "brld".
Did you mean:
bold
2011 Sep 26
1
[LLVMdev] distinguishing between real arguments and variable arguments
...(instr->getOpcode()) {
default: return instr->getNumOperands();
// These instructions have a variable number of operands but the
first two
// are the "real" operands that we care about during hazard detection.
case MBlaze::BRLID:
case MBlaze::BRALID:
case MBlaze::BRLD:
case MBlaze::BRALD:
return 2;
}
}
In Sparc:
void Filler::insertCallUses(MachineBasicBlock::iterator MI,
SmallSet<unsigned, 32>& RegUses)
{
switch(MI->getOpcode()) {
default: llvm_unreachable("Unknown opcode.");
case SP::CAL...