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

  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 343 CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE;
347 case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break;
349 case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break;
351 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
353 case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break;
355 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
357 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
384 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
393 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &
    [all...]
LoopInterchange.cpp 415 BasicBlock *NewPred);
    [all...]
JumpThreading.cpp     [all...]
GVN.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 73 ICmpInst::Predicate NewPred;
74 if (Value *NewConstant = getICmpValue(Sign, Code, LHS, RHS, NewPred))
76 return Builder->CreateICmp(NewPred, LHS, RHS);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 223 /// from the 'NewPred' block. The values that will be flowing into the PHI nodes
226 static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred,
233 PN->addIncoming(PN->getIncomingValueForBlock(ExistPred), NewPred);
    [all...]

Completed in 101 milliseconds