Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dctfe.h27 static int maxCallDepth; // highest number of recursive calls member
H A Ddinterpret.c253 int CtfeStatus::maxCallDepth = 0;
262 …printf("max call depth = %d\tmax stack = %d\n", CtfeStatus::maxCallDepth, ctfeStack.maxStackUsage(… in printCtfePerformanceStats()
919 if (CtfeStatus::callDepth > CtfeStatus::maxCallDepth) in interpretFunction()
920 CtfeStatus::maxCallDepth = CtfeStatus::callDepth; in interpretFunction()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddinterpret.d196 …printf("max call depth = %d\tmax stack = %d\n", ctfeGlobals.maxCallDepth, ctfeGlobals.stack.maxSta… in printCtfePerformanceStats()
227 int maxCallDepth = 0; // highest number of recursive calls member
630 if (ctfeGlobals.callDepth > ctfeGlobals.maxCallDepth) in interpretFunction()
631 ctfeGlobals.maxCallDepth = ctfeGlobals.callDepth; in interpretFunction()