Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DProgressMeter.h28 DenTy Steps = 0; variable
40 ++Steps; in step()
45 inline DenTy getNumSteps() const { return Steps; } in getNumSteps()
49 if (Steps == 0) in getAverage()
51 return AvgTy(Accumulated) / Steps; in getAverage()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp139 unsigned Steps = MaxSteps; in ExecuteWorkList() local
142 if (Steps == 0) { in ExecuteWorkList()
146 --Steps; in ExecuteWorkList()
161 return MaxSteps - Steps; in ExecuteWorkList()
226 unsigned Steps, in ExecuteWorkListWithInitialState() argument
229 bool DidNotFinish = ExecuteWorkList(L, Steps, InitState); in ExecuteWorkListWithInitialState()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DValueLattice.h140 MergeOptions &setMaxWidenSteps(unsigned Steps = 1) {
142 MaxWidenSteps = Steps;
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h189 bool ExecuteWorkList(const LocationContext *L, unsigned Steps = 150000) {
190 return Engine.ExecuteWorkList(L, Steps, nullptr);
197 bool ExecuteWorkListWithInitialState(const LocationContext *L, unsigned Steps, in ExecuteWorkListWithInitialState() argument
200 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst); in ExecuteWorkListWithInitialState()
H A DCoreEngine.h148 bool ExecuteWorkList(const LocationContext *L, unsigned Steps,
153 unsigned Steps,
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp452 VPScalarIVStepsRecipe *Steps = new VPScalarIVStepsRecipe(ID, BaseIV, Step); in optimizeInductions() local
453 HeaderVPBB->insert(Steps, IP); in optimizeInductions()
464 U->setOperand(I, Steps); in optimizeInductions()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaInit.cpp3551 for (const Step &S : llvm::reverse(Steps)) { in isDirectReferenceBinding()
3614 return !Steps.empty() && Steps.back().Kind == SK_ConstructorInitialization; in isConstructorInitialization()
3628 Steps.push_back(S); in AddAddressOverloadResolutionStep()
3642 Steps.push_back(S); in AddDerivedToBaseCastStep()
3650 Steps.push_back(S); in AddReferenceBindingStep()
3657 Steps.push_back(S); in AddFinalCopy()
3664 Steps.push_back(S); in AddExtraneousCopyToTemporary()
3678 Steps.push_back(S); in AddUserConversionStep()
3697 Steps.push_back(S); in AddQualificationConversionStep()
3704 Steps.push_back(S); in AddFunctionReferenceConversionStep()
[all …]
H A DSemaExprCXX.cpp6855 SmallVector<Step, 8> Steps; in FindCompositePointerType() local
6882 if (!Steps.empty()) { in FindCompositePointerType()
6892 } else if (Steps.size() == 1) { in FindCompositePointerType()
6914 assert(Steps.size() == 1); in FindCompositePointerType()
6922 assert(Steps.size() == 1); in FindCompositePointerType()
6926 Steps.back().Quals = Quals; in FindCompositePointerType()
6928 NeedConstBefore = Steps.size() - 1; in FindCompositePointerType()
6941 Steps.emplace_back(Step::Array, CAT1); in FindCompositePointerType()
6949 (Steps.empty() || Steps.back().K != Step::Array))) { in FindCompositePointerType()
6955 Steps.emplace_back(Step::Array); in FindCompositePointerType()
[all …]
H A DSemaTemplateInstantiateDecl.cpp321 SmallVector<Expr *, 4> Uniforms, Aligneds, Alignments, Linears, Steps; in instantiateOMPDeclareSimdDeclAttr() local
385 Steps.push_back(Inst.get()); in instantiateOMPDeclareSimdDeclAttr()
391 Uniforms, Aligneds, Alignments, Linears, LinModifiers, Steps, in instantiateOMPDeclareSimdDeclAttr()
H A DSemaOpenMP.cpp6842 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR) { in ActOnOpenMPDeclareSimdDirective() argument
6845 assert(Linears.size() == Steps.size()); in ActOnOpenMPDeclareSimdDirective()
7042 for (Expr *E : Steps) { in ActOnOpenMPDeclareSimdDirective()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DInitialization.h992 SmallVector<Step, 4> Steps; variable
1239 step_iterator step_begin() const { return Steps.begin(); } in step_begin()
1240 step_iterator step_end() const { return Steps.end(); } in step_end()
H A DSema.h11680 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR);
/openbsd-src/gnu/usr.bin/gcc/gcc/doc/
H A Dinstall-old.texi246 * Steps of Cross:: Using a cross-compiler involves several steps
257 @node Steps of Cross, Configure Cross, , Cross-Compiler
258 @subsection Steps of Cross-Compilation
261 <h2>Steps of Cross-Compilation</h2>
291 @node Configure Cross, Tools and Libraries, Steps of Cross, Cross-Compiler
/openbsd-src/gnu/usr.bin/perl/utils/
H A Dperlbug.PL659 **Steps to Reproduce**
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dqemu-testing.rst113 Steps for running lldb-server in QEMU system emulation environment
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseOpenMP.cpp714 SmallVectorImpl<unsigned> &LinModifiers, SmallVectorImpl<Expr *> &Steps) { in parseDeclareSimdClauses() argument
776 Steps.append(Linears.size() - Steps.size(), Data.DepModOrTailExpr); in parseDeclareSimdClauses()
809 SmallVector<Expr *, 4> Steps; in ParseOMPDeclareSimdClauses() local
812 Alignments, Linears, LinModifiers, Steps); in ParseOMPDeclareSimdClauses()
820 LinModifiers, Steps, SourceRange(Loc, EndLoc)); in ParseOMPDeclareSimdClauses()
/openbsd-src/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp741 unsigned Steps = 0; in shouldTransformMulToShiftsAddsSubs() local
750 if (Steps >= MaxSteps) in shouldTransformMulToShiftsAddsSubs()
754 ++Steps; in shouldTransformMulToShiftsAddsSubs()
769 ++Steps; in shouldTransformMulToShiftsAddsSubs()
779 Steps *= (VT.getSizeInBits() != RegisterSize) * 3; in shouldTransformMulToShiftsAddsSubs()
780 if (Steps > 27) in shouldTransformMulToShiftsAddsSubs()
/openbsd-src/gnu/llvm/llvm/docs/
H A DSupportPolicy.rst195 Steps for removal
H A DHowToAddABuilder.rst52 Steps To Add Builder To LLVM Buildbot
H A DXRayExample.rst336 Next Steps
H A DMergeFunctions.rst370 8. Steps 1-6 describe all the possible cases, if we passed steps 1-6 and didn't
560 Steps below are for the case when types are equal, or case when constants are
H A DWritingAnLLVMBackend.rst72 Basic Steps
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlhacktips.pod1221 Steps through the program a line at a time.
1225 Steps through the program a line at a time, without descending into
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td3763 VariadicExprArgument<"Steps">
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12175 SDValue Steps = DAG.getStepVector(DL, ContainerVT, SeqInfo->second); in LowerBUILD_VECTOR() local
12176 SDValue Seq = DAG.getNode(ISD::ADD, DL, ContainerVT, Start, Steps); in LowerBUILD_VECTOR()