Lines Matching full:schedule
11 #include "src/compiler/schedule.h"
27 // Computes a schedule from a graph, placing nodes into basic blocks and
35 // The complete scheduling algorithm. Creates a new schedule and places all
37 static Schedule* ComputeSchedule(Zone* temp_zone, Graph* graph, Flags flags);
39 // Compute the RPO of blocks in an existing schedule.
40 static BasicBlockVector* ComputeSpecialRPO(Zone* zone, Schedule* schedule);
71 Schedule* schedule_;
82 Scheduler(Zone* zone, Graph* graph, Schedule* schedule, Flags flags,
112 // Phase 4: Schedule nodes early.
116 // Phase 5: Schedule nodes late.
120 // Phase 6: Seal the final schedule.