Home
last modified time | relevance | path

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

/external/v8/src/
Ddeoptimizer.cc3589 std::stack<int> nested_counts; in Init() local
3600 while (values_to_process > 0 || !nested_counts.empty()) { in Init()
3602 if (nested_counts.empty()) { in Init()
3609 for (size_t j = 0; j < nested_counts.size(); j++) { in Init()
3628 nested_counts.push(values_to_process); in Init()
3631 while (values_to_process == 0 && !nested_counts.empty()) { in Init()
3632 values_to_process = nested_counts.top(); in Init()
3633 nested_counts.pop(); in Init()