Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp605 ReductionDescriptor() : StartValue(nullptr), LoopExitInstr(nullptr), in ReductionDescriptor()
610 : StartValue(Start), LoopExitInstr(Exit), Kind(K), MinMaxKind(MK) {} in ReductionDescriptor()
614 TrackingVH<Value> StartValue; member
643 : StartValue(Start), IK(K), StepValue(Step) { in InductionInfo()
645 assert(StartValue && "StartValue is null"); in InductionInfo()
647 assert((IK != IK_PtrInduction || StartValue->getType()->isPointerTy()) && in InductionInfo()
649 assert((IK != IK_IntInduction || StartValue->getType()->isIntegerTy()) && in InductionInfo()
655 : StartValue(nullptr), IK(IK_NoInduction), StepValue(nullptr) {} in InductionInfo()
676 assert(Index->getType() == StartValue->getType() && in transform()
679 return B.CreateSub(StartValue, Index); in transform()
[all …]
/external/clang/lib/Sema/
DSemaInit.cpp2546 llvm::APSInt StartValue; in ActOnDesignatedInitializer() local
2554 CheckArrayDesignatorExpr(*this, StartIndex, StartValue).get(); in ActOnDesignatedInitializer()
2564 } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) in ActOnDesignatedInitializer()
2565 EndValue = EndValue.extend(StartValue.getBitWidth()); in ActOnDesignatedInitializer()
2566 else if (StartValue.getBitWidth() < EndValue.getBitWidth()) in ActOnDesignatedInitializer()
2567 StartValue = StartValue.extend(EndValue.getBitWidth()); in ActOnDesignatedInitializer()
2569 if (!StartDependent && !EndDependent && EndValue < StartValue) { in ActOnDesignatedInitializer()
2571 << StartValue.toString(10) << EndValue.toString(10) in ActOnDesignatedInitializer()
/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp268 APInt StartValue; member