Lines Matching defs:GEPL
447 if (auto *GEPL = dyn_cast<GEPOperator>(LE)) {
449 if (int Res = cmpTypes(GEPL->getSourceElementType(),
452 if (int Res = cmpNumbers(GEPL->getNoWrapFlags().getRaw(),
456 std::optional<ConstantRange> InRangeL = GEPL->getInRange();
651 if (const GetElementPtrInst *GEPL = dyn_cast<GetElementPtrInst>(L)) {
655 cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand()))
657 return cmpGEPs(GEPL, GEPR);
812 int FunctionComparator::cmpGEPs(const GEPOperator *GEPL,
814 unsigned int ASL = GEPL->getPointerAddressSpace();
825 if (GEPL->accumulateConstantOffset(DL, OffsetL) &&
829 cmpTypes(GEPL->getSourceElementType(), GEPR->getSourceElementType()))
832 if (int Res = cmpNumbers(GEPL->getNumOperands(), GEPR->getNumOperands()))
835 for (unsigned i = 0, e = GEPL->getNumOperands(); i != e; ++i) {
836 if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i)))