Searched defs:AddOp (Results 1 - 3 of 3) sorted by relevance

/external/llvm/utils/TableGen/
H A DSetTheory.cpp29 struct AddOp : public SetTheory::Operator { struct in namespace:__anon7237
202 addOperator("add", new AddOp);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp778 Instruction *AddOp = 0, *SubOp = 0; local
791 AddOp = FI; SubOp = TI;
796 AddOp = TI; SubOp = FI;
799 if (AddOp) {
801 if (SubOp->getOperand(0) == AddOp->getOperand(0)) {
802 OtherAddOp = AddOp->getOperand(1);
803 } else if (SubOp->getOperand(0) == AddOp->getOperand(1)) {
804 OtherAddOp = AddOp->getOperand(0);
819 if (AddOp != TI)
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp598 SDValue AddOp; local
601 AddOp = N0;
604 AddOp = N1;
609 if (requireIntermediatesHaveOneUse && !AddOp.hasOneUse())
617 Addend0 = AddOp.getOperand(0);
618 Addend1 = AddOp.getOperand(1);
621 if (AddOp.getOperand(0).getOpcode() == ISD::MUL) {
623 if (requireIntermediatesHaveOneUse && !AddOp.getOperand(0).hasOneUse())
625 Mul0 = AddOp.getOperand(0).getOperand(0);
626 Mul1 = AddOp
[all...]

Completed in 154 milliseconds