Lines Matching refs:GEPR
432 auto *GEPR = cast<GEPOperator>(RE); in cmpConstants() local
434 GEPR->getSourceElementType())) in cmpConstants()
437 GEPR->getNoWrapFlags().getRaw())) in cmpConstants()
441 std::optional<ConstantRange> InRangeR = GEPR->getInRange(); in cmpConstants()
639 const GetElementPtrInst *GEPR = cast<GetElementPtrInst>(R); in cmpOperations() local
641 cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand())) in cmpOperations()
643 return cmpGEPs(GEPL, GEPR); in cmpOperations()
799 const GEPOperator *GEPR) const { in cmpGEPs()
801 unsigned int ASR = GEPR->getPointerAddressSpace(); in cmpGEPs()
812 GEPR->accumulateConstantOffset(DL, OffsetR)) in cmpGEPs()
815 cmpTypes(GEPL->getSourceElementType(), GEPR->getSourceElementType())) in cmpGEPs()
818 if (int Res = cmpNumbers(GEPL->getNumOperands(), GEPR->getNumOperands())) in cmpGEPs()
822 if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i))) in cmpGEPs()