Lines Matching refs:InstL
1153 BasicBlock::const_iterator InstL = BBL->begin(), InstLE = BBL->end(); in cmpBasicBlocks() local
1157 if (int Res = cmpValues(&*InstL, &*InstR)) in cmpBasicBlocks()
1160 const GetElementPtrInst *GEPL = dyn_cast<GetElementPtrInst>(InstL); in cmpBasicBlocks()
1175 if (int Res = cmpOperations(&*InstL, &*InstR)) in cmpBasicBlocks()
1177 assert(InstL->getNumOperands() == InstR->getNumOperands()); in cmpBasicBlocks()
1179 for (unsigned i = 0, e = InstL->getNumOperands(); i != e; ++i) { in cmpBasicBlocks()
1180 Value *OpL = InstL->getOperand(i); in cmpBasicBlocks()
1189 ++InstL, ++InstR; in cmpBasicBlocks()
1190 } while (InstL != InstLE && InstR != InstRE); in cmpBasicBlocks()
1192 if (InstL != InstLE && InstR == InstRE) in cmpBasicBlocks()
1194 if (InstL == InstLE && InstR != InstRE) in cmpBasicBlocks()