Home | History | Annotate | Download | only in src

Lines Matching refs:entry_count

2242   int entry_count = data->deopt_entry_code_entries_[type];
2243 if (max_entry_id < entry_count) return;
2244 entry_count = Max(entry_count, Deoptimizer::kMinNumberOfEntries);
2245 while (max_entry_id >= entry_count) entry_count *= 2;
2246 CHECK(entry_count <= Deoptimizer::kMaxNumberOfEntries);
2250 GenerateDeoptimizationEntries(&masm, entry_count, type);
2266 data->deopt_entry_code_entries_[type] = entry_count;