/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeFloatTypes.cpp | 652 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3); in SoftenFloatOp_BR_CC() local 655 EVT VT = NewLHS.getValueType(); in SoftenFloatOp_BR_CC() 656 NewLHS = GetSoftenedFloat(NewLHS); in SoftenFloatOp_BR_CC() 658 TLI.softenSetCCOperands(DAG, VT, NewLHS, NewRHS, CCCode, N->getDebugLoc()); in SoftenFloatOp_BR_CC() 663 NewRHS = DAG.getConstant(0, NewLHS.getValueType()); in SoftenFloatOp_BR_CC() 669 DAG.getCondCode(CCCode), NewLHS, NewRHS, in SoftenFloatOp_BR_CC() 698 SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1); in SoftenFloatOp_SELECT_CC() local 701 EVT VT = NewLHS.getValueType(); in SoftenFloatOp_SELECT_CC() 702 NewLHS = GetSoftenedFloat(NewLHS); in SoftenFloatOp_SELECT_CC() 704 TLI.softenSetCCOperands(DAG, VT, NewLHS, NewRHS, CCCode, N->getDebugLoc()); in SoftenFloatOp_SELECT_CC() [all …]
|
D | LegalizeIntegerTypes.cpp | 820 void DAGTypeLegalizer::PromoteSetCCOperands(SDValue &NewLHS,SDValue &NewRHS, in PromoteSetCCOperands() argument 836 NewLHS = ZExtPromotedInteger(NewLHS); in PromoteSetCCOperands() 843 NewLHS = SExtPromotedInteger(NewLHS); in PromoteSetCCOperands() 2510 void DAGTypeLegalizer::IntegerExpandSetCCOperands(SDValue &NewLHS, in IntegerExpandSetCCOperands() argument 2515 GetExpandedInteger(NewLHS, LHSLo, LHSHi); in IntegerExpandSetCCOperands() 2523 NewLHS = DAG.getNode(ISD::AND, dl, in IntegerExpandSetCCOperands() 2531 NewLHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo); in IntegerExpandSetCCOperands() 2533 NewLHS = DAG.getNode(ISD::OR, dl, NewLHS.getValueType(), NewLHS, NewRHS); in IntegerExpandSetCCOperands() 2534 NewRHS = DAG.getConstant(0, NewLHS.getValueType()); in IntegerExpandSetCCOperands() 2543 NewLHS = LHSHi; in IntegerExpandSetCCOperands() [all …]
|
D | TargetLowering.cpp | 103 SDValue &NewLHS, SDValue &NewRHS, in softenSetCCOperands() argument 185 SDValue Ops[2] = { NewLHS, NewRHS }; in softenSetCCOperands() 186 NewLHS = makeLibCall(DAG, LC1, RetVT, Ops, 2, false/*sign irrelevant*/, dl); in softenSetCCOperands() 191 NewLHS, NewRHS, DAG.getCondCode(CCCode)); in softenSetCCOperands() 192 NewLHS = makeLibCall(DAG, LC2, RetVT, Ops, 2, false/*sign irrelevant*/, dl); in softenSetCCOperands() 193 NewLHS = DAG.getNode(ISD::SETCC, dl, getSetCCResultType(RetVT), NewLHS, in softenSetCCOperands() 195 NewLHS = DAG.getNode(ISD::OR, dl, Tmp.getValueType(), Tmp, NewLHS); in softenSetCCOperands()
|
D | LegalizeTypes.h | 360 void IntegerExpandSetCCOperands(SDValue &NewLHS, SDValue &NewRHS, 486 void FloatExpandSetCCOperands(SDValue &NewLHS, SDValue &NewRHS,
|
/external/llvm/include/llvm/ADT/ |
D | Twine.h | 482 Child NewLHS, NewRHS; in concat() local 483 NewLHS.twine = this; in concat() 487 NewLHS = LHS; in concat() 495 return Twine(NewLHS, NewLHSKind, NewRHS, NewRHSKind); in concat()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombinePHI.cpp | 81 PHINode *NewLHS = 0, *NewRHS = 0; in FoldPHIArgBinOpIntoPHI() local 83 NewLHS = PHINode::Create(LHSType, PN.getNumIncomingValues(), in FoldPHIArgBinOpIntoPHI() 85 NewLHS->addIncoming(InLHS, PN.getIncomingBlock(0)); in FoldPHIArgBinOpIntoPHI() 86 InsertNewInstBefore(NewLHS, PN); in FoldPHIArgBinOpIntoPHI() 87 LHSVal = NewLHS; in FoldPHIArgBinOpIntoPHI() 99 if (NewLHS || NewRHS) { in FoldPHIArgBinOpIntoPHI() 102 if (NewLHS) { in FoldPHIArgBinOpIntoPHI() 104 NewLHS->addIncoming(NewInLHS, PN.getIncomingBlock(i)); in FoldPHIArgBinOpIntoPHI()
|
D | InstCombineAndOrXor.cpp | 1050 Value *NewLHS = Builder->CreateAnd(Op0LHS, AndRHS, in visitAnd() local 1052 return BinaryOperator::Create(Op0I->getOpcode(), NewLHS, Op0RHS); in visitAnd()
|
/external/llvm/lib/Transforms/Scalar/ |
D | Reassociate.cpp | 636 Value *NewLHS = Ops[i].Op; in RewriteExprTree() local 641 if (NewLHS == OldLHS && NewRHS == OldRHS) in RewriteExprTree() 645 if (NewLHS == OldRHS && NewRHS == OldLHS) { in RewriteExprTree() 658 if (NewLHS != OldLHS) { in RewriteExprTree() 662 Op->setOperand(0, NewLHS); in RewriteExprTree()
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 1731 SDValue &NewLHS, SDValue &NewRHS,
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 2543 Constant *NewLHS = ConstantExpr::getGetElementPtr(Null, IndicesLHS); in SimplifyICmpInst() local 2547 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS); in SimplifyICmpInst()
|