Home | History | Annotate | Download | only in IPO

Lines Matching refs:f2i

426   BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
429 if (!enumerate(F1I, F2I))
433 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
443 if (!isEquivalentOperation(F1I, F2I))
446 assert(F1I->getNumOperands() == F2I->getNumOperands());
449 Value *OpF2 = F2I->getOperand(i);
460 ++F1I, ++F2I;
461 } while (F1I != F1E && F2I != F2E);
463 return F1I == F1E && F2I == F2E;
503 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
504 if (!enumerate(f1i, f2i))