summaryrefslogtreecommitdiffstats
path: root/js/src/devtools/gc-ubench/scheduler.js
blob: 8f4a483b33677636ef5601693f77822d71f72b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// Frame schedulers: executing a frame's worth of mutation, and possibly
// waiting for a later frame. (These schedulers will halt the main thread,
// allowing background threads to continue working.)

var Scheduler = class {
  constructor(perfMonitor) {
    this._perfMonitor = perfMonitor;
  }

  start(loadMgr, timestamp) {
    return loadMgr.start(timestamp);
  }
  tick(loadMgr, timestamp) {}
  wait_for_next_frame(t0, tick_start, tick_end) {}
};

// "Sync to vsync" scheduler: after the mutator is done for a frame, wait until
// the beginning of the next 60fps frame.
var VsyncScheduler = class extends Scheduler {
  tick(loadMgr, timestamp) {
    this._perfMonitor.before_mutator(timestamp);
    gHost.start_turn();
    const completed = loadMgr.tick(timestamp);
    gHost.end_turn();
    this._perfMonitor.after_mutator(timestamp);
    return completed;
  }

  wait_for_next_frame(t0, tick_start, tick_end) {
    // Compute how long until the next 60fps vsync event, and wait that long.
    const elapsed = (tick_end - t0) / 1000;
    const period = 1 / FPS;
    const used = elapsed % period;
    const delay = period - used;
    gHost.suspend(delay);
    this._perfMonitor.after_suspend(delay);
  }
};

// Try to maintain 60fps, but if we overrun a frame, do more processing
// immediately to make the next frame come up as soon as possible.
var OptimizeForFrameRate = class extends Scheduler {
  tick(loadMgr, timestamp) {
    this._perfMonitor.before_mutator(timestamp);
    gHost.start_turn();
    const completed = loadMgr.tick(timestamp);
    gHost.end_turn();
    this._perfMonitor.after_mutator(timestamp);
    return completed;
  }

  wait_for_next_frame(t0, tick_start, tick_end) {
    const next_frame_ms = round_up(tick_start, 1000 / FPS);
    if (tick_end < next_frame_ms) {
      const delay = (next_frame_ms - tick_end) / 1000;
      gHost.suspend(delay);
      this._perfMonitor.after_suspend(delay);
    }
  }
};