Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/compiler/scheduler.h

Issue 467103003: Allow use of phase-local zone in GenericGraphVisit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/compiler/graph-visualizer.cc ('k') | src/compiler/scheduler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_SCHEDULER_H_ 5 #ifndef V8_COMPILER_SCHEDULER_H_
6 #define V8_COMPILER_SCHEDULER_H_ 6 #define V8_COMPILER_SCHEDULER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "src/v8.h" 10 #include "src/v8.h"
(...skipping 11 matching lines...) Expand all
22 // ordering the basic blocks in the special RPO order. 22 // ordering the basic blocks in the special RPO order.
23 class Scheduler { 23 class Scheduler {
24 public: 24 public:
25 // Create a new schedule and place all computations from the graph in it. 25 // Create a new schedule and place all computations from the graph in it.
26 static Schedule* ComputeSchedule(Graph* graph); 26 static Schedule* ComputeSchedule(Graph* graph);
27 27
28 // Compute the RPO of blocks in an existing schedule. 28 // Compute the RPO of blocks in an existing schedule.
29 static BasicBlockVector* ComputeSpecialRPO(Schedule* schedule); 29 static BasicBlockVector* ComputeSpecialRPO(Schedule* schedule);
30 30
31 private: 31 private:
32 Zone* zone_;
32 Graph* graph_; 33 Graph* graph_;
33 Schedule* schedule_; 34 Schedule* schedule_;
34 NodeVector branches_; 35 NodeVector branches_;
35 NodeVector calls_; 36 NodeVector calls_;
36 NodeVector deopts_; 37 NodeVector deopts_;
37 NodeVector returns_; 38 NodeVector returns_;
38 NodeVector loops_and_merges_; 39 NodeVector loops_and_merges_;
39 BasicBlockVector node_block_placement_; 40 BasicBlockVector node_block_placement_;
40 IntVector unscheduled_uses_; 41 IntVector unscheduled_uses_;
41 NodeVectorVector scheduled_nodes_; 42 NodeVectorVector scheduled_nodes_;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 void PrepareUses(); 76 void PrepareUses();
76 77
77 friend class ScheduleLateNodeVisitor; 78 friend class ScheduleLateNodeVisitor;
78 void ScheduleLate(); 79 void ScheduleLate();
79 }; 80 };
80 } 81 }
81 } 82 }
82 } // namespace v8::internal::compiler 83 } // namespace v8::internal::compiler
83 84
84 #endif // V8_COMPILER_SCHEDULER_H_ 85 #endif // V8_COMPILER_SCHEDULER_H_
OLDNEW
« no previous file with comments | « src/compiler/graph-visualizer.cc ('k') | src/compiler/scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698