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 310 CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE;
314 case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break;
316 case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break;
318 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
320 case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break;
322 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
324 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
351 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
360 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &
    [all...]
JumpThreading.cpp     [all...]
GVN.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 91 ICmpInst::Predicate NewPred;
92 if (Value *NewConstant = getICmpValue(Sign, Code, LHS, RHS, NewPred))
94 return Builder->CreateICmp(NewPred, LHS, RHS);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 188 /// now be entries in it from the 'NewPred' block. The values that will be
191 static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred,
198 PN->addIncoming(PN->getIncomingValueForBlock(ExistPred), NewPred);
    [all...]

Completed in 244 milliseconds