Home
last modified time | relevance | path

Searched refs:StartValue (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVDescriptors.h80 : IntermediateStore(Store), StartValue(Start), LoopExitInstr(Exit), in RecurrenceDescriptor()
203 TrackingVH<Value> getRecurrenceStartValue() const { return StartValue; } in getRecurrenceStartValue()
281 TrackingVH<Value> StartValue;
320 Value *getStartValue() const { return StartValue; } in getStartValue()
386 TrackingVH<Value> StartValue; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstraintElimination.cpp927 Value *StartValue = nullptr; in addInfoForInductions() local
929 StartValue = C->getValue(); in addInfoForInductions()
931 StartValue = PN->getIncomingValueForBlock(LoopPred); in addInfoForInductions()
971 DTN, CmpInst::ICMP_UGE, StartValue, PN, in addInfoForInductions()
972 ConditionTy(CmpInst::ICMP_ULE, B, StartValue))); in addInfoForInductions()
974 DTN, CmpInst::ICMP_SGE, StartValue, PN, in addInfoForInductions()
975 ConditionTy(CmpInst::ICMP_SLE, B, StartValue))); in addInfoForInductions()
1006 DTN, CmpInst::ICMP_UGE, PN, StartValue, in addInfoForInductions()
1010 DTN, CmpInst::ICMP_SGE, PN, StartValue, in addInfoForInductions()
1015 ConditionTy(CmpInst::ICMP_ULE, StartValue, B))); in addInfoForInductions()
[all …]
H A DLoopStrengthReduce.cpp7004 Value *StartValue = ToHelpFold->getIncomingValueForBlock(LoopPreheader); in ReduceLoopStrength() local
7005 (void)StartValue; in ReduceLoopStrength()
7025 << *StartValue << "\n" in ReduceLoopStrength()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DIVDescriptors.cpp1237 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp) { in InductionDescriptor()
1242 assert(StartValue && "StartValue is null"); in InductionDescriptor()
1243 assert((IK != IK_PtrInduction || StartValue->getType()->isPointerTy()) && in InductionDescriptor()
1245 assert((IK != IK_IntInduction || StartValue->getType()->isIntegerTy()) && in InductionDescriptor()
1290 Value *BEValue = nullptr, *StartValue = nullptr; in isFPInductionPHI() local
1293 StartValue = Phi->getIncomingValue(1); in isFPInductionPHI()
1298 StartValue = Phi->getIncomingValue(0); in isFPInductionPHI()
1325 D = InductionDescriptor(StartValue, IK_FpInduction, Step, BOp); in isFPInductionPHI()
1510 Value *StartValue = in isInductionPHI() local
1527 D = InductionDescriptor(StartValue, IK_IntInduction, Step, BOp, in isInductionPHI()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp2018 Value *StartValue = expand(Start, Loc); in generateOverflowCheck() local
2067 Add = Builder.CreatePtrAdd(StartValue, MulV); in generateOverflowCheck()
2069 Sub = Builder.CreatePtrAdd(StartValue, NegMulV); in generateOverflowCheck()
2072 Add = Builder.CreateAdd(StartValue, MulV); in generateOverflowCheck()
2074 Sub = Builder.CreateSub(StartValue, MulV); in generateOverflowCheck()
2082 Signed ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT, Add, StartValue); in generateOverflowCheck()
2085 Signed ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT, Sub, StartValue); in generateOverflowCheck()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp3370 llvm::APSInt StartValue; in ActOnDesignatedInitializer() local
3378 CheckArrayDesignatorExpr(*this, StartIndex, StartValue).get(); in ActOnDesignatedInitializer()
3388 } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) in ActOnDesignatedInitializer()
3389 EndValue = EndValue.extend(StartValue.getBitWidth()); in ActOnDesignatedInitializer()
3390 else if (StartValue.getBitWidth() < EndValue.getBitWidth()) in ActOnDesignatedInitializer()
3391 StartValue = StartValue.extend(EndValue.getBitWidth()); in ActOnDesignatedInitializer()
3393 if (!StartDependent && !EndDependent && EndValue < StartValue) { in ActOnDesignatedInitializer()
3395 << toString(StartValue, 10) << toString(EndValue, 10) in ActOnDesignatedInitializer()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2341 emitTransformedIndex(IRBuilderBase &B, Value *Index, Value *StartValue, in emitTransformedIndex() argument
2392 assert(Index->getType() == StartValue->getType() && in emitTransformedIndex()
2395 return B.CreateSub(StartValue, Index); in emitTransformedIndex()
2397 return CreateAdd(StartValue, Offset); in emitTransformedIndex()
2400 return B.CreatePtrAdd(StartValue, CreateMul(Index, Step)); in emitTransformedIndex()
2411 return B.CreateBinOp(InductionBinOp->getOpcode(), StartValue, MulExp, in emitTransformedIndex()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp9181 SDValue StartValue, SDValue Vec, SDValue Mask, in lowerReductionSeq() argument
9196 SDValue InitialValue = lowerScalarInsert(StartValue, InnerVL, InnerVT, DL, in lowerReductionSeq()