Lines Matching refs:f2i
418 BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
421 if (!enumerate(F1I, F2I))
425 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
435 if (!isEquivalentOperation(F1I, F2I))
438 assert(F1I->getNumOperands() == F2I->getNumOperands());
441 Value *OpF2 = F2I->getOperand(i);
452 ++F1I, ++F2I;
453 } while (F1I != F1E && F2I != F2E);
455 return F1I == F1E && F2I == F2E;
495 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
496 if (!enumerate(f1i, f2i))