Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DLogger.cpp52 unsigned Blocks = 0, Steps = 0; in endAnalysis() local
55 Steps += E.second; in endAnalysis()
58 << Steps << " total steps ===\n"; in endAnalysis()
/freebsd/contrib/libcbor/.github/ISSUE_TEMPLATE/
H A Dbug_report.md14 Steps to reproduce the behavior. If possible, please attach a runnable code snippet.
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueLattice.h138 MergeOptions &setMaxWidenSteps(unsigned Steps = 1) {
140 MaxWidenSteps = Steps;
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp3880 for (const Step &S : llvm::reverse(Steps)) { in isDirectReferenceBinding()
3944 return !Steps.empty() && Steps.back().Kind == SK_ConstructorInitialization; in isConstructorInitialization()
3958 Steps.push_back(S); in AddAddressOverloadResolutionStep()
3972 Steps.push_back(S); in AddDerivedToBaseCastStep()
3980 Steps.push_back(S); in AddReferenceBindingStep()
3987 Steps.push_back(S); in AddFinalCopy()
3994 Steps.push_back(S); in AddExtraneousCopyToTemporary()
4008 Steps.push_back(S); in AddUserConversionStep()
4027 Steps.push_back(S); in AddQualificationConversionStep()
4034 Steps.push_back(S); in AddFunctionReferenceConversionStep()
[all …]
H A DSemaExprCXX.cpp6205 SmallVector<Step, 8> Steps; in FindCompositePointerType() local
6232 if (!Steps.empty()) { in FindCompositePointerType()
6242 } else if (Steps.size() == 1) { in FindCompositePointerType()
6264 assert(Steps.size() == 1); in FindCompositePointerType()
6272 assert(Steps.size() == 1); in FindCompositePointerType()
6281 Steps.back().Quals = Quals; in FindCompositePointerType()
6283 NeedConstBefore = Steps.size() - 1; in FindCompositePointerType()
6296 Steps.emplace_back(Step::Array, CAT1); in FindCompositePointerType()
6304 (Steps.empty() || Steps.back().K != Step::Array))) { in FindCompositePointerType()
6310 Steps.emplace_back(Step::Array); in FindCompositePointerType()
[all …]
H A DSemaTemplateInstantiateDecl.cpp341 SmallVector<Expr *, 4> Uniforms, Aligneds, Alignments, Linears, Steps; in instantiateOMPDeclareSimdDeclAttr() local
405 Steps.push_back(Inst.get()); in instantiateOMPDeclareSimdDeclAttr()
411 Uniforms, Aligneds, Alignments, Linears, LinModifiers, Steps, in instantiateOMPDeclareSimdDeclAttr()
H A DSemaOpenMP.cpp6701 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR) { in ActOnOpenMPDeclareSimdDirective() argument
6704 assert(Linears.size() == Steps.size()); in ActOnOpenMPDeclareSimdDirective()
6903 for (Expr *E : Steps) { in ActOnOpenMPDeclareSimdDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h993 SmallVector<Step, 4> Steps; variable
1243 step_iterator step_begin() const { return Steps.begin(); } in step_begin()
1244 step_iterator step_end() const { return Steps.end(); } in step_end()
H A DSemaOpenMP.h816 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp671 VPScalarIVStepsRecipe *Steps = createScalarIVSteps( in legalizeAndOptimizeInductions() local
675 VPValue *PtrAdd = Builder.createPtrAdd(PtrIV->getStartValue(), Steps, in legalizeAndOptimizeInductions()
691 VPScalarIVStepsRecipe *Steps = createScalarIVSteps( in legalizeAndOptimizeInductions() local
699 WideIV->replaceAllUsesWith(Steps); in legalizeAndOptimizeInductions()
701 WideIV->replaceUsesWithIf(Steps, [WideIV](VPUser &U, unsigned) { in legalizeAndOptimizeInductions()
1177 if (auto *Steps = dyn_cast<VPScalarIVStepsRecipe>(Def)) { in simplifyRecipe() local
1178 if (Steps->isPart0() && vputils::onlyFirstLaneUsed(Steps)) { in simplifyRecipe()
1179 Steps->replaceAllUsesWith(Steps->getOperand(0)); in simplifyRecipe()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h189 bool ExecuteWorkList(const LocationContext *L, unsigned Steps = 150000) {
192 return Engine.ExecuteWorkList(L, Steps, nullptr);
H A DCoreEngine.h151 bool ExecuteWorkList(const LocationContext *L, unsigned Steps,
/freebsd/lib/libc/softfloat/
H A Dsoftfloat-source.txt69 Steps to Creating a `softfloat.o'
280 Steps to Creating a `softfloat.o'
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp786 unsigned Steps = 0; in shouldTransformMulToShiftsAddsSubs() local
795 if (Steps >= MaxSteps) in shouldTransformMulToShiftsAddsSubs()
799 ++Steps; in shouldTransformMulToShiftsAddsSubs()
814 ++Steps; in shouldTransformMulToShiftsAddsSubs()
824 Steps *= (VT.getSizeInBits() != RegisterSize) * 3; in shouldTransformMulToShiftsAddsSubs()
825 if (Steps > 27) in shouldTransformMulToShiftsAddsSubs()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp662 SmallVectorImpl<unsigned> &LinModifiers, SmallVectorImpl<Expr *> &Steps) { in parseDeclareSimdClauses() argument
726 Steps.append(Linears.size() - Steps.size(), Data.DepModOrTailExpr); in parseDeclareSimdClauses()
758 SmallVector<Expr *, 4> Steps; in ParseOMPDeclareSimdClauses() local
761 Alignments, Linears, LinModifiers, Steps); in ParseOMPDeclareSimdClauses()
769 LinModifiers, Steps, SourceRange(Loc, EndLoc)); in ParseOMPDeclareSimdClauses()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterpBuiltin.cpp226 uint64_t Steps = 0; in interp__builtin_strcmp() local
227 for (;; ++IndexA, ++IndexB, ++Steps) { in interp__builtin_strcmp()
229 if (Steps >= Limit) in interp__builtin_strcmp()
/freebsd/crypto/openssl/
H A DINSTALL.md27 - [Installation Steps in Detail](#installation-steps-in-detail)
1372 Installation Steps in Detail
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td4602 VariadicExprArgument<"Steps">
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp14794 SDValue Steps = DAG.getStepVector(DL, ContainerVT, SeqInfo->second); in LowerFixedLengthBuildVectorToSVE() local
14795 SDValue Seq = DAG.getNode(ISD::ADD, DL, ContainerVT, Start, Steps); in LowerFixedLengthBuildVectorToSVE()