Lines Matching refs:Compare
236 FCmpInst *Compare = dyn_cast<FCmpInst>(U1); in handleFloatingPointIV() local
237 if (!Compare) in handleFloatingPointIV()
238 Compare = dyn_cast<FCmpInst>(U2); in handleFloatingPointIV()
239 if (!Compare || !Compare->hasOneUse() || in handleFloatingPointIV()
240 !isa<BranchInst>(Compare->user_back())) in handleFloatingPointIV()
243 BranchInst *TheBr = cast<BranchInst>(Compare->user_back()); in handleFloatingPointIV()
257 ConstantFP *ExitValueVal = dyn_cast<ConstantFP>(Compare->getOperand(1)); in handleFloatingPointIV()
265 switch (Compare->getPredicate()) { in handleFloatingPointIV()
364 Compare->getName()); in handleFloatingPointIV()
372 NewCompare->takeName(Compare); in handleFloatingPointIV()
373 Compare->replaceAllUsesWith(NewCompare); in handleFloatingPointIV()
374 RecursivelyDeleteTriviallyDeadInstructions(Compare, TLI, MSSAU.get()); in handleFloatingPointIV()