Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/deoptimizer/
Dtranslated-state.cc1328 std::stack<int> nested_counts; in Init() local
1339 while (values_to_process > 0 || !nested_counts.empty()) { in Init()
1341 if (nested_counts.empty()) { in Init()
1348 for (size_t j = 0; j < nested_counts.size(); j++) { in Init()
1365 nested_counts.push(values_to_process); in Init()
1368 while (values_to_process == 0 && !nested_counts.empty()) { in Init()
1369 values_to_process = nested_counts.top(); in Init()
1370 nested_counts.pop(); in Init()