| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 // TODO(jochen): Remove this after the setting is turned on globally. | 5 // TODO(jochen): Remove this after the setting is turned on globally. |
| 6 #define V8_IMMINENT_DEPRECATION_WARNINGS | 6 #define V8_IMMINENT_DEPRECATION_WARNINGS |
| 7 | 7 |
| 8 #include "src/v8.h" | |
| 9 #include "test/cctest/cctest.h" | |
| 10 | |
| 11 #include "src/compiler/common-operator.h" | 8 #include "src/compiler/common-operator.h" |
| 12 #include "src/compiler/graph.h" | 9 #include "src/compiler/graph.h" |
| 13 #include "src/compiler/graph-visualizer.h" | 10 #include "src/compiler/graph-visualizer.h" |
| 14 #include "src/compiler/js-operator.h" | 11 #include "src/compiler/js-operator.h" |
| 15 #include "src/compiler/machine-operator.h" | 12 #include "src/compiler/machine-operator.h" |
| 16 #include "src/compiler/node.h" | 13 #include "src/compiler/node.h" |
| 17 #include "src/compiler/operator.h" | 14 #include "src/compiler/operator.h" |
| 18 #include "src/compiler/schedule.h" | 15 #include "src/compiler/schedule.h" |
| 19 #include "src/compiler/scheduler.h" | 16 #include "src/compiler/scheduler.h" |
| 20 #include "src/compiler/source-position.h" | 17 #include "src/compiler/source-position.h" |
| 21 #include "src/compiler/verifier.h" | 18 #include "src/compiler/verifier.h" |
| 19 #include "test/cctest/cctest.h" |
| 22 | 20 |
| 23 using namespace v8::internal; | 21 using namespace v8::internal; |
| 24 using namespace v8::internal::compiler; | 22 using namespace v8::internal::compiler; |
| 25 | 23 |
| 26 static Operator dummy_operator1(IrOpcode::kParameter, Operator::kNoWrite, | 24 static Operator dummy_operator1(IrOpcode::kParameter, Operator::kNoWrite, |
| 27 "dummy", 1, 0, 0, 1, 0, 0); | 25 "dummy", 1, 0, 0, 1, 0, 0); |
| 28 static Operator dummy_operator6(IrOpcode::kParameter, Operator::kNoWrite, | 26 static Operator dummy_operator6(IrOpcode::kParameter, Operator::kNoWrite, |
| 29 "dummy", 6, 0, 0, 1, 0, 0); | 27 "dummy", 6, 0, 0, 1, 0, 0); |
| 30 | 28 |
| 31 | 29 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 Node* n11 = graph.NewNode(&dummy_operator1, n9); | 121 Node* n11 = graph.NewNode(&dummy_operator1, n9); |
| 124 Node* end_dependencies[6] = {n4, n8, n10, n11, n6, n7}; | 122 Node* end_dependencies[6] = {n4, n8, n10, n11, n6, n7}; |
| 125 Node* end = graph.NewNode(&dummy_operator6, 6, end_dependencies); | 123 Node* end = graph.NewNode(&dummy_operator6, 6, end_dependencies); |
| 126 graph.SetEnd(end); | 124 graph.SetEnd(end); |
| 127 | 125 |
| 128 OFStream os(stdout); | 126 OFStream os(stdout); |
| 129 os << AsDOT(graph); | 127 os << AsDOT(graph); |
| 130 SourcePositionTable table(&graph); | 128 SourcePositionTable table(&graph); |
| 131 os << AsJSON(graph, &table); | 129 os << AsJSON(graph, &table); |
| 132 } | 130 } |
| OLD | NEW |