Lines Matching defs:GEPL
431 if (auto *GEPL = dyn_cast<GEPOperator>(LE)) {
433 if (int Res = cmpTypes(GEPL->getSourceElementType(),
436 if (int Res = cmpNumbers(GEPL->getNoWrapFlags().getRaw(),
440 std::optional<ConstantRange> InRangeL = GEPL->getInRange();
637 if (const GetElementPtrInst *GEPL = dyn_cast<GetElementPtrInst>(L)) {
641 cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand()))
643 return cmpGEPs(GEPL, GEPR);
798 int FunctionComparator::cmpGEPs(const GEPOperator *GEPL,
800 unsigned int ASL = GEPL->getPointerAddressSpace();
811 if (GEPL->accumulateConstantOffset(DL, OffsetL) &&
815 cmpTypes(GEPL->getSourceElementType(), GEPR->getSourceElementType()))
818 if (int Res = cmpNumbers(GEPL->getNumOperands(), GEPR->getNumOperands()))
821 for (unsigned i = 0, e = GEPL->getNumOperands(); i != e; ++i) {
822 if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i)))