Home
last modified time | relevance | path

Searched refs:CallStackDepth (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/clang/lib/AST/Interp/
DInterpState.h44 unsigned getCallStackDepth() override { return CallStackDepth; } in getCallStackDepth()
106 unsigned CallStackDepth; variable
DInterpState.cpp27 CallStackDepth(Parent.getCallStackDepth() + 1) {} in InterpState()
DInterp.cpp35 S.CallStackDepth--; in Ret()
57 S.CallStackDepth--; in RetVoid()
/external/angle/src/tests/compiler_tests/
DExpressionLimit_test.cpp304 TEST_F(ExpressionLimitTest, CallStackDepth) in TEST_F() argument
/external/clang/lib/AST/
DExprConstant.cpp447 unsigned CallStackDepth; member
543 CallStackDepth(0), NextCallIndex(1), in EvalInfo()
561 if (checkingPotentialConstantExpression() && CallStackDepth > 1) in CheckCallLimit()
568 if (CallStackDepth <= getLangOpts().ConstexprCallDepth) in CheckCallLimit()
634 unsigned CallStackNotes = CallStackDepth - 1; in Diag()
968 ++Info.CallStackDepth; in CallStackFrame()
973 --Info.CallStackDepth; in ~CallStackFrame()
989 unsigned ActiveCalls = CallStackDepth - 1; in addCallStack()
/external/llvm-project/clang/lib/AST/
DExprConstant.cpp800 unsigned CallStackDepth; member in __anona656c3110311::EvalInfo
967 CallStackDepth(0), NextCallIndex(1), in EvalInfo()
990 if (checkingPotentialConstantExpression() && CallStackDepth > 1) in CheckCallLimit()
997 if (CallStackDepth <= getLangOpts().ConstexprCallDepth) in CheckCallLimit()
1009 unsigned Depth = CallStackDepth; in getCallFrameAndDepth()
1143 unsigned getCallStackDepth() override { return CallStackDepth; } in getCallStackDepth()
1317 Info.SpeculativeEvaluationDepth = Info.CallStackDepth + 1; in SpeculativeEvaluationRAII()
1437 ++Info.CallStackDepth; in CallStackFrame()
1442 --Info.CallStackDepth; in ~CallStackFrame()
11628 (Info.CallStackDepth == 1 || in VisitBuiltinCallExpr()
[all …]
/external/starlark-go/starlark/
Deval_test.go761 for i := 0; i < thread.CallStackDepth(); i++ {
Deval.go133 func (thread *Thread) CallStackDepth() int { return len(thread.stack) } func