HomeSort by relevance Sort by last modified time
    Searched defs:NewRHS (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 513 Constant *NewRHS = ConstantExpr::get(I.getOpcode(), Op0C, Op1);
520 NewRHS);
    [all...]
InstCombinePHI.cpp 81 PHINode *NewLHS = 0, *NewRHS = 0;
91 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(),
93 NewRHS->addIncoming(InRHS, PN.getIncomingBlock(0));
94 InsertNewInstBefore(NewRHS, PN);
95 RHSVal = NewRHS;
99 if (NewLHS || NewRHS) {
106 if (NewRHS) {
108 NewRHS->addIncoming(NewInRHS, PN.getIncomingBlock(i));
    [all...]
InstCombineAndOrXor.cpp     [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 684 Value *NewRHS = Ops[i+1].Op;
688 if (NewLHS == OldLHS && NewRHS == OldRHS)
692 if (NewLHS == OldRHS && NewRHS == OldLHS) {
710 if (NewRHS != OldRHS) {
713 Op->setOperand(1, NewRHS);
726 Value *NewRHS = Ops[i].Op;
727 if (NewRHS != Op->getOperand(1)) {
729 if (NewRHS == Op->getOperand(0)) {
737 Op->setOperand(1, NewRHS);
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 612 void DAGTypeLegalizer::SoftenSetCCOperands(SDValue &NewLHS, SDValue &NewRHS,
615 SDValue RHSInt = GetSoftenedFloat(NewRHS);
683 NewRHS = DAG.getConstant(0, RetVT);
687 NewLHS, NewRHS, DAG.getCondCode(CCCode));
690 NewRHS, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
692 NewRHS = SDValue();
713 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3);
715 SoftenSetCCOperands(NewLHS, NewRHS, CCCode, N->getDebugLoc());
719 if (NewRHS.getNode() == 0) {
720 NewRHS = DAG.getConstant(0, NewLHS.getValueType())
    [all...]
LegalizeIntegerTypes.cpp     [all...]
DAGCombiner.cpp     [all...]

Completed in 651 milliseconds