Home | History | Annotate | Download | only in src

Lines Matching refs:ticks

75 // FLAG_type_info_threshold), but has seen a huge number of ticks,
78 // We only have one byte to store the number of ticks.
254 // a certain number of ticks.
259 // modify and reset the ticks until next adjustment.
290 int ticks = shared_code->profiler_ticks();
292 ticks * kOSRCodeSizeAllowancePerTick;
294 if (ticks < 255) shared_code->set_profiler_ticks(ticks + 1);
320 int ticks = shared_code->profiler_ticks();
321 if (ticks >= kProfilerTicksBeforeReenablingOptimization) {
325 shared_code->set_profiler_ticks(ticks + 1);
333 int ticks = shared_code->profiler_ticks();
335 if (ticks >= kProfilerTicksBeforeOptimization) {
340 // ticks, optimize it now.
342 } else if (ticks >= kTicksWhenNotEnoughTypeInfo) {
345 shared_code->set_profiler_ticks(ticks + 1);
359 shared_code->set_profiler_ticks(ticks + 1);