Lines Matching refs:InstL
1171 BasicBlock::const_iterator InstL = BBL->begin(), InstLE = BBL->end(); in cmpBasicBlocks() local
1175 if (int Res = cmpValues(&*InstL, &*InstR)) in cmpBasicBlocks()
1178 const GetElementPtrInst *GEPL = dyn_cast<GetElementPtrInst>(InstL); in cmpBasicBlocks()
1193 if (int Res = cmpOperations(&*InstL, &*InstR)) in cmpBasicBlocks()
1195 assert(InstL->getNumOperands() == InstR->getNumOperands()); in cmpBasicBlocks()
1197 for (unsigned i = 0, e = InstL->getNumOperands(); i != e; ++i) { in cmpBasicBlocks()
1198 Value *OpL = InstL->getOperand(i); in cmpBasicBlocks()
1207 ++InstL; in cmpBasicBlocks()
1209 } while (InstL != InstLE && InstR != InstRE); in cmpBasicBlocks()
1211 if (InstL != InstLE && InstR == InstRE) in cmpBasicBlocks()
1213 if (InstL == InstLE && InstR != InstRE) in cmpBasicBlocks()