Home | History | Annotate | Download | only in src

Lines Matching defs:entry_count

2055   int entry_count = data->deopt_entry_code_entries_[type];
2056 if (max_entry_id < entry_count) return;
2057 entry_count = Max(entry_count, Deoptimizer::kMinNumberOfEntries);
2058 while (max_entry_id >= entry_count) entry_count *= 2;
2059 CHECK(entry_count <= Deoptimizer::kMaxNumberOfEntries);
2063 GenerateDeoptimizationEntries(&masm, entry_count, type);
2079 data->deopt_entry_code_entries_[type] = entry_count;