Home
last modified time | relevance | path

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

/external/v8/src/
Ddeoptimizer.cc3254 std::stack<int> nested_counts; in Init() local
3265 while (values_to_process > 0 || !nested_counts.empty()) { in Init()
3267 if (nested_counts.empty()) { in Init()
3274 for (size_t j = 0; j < nested_counts.size(); j++) { in Init()
3291 nested_counts.push(values_to_process); in Init()
3294 while (values_to_process == 0 && !nested_counts.empty()) { in Init()
3295 values_to_process = nested_counts.top(); in Init()
3296 nested_counts.pop(); in Init()