OLD | NEW |
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_GENERIC_GRAPH_H_ | 5 #ifndef V8_COMPILER_GENERIC_GRAPH_H_ |
6 #define V8_COMPILER_GENERIC_GRAPH_H_ | 6 #define V8_COMPILER_GENERIC_GRAPH_H_ |
7 | 7 |
8 #include "src/compiler/generic-node.h" | 8 #include "src/compiler/generic-node.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
11 namespace internal { | 11 namespace internal { |
12 | 12 |
13 class Zone; | 13 class Zone; |
14 | 14 |
15 namespace compiler { | 15 namespace compiler { |
16 | 16 |
17 class GenericGraphBase : public ZoneObject { | 17 class GenericGraphBase : public ZoneObject { |
18 public: | 18 public: |
19 explicit GenericGraphBase(Zone* zone) : zone_(zone), next_node_id_(0) {} | 19 explicit GenericGraphBase(Zone* zone) : zone_(zone), next_node_id_(0) {} |
20 | 20 |
21 Zone* zone() const { return zone_; } | 21 Zone* zone() const { return zone_; } |
22 | 22 |
23 NodeId NextNodeID() { return next_node_id_++; } | 23 NodeId NextNodeID() { return next_node_id_++; } |
24 NodeId NodeCount() const { return next_node_id_; } | 24 NodeId NodeCount() const { return next_node_id_; } |
25 void SetNextNodeId(NodeId next) { next_node_id_ = next; } | |
26 | 25 |
27 private: | 26 private: |
28 Zone* zone_; | 27 Zone* zone_; |
29 NodeId next_node_id_; | 28 NodeId next_node_id_; |
30 }; | 29 }; |
31 | 30 |
32 template <class V> | 31 template <class V> |
33 class GenericGraph : public GenericGraphBase { | 32 class GenericGraph : public GenericGraphBase { |
34 public: | 33 public: |
35 explicit GenericGraph(Zone* zone) | 34 explicit GenericGraph(Zone* zone) |
36 : GenericGraphBase(zone), start_(NULL), end_(NULL) {} | 35 : GenericGraphBase(zone), start_(NULL), end_(NULL) {} |
37 | 36 |
38 V* start() { return start_; } | 37 V* start() { return start_; } |
39 V* end() { return end_; } | 38 V* end() { return end_; } |
40 | 39 |
41 void SetStart(V* start) { start_ = start; } | 40 void SetStart(V* start) { start_ = start; } |
42 void SetEnd(V* end) { end_ = end; } | 41 void SetEnd(V* end) { end_ = end; } |
43 | 42 |
44 private: | 43 private: |
45 V* start_; | 44 V* start_; |
46 V* end_; | 45 V* end_; |
47 | 46 |
48 DISALLOW_COPY_AND_ASSIGN(GenericGraph); | 47 DISALLOW_COPY_AND_ASSIGN(GenericGraph); |
49 }; | 48 }; |
50 } | 49 } |
51 } | 50 } |
52 } // namespace v8::internal::compiler | 51 } // namespace v8::internal::compiler |
53 | 52 |
54 #endif // V8_COMPILER_GENERIC_GRAPH_H_ | 53 #endif // V8_COMPILER_GENERIC_GRAPH_H_ |
OLD | NEW |