mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Implement CopyFromReg, TokenFactor, and fix a bug in CopyToReg. This allows
us to compile stuff like this: double %test(double %A, double %B, double %C, double %E) { %F = mul double %A, %A %G = add double %F, %B %H = sub double -0.0, %G %I = mul double %H, %C %J = add double %I, %E ret double %J } to: _test: fnmadd f0, f1, f1, f2 fmadd f1, f0, f3, f4 blr woot! llvm-svn: 22937
This commit is contained in:
parent
b36807b0d0
commit
bedf8e757a
@ -131,13 +131,43 @@ unsigned SimpleSched::Emit(SDOperand Op) {
|
||||
Op.Val->dump();
|
||||
assert(0 && "This target-independent node should have been selected!");
|
||||
case ISD::EntryToken: break;
|
||||
case ISD::TokenFactor:
|
||||
for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i)
|
||||
Emit(Op.getOperand(i));
|
||||
break;
|
||||
case ISD::CopyToReg: {
|
||||
Emit(Op.getOperand(0)); // Emit the chain.
|
||||
unsigned Val = Emit(Op.getOperand(2));
|
||||
MRI.copyRegToReg(*BB, BB->end(),
|
||||
cast<RegisterSDNode>(Op.getOperand(1))->getReg(), Val,
|
||||
RegMap->getRegClass(Val));
|
||||
break;
|
||||
}
|
||||
case ISD::CopyFromReg: {
|
||||
Emit(Op.getOperand(0)); // Emit the chain.
|
||||
unsigned SrcReg = cast<RegisterSDNode>(Op.getOperand(1))->getReg();
|
||||
|
||||
// Figure out the register class to create for the destreg.
|
||||
const TargetRegisterClass *TRC;
|
||||
if (MRegisterInfo::isVirtualRegister(SrcReg)) {
|
||||
TRC = RegMap->getRegClass(SrcReg);
|
||||
} else {
|
||||
// FIXME: we don't know what register class to generate this for. Do
|
||||
// a brute force search and pick the first match. :(
|
||||
for (MRegisterInfo::regclass_iterator I = MRI.regclass_begin(),
|
||||
E = MRI.regclass_end(); I != E; ++I)
|
||||
if ((*I)->contains(SrcReg)) {
|
||||
TRC = *I;
|
||||
break;
|
||||
}
|
||||
assert(TRC && "Couldn't find register class for reg copy!");
|
||||
}
|
||||
|
||||
// Create the reg, emit the copy.
|
||||
ResultReg = RegMap->createVirtualRegister(TRC);
|
||||
MRI.copyRegToReg(*BB, BB->end(), ResultReg, SrcReg, TRC);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user