Home
last modified time | relevance | path

Searched refs:callDepth (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dctfe.h22 static int callDepth; // current number of recursive calls member
H A Ddinterpret.c251 int CtfeStatus::callDepth = 0;
918 ++CtfeStatus::callDepth; in interpretFunction()
919 if (CtfeStatus::callDepth > CtfeStatus::maxCallDepth) in interpretFunction()
920 CtfeStatus::maxCallDepth = CtfeStatus::callDepth; in interpretFunction()
925 if (CtfeStatus::callDepth > CTFE_RECURSION_LIMIT) in interpretFunction()
966 --CtfeStatus::callDepth; in interpretFunction()
4579 if (CtfeStatus::callDepth < 6 || global.params.verbose) in showCtfeBackTrace()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddinterpret.d222 int callDepth = 0; // current number of recursive calls member
629 ++ctfeGlobals.callDepth; in interpretFunction()
630 if (ctfeGlobals.callDepth > ctfeGlobals.maxCallDepth) in interpretFunction()
631 ctfeGlobals.maxCallDepth = ctfeGlobals.callDepth; in interpretFunction()
636 if (ctfeGlobals.callDepth > CTFE_RECURSION_LIMIT) in interpretFunction()
712 --ctfeGlobals.callDepth; in interpretFunction()
4692 if (ctfeGlobals.callDepth < 6 || global.params.verbose) in showCtfeBackTrace()