Lines Matching refs:GEPR
423 auto *GEPR = cast<GEPOperator>(RE); in cmpConstants() local
425 GEPR->getSourceElementType())) in cmpConstants()
427 if (int Res = cmpNumbers(GEPL->isInBounds(), GEPR->isInBounds())) in cmpConstants()
430 GEPR->getInRangeIndex().value_or(unsigned(-1)))) in cmpConstants()
619 const GetElementPtrInst *GEPR = cast<GetElementPtrInst>(R); in cmpOperations() local
621 cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand())) in cmpOperations()
623 return cmpGEPs(GEPL, GEPR); in cmpOperations()
779 const GEPOperator *GEPR) const { in cmpGEPs()
781 unsigned int ASR = GEPR->getPointerAddressSpace(); in cmpGEPs()
792 GEPR->accumulateConstantOffset(DL, OffsetR)) in cmpGEPs()
795 cmpTypes(GEPL->getSourceElementType(), GEPR->getSourceElementType())) in cmpGEPs()
798 if (int Res = cmpNumbers(GEPL->getNumOperands(), GEPR->getNumOperands())) in cmpGEPs()
802 if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i))) in cmpGEPs()