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

  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 306 CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE;
310 case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break;
312 case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break;
314 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
316 case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break;
318 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
320 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
347 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
356 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &
    [all...]
JumpThreading.cpp     [all...]
GVN.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 99 ICmpInst::Predicate NewPred;
100 if (Value *NewConstant = getICmpValue(Sign, Code, LHS, RHS, NewPred))
102 return Builder->CreateICmp(NewPred, LHS, RHS);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 185 /// now be entries in it from the 'NewPred' block. The values that will be
188 static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred,
195 PN->addIncoming(PN->getIncomingValueForBlock(ExistPred), NewPred);
    [all...]

Completed in 187 milliseconds