Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp79 bool CoreEngine::ExecuteWorkList(const LocationContext *L, unsigned Steps, in ExecuteWorkList() argument
121 bool UnlimitedSteps = Steps == 0; in ExecuteWorkList()
126 G.reserve(std::min(Steps,PreReservationCap)); in ExecuteWorkList()
130 if (Steps == 0) { in ExecuteWorkList()
134 --Steps; in ExecuteWorkList()
197 unsigned Steps, in ExecuteWorkListWithInitialState() argument
200 bool DidNotFinish = ExecuteWorkList(L, Steps, InitState); in ExecuteWorkListWithInitialState()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h191 bool ExecuteWorkList(const LocationContext *L, unsigned Steps = 150000) {
192 return Engine.ExecuteWorkList(L, Steps, nullptr);
199 bool ExecuteWorkListWithInitialState(const LocationContext *L, unsigned Steps, in ExecuteWorkListWithInitialState() argument
202 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst); in ExecuteWorkListWithInitialState()
H A DCoreEngine.h145 bool ExecuteWorkList(const LocationContext *L, unsigned Steps,
150 unsigned Steps,
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueLattice.h138 MergeOptions &setMaxWidenSteps(unsigned Steps = 1) {
140 MaxWidenSteps = Steps;
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp3504 for (auto I = Steps.rbegin(); I != Steps.rend(); ++I) { in isDirectReferenceBinding()
3580 Steps.push_back(S); in AddAddressOverloadResolutionStep()
3594 Steps.push_back(S); in AddDerivedToBaseCastStep()
3602 Steps.push_back(S); in AddReferenceBindingStep()
3609 Steps.push_back(S); in AddFinalCopy()
3616 Steps.push_back(S); in AddExtraneousCopyToTemporary()
3630 Steps.push_back(S); in AddUserConversionStep()
3649 Steps.push_back(S); in AddQualificationConversionStep()
3737 Steps.insert(Steps.begin(), S); in AddArrayInitLoopStep()
3795 Steps.insert(Steps.begin(), S); in RewrapReferenceInitList()
[all …]
H A DSemaExprCXX.cpp6632 SmallVector<Step, 8> Steps; in FindCompositePointerType() local
6659 if (!Steps.empty()) { in FindCompositePointerType()
6669 } else if (Steps.size() == 1) { in FindCompositePointerType()
6684 assert(Steps.size() == 1); in FindCompositePointerType()
6692 assert(Steps.size() == 1); in FindCompositePointerType()
6696 Steps.back().Quals = Quals; in FindCompositePointerType()
6740 else if (Steps.empty()) in FindCompositePointerType()
6798 if (Steps.size() == 1) { in FindCompositePointerType()
6825 if (Steps.size() == 1 && Steps.front().K == Step::Pointer && in FindCompositePointerType()
6855 Steps[I].Quals.addConst(); in FindCompositePointerType()
[all …]
H A DSemaTemplateInstantiateDecl.cpp298 SmallVector<Expr *, 4> Uniforms, Aligneds, Alignments, Linears, Steps; in instantiateOMPDeclareSimdDeclAttr() local
362 Steps.push_back(Inst.get()); in instantiateOMPDeclareSimdDeclAttr()
368 Uniforms, Aligneds, Alignments, Linears, LinModifiers, Steps, in instantiateOMPDeclareSimdDeclAttr()
H A DSemaOpenMP.cpp6342 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR) { in ActOnOpenMPDeclareSimdDirective() argument
6345 assert(Linears.size() == Steps.size()); in ActOnOpenMPDeclareSimdDirective()
6542 for (Expr *E : Steps) { in ActOnOpenMPDeclareSimdDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h968 SmallVector<Step, 4> Steps; variable
1211 step_iterator step_begin() const { return Steps.begin(); } in step_begin()
1212 step_iterator step_end() const { return Steps.end(); } in step_end()
H A DSema.h10890 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR);
/freebsd-13.1/lib/libc/softfloat/
H A Dsoftfloat-source.txt70 Steps to Creating a `softfloat.o'
281 Steps to Creating a `softfloat.o'
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp706 SmallVectorImpl<unsigned> &LinModifiers, SmallVectorImpl<Expr *> &Steps) { in parseDeclareSimdClauses() argument
768 Steps.append(Linears.size() - Steps.size(), Data.DepModOrTailExpr); in parseDeclareSimdClauses()
801 SmallVector<Expr *, 4> Steps; in ParseOMPDeclareSimdClauses() local
804 Alignments, Linears, LinModifiers, Steps); in ParseOMPDeclareSimdClauses()
812 LinModifiers, Steps, SourceRange(Loc, EndLoc)); in ParseOMPDeclareSimdClauses()
/freebsd-13.1/tools/test/testfloat/
H A Dtestfloat-source.txt81 Steps to Creating the TestFloat Executables
385 Steps to Creating the TestFloat Executables
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp748 unsigned Steps = 0; in shouldTransformMulToShiftsAddsSubs() local
757 if (Steps >= MaxSteps) in shouldTransformMulToShiftsAddsSubs()
761 ++Steps; in shouldTransformMulToShiftsAddsSubs()
776 ++Steps; in shouldTransformMulToShiftsAddsSubs()
786 Steps *= (VT.getSizeInBits() != RegisterSize) * 3; in shouldTransformMulToShiftsAddsSubs()
787 if (Steps > 27) in shouldTransformMulToShiftsAddsSubs()
/freebsd-13.1/contrib/llvm-project/lld/docs/
H A Ddesign.rst115 Linking Steps
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td3610 VariadicExprArgument<"Steps">