Searched defs:NewRHS (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp521 Constant *NewRHS = ConstantExpr::get(I.getOpcode(), Op0C, Op1); local
528 NewRHS);
H A DInstCombinePHI.cpp83 PHINode *NewLHS = nullptr, *NewRHS = nullptr; local
93 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(),
95 NewRHS->addIncoming(InRHS, PN.getIncomingBlock(0));
96 InsertNewInstBefore(NewRHS, PN);
97 RHSVal = NewRHS;
101 if (NewLHS || NewRHS) {
108 if (NewRHS) {
110 NewRHS->addIncoming(NewInRHS, PN.getIncomingBlock(i));
H A DInstCombineAndOrXor.cpp1141 Value *NewRHS = Builder->CreateAnd(Op0RHS, AndRHS, local
1143 return BinaryOperator::Create(Op0I->getOpcode(), Op0LHS, NewRHS);
2331 Constant *NewRHS = ConstantExpr::getOr(Op0CI, RHS); local
2333 // NewRHS.
2335 NewRHS = ConstantExpr::getAnd(NewRHS,
2339 I.setOperand(1, NewRHS);
H A DInstCombineCompares.cpp1068 APInt NewRHS = RHS->getValue().zext(SrcBits); local
1069 NewRHS |= KnownOne & APInt::getHighBitsSet(SrcBits, SrcBits-DstBits);
1071 Builder->getInt(NewRHS));
H A DInstructionCombining.cpp1266 Value *NewLHS, *NewRHS; local
1269 NewRHS = Shuffle->getOperand(0);
1272 NewRHS = C2;
1274 Value *NewBO = CreateBinOpAsGiven(Inst, NewLHS, NewRHS, Builder);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp669 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3); local
674 NewRHS = GetSoftenedFloat(NewRHS);
675 TLI.softenSetCCOperands(DAG, VT, NewLHS, NewRHS, CCCode, SDLoc(N));
679 if (!NewRHS.getNode()) {
680 NewRHS = DAG.getConstant(0, NewLHS.getValueType());
686 DAG.getCondCode(CCCode), NewLHS, NewRHS,
715 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
720 NewRHS = GetSoftenedFloat(NewRHS);
738 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
1308 FloatExpandSetCCOperands(SDValue &NewLHS, SDValue &NewRHS, ISD::CondCode &CCCode, SDLoc dl) argument
1339 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3); local
1432 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
1450 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
[all...]
H A DLegalizeIntegerTypes.cpp858 void DAGTypeLegalizer::PromoteSetCCOperands(SDValue &NewLHS,SDValue &NewRHS, argument
875 NewRHS = ZExtPromotedInteger(NewRHS);
882 NewRHS = SExtPromotedInteger(NewRHS);
2516 SDValue &NewRHS,
2521 GetExpandedInteger(NewRHS, RHSLo, RHSHi);
2530 NewRHS = RHSLo;
2537 NewRHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
2538 NewLHS = DAG.getNode(ISD::OR, dl, NewLHS.getValueType(), NewLHS, NewRHS);
2515 IntegerExpandSetCCOperands(SDValue &NewLHS, SDValue &NewRHS, ISD::CondCode &CCCode, SDLoc dl) argument
2621 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3); local
2639 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
2657 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
[all...]
H A DTargetLowering.cpp118 SDValue &NewLHS, SDValue &NewRHS,
200 SDValue Ops[2] = { NewLHS, NewRHS };
203 NewRHS = DAG.getConstant(0, RetVT);
208 NewLHS, NewRHS, DAG.getCondCode(CCCode));
213 NewRHS, DAG.getCondCode(getCmpLibcallCC(LC2)));
215 NewRHS = SDValue();
117 softenSetCCOperands(SelectionDAG &DAG, EVT VT, SDValue &NewLHS, SDValue &NewRHS, ISD::CondCode &CCCode, SDLoc dl) const argument
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp716 Value *NewRHS = Ops[i+1].Op; local
720 if (NewLHS == OldLHS && NewRHS == OldRHS)
724 if (NewLHS == OldRHS && NewRHS == OldLHS) {
743 if (NewRHS != OldRHS) {
747 Op->setOperand(1, NewRHS);
760 Value *NewRHS = Ops[i].Op; local
761 if (NewRHS != Op->getOperand(1)) {
763 if (NewRHS == Op->getOperand(0)) {
772 Op->setOperand(1, NewRHS);
H A DLoopStrengthReduce.cpp2058 Value *NewRHS = nullptr; local
2064 NewRHS = BO->getOperand(0);
2068 NewRHS = BO->getOperand(0);
2069 if (!NewRHS)
2072 NewRHS = Sel->getOperand(1);
2074 NewRHS = Sel->getOperand(2);
2076 NewRHS = SU->getValue();
2089 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp2589 Constant *NewRHS = ConstantExpr::getGetElementPtr(Null, IndicesRHS); local
2590 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);

Completed in 125 milliseconds