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

Side by Side Diff: src/compiler/generic-graph.h

Issue 652263002: Make visualizer robust to graphs with NULL inputs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Use a queue. Created 6 years, 1 month 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
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_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 {
(...skipping 16 matching lines...) Expand all
27 Zone* zone_; 27 Zone* zone_;
28 NodeId next_node_id_; 28 NodeId next_node_id_;
29 }; 29 };
30 30
31 template <class V> 31 template <class V>
32 class GenericGraph : public GenericGraphBase { 32 class GenericGraph : public GenericGraphBase {
33 public: 33 public:
34 explicit GenericGraph(Zone* zone) 34 explicit GenericGraph(Zone* zone)
35 : GenericGraphBase(zone), start_(NULL), end_(NULL) {} 35 : GenericGraphBase(zone), start_(NULL), end_(NULL) {}
36 36
37 V* start() { return start_; } 37 V* start() const { return start_; }
38 V* end() { return end_; } 38 V* end() const { return end_; }
39 39
40 void SetStart(V* start) { start_ = start; } 40 void SetStart(V* start) { start_ = start; }
41 void SetEnd(V* end) { end_ = end; } 41 void SetEnd(V* end) { end_ = end; }
42 42
43 private: 43 private:
44 V* start_; 44 V* start_;
45 V* end_; 45 V* end_;
46 46
47 DISALLOW_COPY_AND_ASSIGN(GenericGraph); 47 DISALLOW_COPY_AND_ASSIGN(GenericGraph);
48 }; 48 };
49 } 49 }
50 } 50 }
51 } // namespace v8::internal::compiler 51 } // namespace v8::internal::compiler
52 52
53 #endif // V8_COMPILER_GENERIC_GRAPH_H_ 53 #endif // V8_COMPILER_GENERIC_GRAPH_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/graph-visualizer.cc » ('j') | test/cctest/compiler/test-graph-visualizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698