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

  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 81 PHINode *NewLHS = 0, *NewRHS = 0;
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));
    [all...]
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 636 Value *NewLHS = Ops[i].Op;
641 if (NewLHS == OldLHS && NewRHS == OldRHS)
645 if (NewLHS == OldRHS && NewRHS == OldLHS) {
658 if (NewLHS != OldLHS) {
662 Op->setOperand(0, NewLHS);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 652 SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3);
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,
    [all...]
LegalizeIntegerTypes.cpp     [all...]

Completed in 191 milliseconds