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

  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 83 PHINode *NewLHS = nullptr, *NewRHS = nullptr;
85 NewLHS = PHINode::Create(LHSType, PN.getNumIncomingValues(),
87 NewLHS->addIncoming(InLHS, PN.getIncomingBlock(0));
88 InsertNewInstBefore(NewLHS, PN);
89 LHSVal = NewLHS;
101 if (NewLHS || NewRHS) {
104 if (NewLHS) {
106 NewLHS->addIncoming(NewInLHS, PN.getIncomingBlock(i));
    [all...]
InstCombineAndOrXor.cpp     [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 715 Value *NewLHS = Ops[i].Op;
720 if (NewLHS == OldLHS && NewRHS == OldRHS)
724 if (NewLHS == OldRHS && NewRHS == OldLHS) {
737 if (NewLHS != OldLHS) {
741 Op->setOperand(0, NewLHS);
    [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);
672 EVT VT = NewLHS.getValueType();
673 NewLHS = GetSoftenedFloat(NewLHS);
675 TLI.softenSetCCOperands(DAG, VT, NewLHS, NewRHS, CCCode, SDLoc(N));
680 NewRHS = DAG.getConstant(0, NewLHS.getValueType());
686 DAG.getCondCode(CCCode), NewLHS, NewRHS,
    [all...]
LegalizeIntegerTypes.cpp     [all...]

Completed in 387 milliseconds