| 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 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/compiler/common-operator.h" | 7 #include "src/compiler/common-operator.h" |
| 8 #include "src/compiler/generic-node-inl.h" |
| 8 #include "src/compiler/graph.h" | 9 #include "src/compiler/graph.h" |
| 9 #include "src/compiler/machine-operator.h" | 10 #include "src/compiler/machine-operator.h" |
| 10 #include "src/compiler/node.h" | 11 #include "src/compiler/node.h" |
| 11 #include "src/compiler/operator.h" | 12 #include "src/compiler/operator.h" |
| 12 #include "src/compiler/schedule.h" | 13 #include "src/compiler/schedule.h" |
| 13 #include "test/cctest/cctest.h" | 14 #include "test/cctest/cctest.h" |
| 14 | 15 |
| 15 using namespace v8::internal; | 16 using namespace v8::internal; |
| 16 using namespace v8::internal::compiler; | 17 using namespace v8::internal::compiler; |
| 17 | 18 |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 Node* start = graph.NewNode(common.Start(0)); | 168 Node* start = graph.NewNode(common.Start(0)); |
| 168 graph.SetStart(start); | 169 graph.SetStart(start); |
| 169 Node* param0 = graph.NewNode(common.Parameter(0), graph.start()); | 170 Node* param0 = graph.NewNode(common.Parameter(0), graph.start()); |
| 170 Node* param1 = graph.NewNode(common.Parameter(1), graph.start()); | 171 Node* param1 = graph.NewNode(common.Parameter(1), graph.start()); |
| 171 | 172 |
| 172 Node* mul = graph.NewNode(machine.Int32Mul(), param0, param1); | 173 Node* mul = graph.NewNode(machine.Int32Mul(), param0, param1); |
| 173 Node* ret = graph.NewNode(common.Return(), mul, start); | 174 Node* ret = graph.NewNode(common.Return(), mul, start); |
| 174 | 175 |
| 175 USE(ret); | 176 USE(ret); |
| 176 } | 177 } |
| OLD | NEW |