Searched defs:NewLHS (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp81 PHINode *NewLHS = 0, *NewRHS = 0; local
83 NewLHS = PHINode::Create(LHSType, PN.getNumIncomingValues(),
85 NewLHS->addIncoming(InLHS, PN.getIncomingBlock(0));
86 InsertNewInstBefore(NewLHS, PN);
87 LHSVal = NewLHS;
99 if (NewLHS || NewRHS) {
102 if (NewLHS) {
104 NewLHS->addIncoming(NewInLHS, PN.getIncomingBlock(i));
H A DInstCombineAndOrXor.cpp1050 Value *NewLHS = Builder->CreateAnd(Op0LHS, AndRHS, local
1052 return BinaryOperator::Create(Op0I->getOpcode(), NewLHS, Op0RHS);
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp636 Value *NewLHS = Ops[i].Op; local
641 if (NewLHS == OldLHS && NewRHS == OldRHS)
645 if (NewLHS == OldRHS && NewRHS == OldLHS) {
658 if (NewLHS != OldLHS) {
662 Op->setOperand(0, NewLHS);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp652 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3); local
655 EVT VT = NewLHS.getValueType();
656 NewLHS = GetSoftenedFloat(NewLHS);
658 TLI.softenSetCCOperands(DAG, VT, NewLHS, NewRHS, CCCode, N->getDebugLoc());
663 NewRHS = DAG.getConstant(0, NewLHS.getValueType());
669 DAG.getCondCode(CCCode), NewLHS, NewRHS,
698 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
701 EVT VT = NewLHS.getValueType();
702 NewLHS
721 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
1269 FloatExpandSetCCOperands(SDValue &NewLHS, SDValue &NewRHS, ISD::CondCode &CCCode, DebugLoc dl) argument
1300 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3); local
1382 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
1400 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
[all...]
H A DTargetLowering.cpp103 SDValue &NewLHS, SDValue &NewRHS,
185 SDValue Ops[2] = { NewLHS, NewRHS };
186 NewLHS = makeLibCall(DAG, LC1, RetVT, Ops, 2, false/*sign irrelevant*/, dl);
191 NewLHS, NewRHS, DAG.getCondCode(CCCode));
192 NewLHS = makeLibCall(DAG, LC2, RetVT, Ops, 2, false/*sign irrelevant*/, dl);
193 NewLHS = DAG.getNode(ISD::SETCC, dl, getSetCCResultType(RetVT), NewLHS,
195 NewLHS = DAG.getNode(ISD::OR, dl, Tmp.getValueType(), Tmp, NewLHS);
102 softenSetCCOperands(SelectionDAG &DAG, EVT VT, SDValue &NewLHS, SDValue &NewRHS, ISD::CondCode &CCCode, DebugLoc dl) const argument
H A DLegalizeIntegerTypes.cpp820 void DAGTypeLegalizer::PromoteSetCCOperands(SDValue &NewLHS,SDValue &NewRHS, argument
836 NewLHS = ZExtPromotedInteger(NewLHS);
843 NewLHS = SExtPromotedInteger(NewLHS);
2510 void DAGTypeLegalizer::IntegerExpandSetCCOperands(SDValue &NewLHS, argument
2515 GetExpandedInteger(NewLHS, LHSLo, LHSHi);
2523 NewLHS = DAG.getNode(ISD::AND, dl,
2531 NewLHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
2533 NewLHS
2611 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3); local
2629 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
2647 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); local
[all...]
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp2543 Constant *NewLHS = ConstantExpr::getGetElementPtr(Null, IndicesLHS); local
2547 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);

Completed in 479 milliseconds