Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddinterpret.c251 int CtfeStatus::callDepth = 0;
252 int CtfeStatus::stackTraceCallsToSuppress = 0;
253 int CtfeStatus::maxCallDepth = 0;
254 int CtfeStatus::numArrayAllocs = 0;
255 int CtfeStatus::numAssignments = 0;
262 …printf("max call depth = %d\tmax stack = %d\n", CtfeStatus::maxCallDepth, ctfeStack.maxStackUsage(… in printCtfePerformanceStats()
263 …printf("array allocs = %d\tassignments = %d\n\n", CtfeStatus::numArrayAllocs, CtfeStatus::numAssig… in printCtfePerformanceStats()
918 ++CtfeStatus::callDepth; in interpretFunction()
919 if (CtfeStatus::callDepth > CtfeStatus::maxCallDepth) in interpretFunction()
920 CtfeStatus::maxCallDepth = CtfeStatus::callDepth; in interpretFunction()
[all …]
H A Dctfe.h20 struct CtfeStatus struct
H A Dctfeexpr.c230 CtfeStatus::numArrayAllocs++;
1736 ++CtfeStatus::numArrayAllocs; in changeOneElement()