Home
last modified time | relevance | path

Searched refs:StackDepth (Results 1 – 13 of 13) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp360 bool &IsRecursive, unsigned &StackDepth) { in examineStackFrames() argument
362 StackDepth = 0; in examineStackFrames()
372 ++StackDepth; in examineStackFrames()
381 ++StackDepth; in examineStackFrames()
850 unsigned StackDepth = 0; in shouldInlineCall() local
851 examineStackFrames(D, Pred->getLocationContext(), IsRecursive, StackDepth); in shouldInlineCall()
852 if ((StackDepth >= Opts.InlineMaxStackDepth) && in shouldInlineCall()
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp388 bool &IsRecursive, unsigned &StackDepth) { in examineStackFrames() argument
390 StackDepth = 0; in examineStackFrames()
400 ++StackDepth; in examineStackFrames()
408 ++StackDepth; in examineStackFrames()
998 unsigned StackDepth = 0; in shouldInlineCall() local
999 examineStackFrames(D, Pred->getLocationContext(), IsRecursive, StackDepth); in shouldInlineCall()
1000 if ((StackDepth >= Opts.InlineMaxStackDepth) && in shouldInlineCall()
/external/mesa3d/src/mesa/program/
Dprog_execute.h74 GLuint StackDepth; /**< Index/ptr to top of CallStack[] */ member
Dprog_execute.c474 if (machine->StackDepth >= MAX_PROGRAM_CALL_DEPTH) { in _mesa_execute_program()
477 machine->CallStack[machine->StackDepth++] = pc + 1; /* next inst */ in _mesa_execute_program()
942 if (machine->StackDepth == 0) { in _mesa_execute_program()
946 pc = machine->CallStack[--machine->StackDepth] - 1; in _mesa_execute_program()
/external/llvm-project/llvm/include/llvm/Transforms/
DInstrumentation.h172 bool StackDepth = false; member
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/
DInstrumentation.h179 bool StackDepth = false; member
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp174 Options.StackDepth |= ClStackDepth; in OverrideFromCL()
176 !Options.Inline8bitCounters && !Options.StackDepth) in OverrideFromCL()
440 if (Options.StackDepth && !SanCovLowestStack->isDeclaration()) in instrumentModule()
629 if (Options.StackDepth) in instrumentFunction()
889 if (Options.StackDepth && IsEntryBB && !IsLeafFunc) { in InjectCoverageAtBlock()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp177 Options.StackDepth |= ClStackDepth; in OverrideFromCL()
179 !Options.Inline8bitCounters && !Options.StackDepth && in OverrideFromCL()
470 if (Options.StackDepth && !SanCovLowestStack->isDeclaration()) in instrumentModule()
657 if (Options.StackDepth) in instrumentFunction()
930 if (Options.StackDepth && IsEntryBB && !IsLeafFunc) { in InjectCoverageAtBlock()
/external/mesa3d/src/mesa/swrast/
Ds_fragprog.c192 machine->StackDepth = 0; in init_machine()
/external/mesa3d/src/mesa/tnl/
Dt_vb_program.c239 machine->StackDepth = 0; in init_machine()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h581 bool &IsRecursive, unsigned &StackDepth);
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h774 bool &IsRecursive, unsigned &StackDepth);
/external/llvm-project/clang/lib/CodeGen/
DBackendUtil.cpp233 Opts.StackDepth = CGOpts.SanitizeCoverageStackDepth; in getSancovOptsFromCGOpts()