Home
last modified time | relevance | path

Searched refs:Steps (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp81 bool CoreEngine::ExecuteWorkList(const LocationContext *L, unsigned Steps, in ExecuteWorkList() argument
123 bool UnlimitedSteps = Steps == 0; in ExecuteWorkList()
128 G.reserve(std::min(Steps,PreReservationCap)); in ExecuteWorkList()
132 if (Steps == 0) { in ExecuteWorkList()
136 --Steps; in ExecuteWorkList()
199 unsigned Steps, in ExecuteWorkListWithInitialState() argument
202 bool DidNotFinish = ExecuteWorkList(L, Steps, InitState); in ExecuteWorkListWithInitialState()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h164 bool ExecuteWorkList(const LocationContext *L, unsigned Steps = 150000) {
165 return Engine.ExecuteWorkList(L, Steps, nullptr);
172 bool ExecuteWorkListWithInitialState(const LocationContext *L, unsigned Steps, in ExecuteWorkListWithInitialState() argument
175 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst); in ExecuteWorkListWithInitialState()
H A DCoreEngine.h138 bool ExecuteWorkList(const LocationContext *L, unsigned Steps,
143 unsigned Steps,
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaInit.cpp3279 for (auto I = Steps.rbegin(); I != Steps.rend(); ++I) { in isDirectReferenceBinding()
3353 Steps.push_back(S); in AddAddressOverloadResolutionStep()
3365 Steps.push_back(S); in AddDerivedToBaseCastStep()
3373 Steps.push_back(S); in AddReferenceBindingStep()
3380 Steps.push_back(S); in AddFinalCopy()
3387 Steps.push_back(S); in AddExtraneousCopyToTemporary()
3401 Steps.push_back(S); in AddUserConversionStep()
3420 Steps.push_back(S); in AddQualificationConversionStep()
3510 Steps.insert(Steps.begin(), S); in AddArrayInitLoopStep()
3568 Steps.insert(Steps.begin(), S); in RewrapReferenceInitList()
[all …]
H A DSemaTemplateInstantiateDecl.cpp285 SmallVector<Expr *, 4> Uniforms, Aligneds, Alignments, Linears, Steps; in instantiateOMPDeclareSimdDeclAttr() local
338 Steps.push_back(Inst.get()); in instantiateOMPDeclareSimdDeclAttr()
344 Uniforms, Aligneds, Alignments, Linears, LinModifiers, Steps, in instantiateOMPDeclareSimdDeclAttr()
H A DSemaOpenMP.cpp3686 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR) { in ActOnOpenMPDeclareSimdDirective() argument
3689 assert(Linears.size() == Steps.size()); in ActOnOpenMPDeclareSimdDirective()
3882 for (Expr *E : Steps) { in ActOnOpenMPDeclareSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DInitialization.h945 SmallVector<Step, 4> Steps; variable
1182 step_iterator step_begin() const { return Steps.begin(); } in step_begin()
1183 step_iterator step_end() const { return Steps.end(); } in step_end()
H A DSema.h9105 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseOpenMP.cpp541 SmallVectorImpl<unsigned> &LinModifiers, SmallVectorImpl<Expr *> &Steps) { in parseDeclareSimdClauses() argument
596 Steps.append(Linears.size() - Steps.size(), Data.TailExpr); in parseDeclareSimdClauses()
627 SmallVector<Expr *, 4> Steps; in ParseOMPDeclareSimdClauses() local
630 Alignments, Linears, LinModifiers, Steps); in ParseOMPDeclareSimdClauses()
644 LinModifiers, Steps, SourceRange(Loc, EndLoc)); in ParseOMPDeclareSimdClauses()
/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp721 unsigned Steps = 0; in shouldTransformMulToShiftsAddsSubs() local
731 ++Steps; in shouldTransformMulToShiftsAddsSubs()
742 ++Steps; in shouldTransformMulToShiftsAddsSubs()
748 ++Steps; in shouldTransformMulToShiftsAddsSubs()
763 if (Steps > 12 && (Subtarget.isABI_N32() || Subtarget.isABI_N64())) in shouldTransformMulToShiftsAddsSubs()
766 if (Steps > 8 && Subtarget.isABI_O32()) in shouldTransformMulToShiftsAddsSubs()
777 Steps *= (VT.getSizeInBits() != RegisterSize) * 3; in shouldTransformMulToShiftsAddsSubs()
778 if (Steps > 27) in shouldTransformMulToShiftsAddsSubs()
/freebsd-12.1/lib/libc/softfloat/
H A Dsoftfloat-source.txt70 Steps to Creating a `softfloat.o'
281 Steps to Creating a `softfloat.o'
/freebsd-12.1/tools/test/testfloat/
H A Dtestfloat-source.txt81 Steps to Creating the TestFloat Executables
385 Steps to Creating the TestFloat Executables
/freebsd-12.1/contrib/llvm/tools/lld/docs/
H A Ddesign.rst115 Linking Steps
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DAttr.td3043 VariadicExprArgument<"Steps">