forked from OSchip/llvm-project
Check to make sure we can select the instruction before trying to put the
operands into a register. Otherwise, we may materialize dead code. llvm-svn: 144805
This commit is contained in:
parent
624eb2af6f
commit
80979b6ea6
|
@ -1670,12 +1670,6 @@ bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
|
||||||
if (isFloat && !Subtarget->hasVFP2())
|
if (isFloat && !Subtarget->hasVFP2())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
unsigned Op1 = getRegForValue(I->getOperand(0));
|
|
||||||
if (Op1 == 0) return false;
|
|
||||||
|
|
||||||
unsigned Op2 = getRegForValue(I->getOperand(1));
|
|
||||||
if (Op2 == 0) return false;
|
|
||||||
|
|
||||||
unsigned Opc;
|
unsigned Opc;
|
||||||
bool is64bit = VT == MVT::f64 || VT == MVT::i64;
|
bool is64bit = VT == MVT::f64 || VT == MVT::i64;
|
||||||
switch (ISDOpcode) {
|
switch (ISDOpcode) {
|
||||||
|
@ -1690,6 +1684,12 @@ bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
|
||||||
Opc = is64bit ? ARM::VMULD : ARM::VMULS;
|
Opc = is64bit ? ARM::VMULD : ARM::VMULS;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
unsigned Op1 = getRegForValue(I->getOperand(0));
|
||||||
|
if (Op1 == 0) return false;
|
||||||
|
|
||||||
|
unsigned Op2 = getRegForValue(I->getOperand(1));
|
||||||
|
if (Op2 == 0) return false;
|
||||||
|
|
||||||
unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
|
unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
|
||||||
AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
|
AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
|
||||||
TII.get(Opc), ResultReg)
|
TII.get(Opc), ResultReg)
|
||||||
|
|
Loading…
Reference in New Issue