Lines Matching full:gep2
190 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
192 const GetElementPtrInst *GEP2) {
193 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
354 const GEPOperator *GEP2) {
361 GEP2->accumulateConstantOffset(*TD, Offset2)) {
366 GEP2->getPointerOperand()->getType())
369 if (GEP1->getNumOperands() != GEP2->getNumOperands())
373 if (!enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
433 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
434 if (!GEP2)
437 if (!enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
440 if (!isEquivalentGEP(GEP1, GEP2))