Home
last modified time | relevance | path

Searched refs:StartC (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVGatherScatterLowering.cpp109 static std::pair<Value *, Value *> matchStridedConstant(Constant *StartC) { in matchStridedConstant() argument
110 unsigned NumElts = cast<FixedVectorType>(StartC->getType())->getNumElements(); in matchStridedConstant()
114 dyn_cast_or_null<ConstantInt>(StartC->getAggregateElement((unsigned)0)); in matchStridedConstant()
120 auto *C = dyn_cast_or_null<ConstantInt>(StartC->getAggregateElement(i)); in matchStridedConstant()
141 auto *StartC = dyn_cast<Constant>(Start); in matchStridedStart() local
142 if (StartC) in matchStridedStart()
143 return matchStridedConstant(StartC); in matchStridedStart()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp713 auto *StartC = dyn_cast<ConstantInt>(getStartValue()->getLiveInIRValue()); in isCanonical() local
715 return StartC && StartC->isZero() && StepC && StepC->isOne(); in isCanonical()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1760 const APFloat *StartC, *C; in visitFAdd() local
1762 m_APFloat(StartC), m_Value(X)))) && in visitFAdd()
1765 Constant *NewStartC = ConstantFP::get(I.getType(), *C + *StartC); in visitFAdd()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DValueTracking.cpp2415 const APInt *StartC, *StepC; in isNonZeroRecurrence() local
2417 !match(Start, m_APInt(StartC)) || StartC->isZero()) in isNonZeroRecurrence()
2426 StartC->isNegative() == StepC->isNegative()); in isNonZeroRecurrence()
H A DScalarEvolution.cpp1515 const SCEVConstant *StartC = dyn_cast<SCEVConstant>(Start); in proveNoWrapByVaryingStart() local
1516 if (!StartC) in proveNoWrapByVaryingStart()
1519 APInt StartAI = StartC->getAPInt(); in proveNoWrapByVaryingStart()
1536 const SCEV *DeltaS = getConstant(StartC->getType(), Delta); in proveNoWrapByVaryingStart()
3485 const SCEVConstant *StartC = dyn_cast<SCEVConstant>(AR->getStart()); in getUDivExpr() local
3486 if (StartC && !DivInt.urem(StepInt) && in getUDivExpr()
3491 const APInt &StartInt = StartC->getAPInt(); in getUDivExpr()