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 521 Constant *NewRHS = ConstantExpr::get(I.getOpcode(), Op0C, Op1);
528 NewRHS);
    [all...]
InstCombinePHI.cpp 83 PHINode *NewLHS = nullptr, *NewRHS = nullptr;
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));
    [all...]
InstCombineAndOrXor.cpp     [all...]
InstructionCombining.cpp     [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 716 Value *NewRHS = Ops[i+1].Op;
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;
761 if (NewRHS != Op->getOperand(1)) {
763 if (NewRHS == Op->getOperand(0)) {
772 Op->setOperand(1, NewRHS);
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 669 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3);
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,
    [all...]
LegalizeIntegerTypes.cpp     [all...]

Completed in 500 milliseconds