Home | History | Annotate | Download | only in IPO

Lines Matching refs:F2I

420   BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
423 if (!enumerate(F1I, F2I))
427 F2I);
437 if (!isEquivalentOperation(F1I, F2I))
440 assert(F1I->getNumOperands() == F2I->getNumOperands());
443 Value *OpF2 = F2I->getOperand(i);
454 ++F1I, ++F2I;
455 } while (F1I != F1E && F2I != F2E);
457 return F1I == F1E && F2I == F2E;
497 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
498 if (!enumerate(f1i, f2i))