| 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 #include "src/code-factory.h" | 5 #include "src/code-factory.h" |
| 6 #include "src/compiler/pipeline.h" | 6 #include "src/compiler/pipeline.h" |
| 7 #include "src/compiler/raw-machine-assembler.h" |
| 7 #include "src/compiler/scheduler.h" | 8 #include "src/compiler/scheduler.h" |
| 8 #include "test/unittests/compiler/raw-machine-assembler.h" | |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| 11 namespace internal { | 11 namespace internal { |
| 12 namespace compiler { | 12 namespace compiler { |
| 13 | 13 |
| 14 RawMachineAssembler::RawMachineAssembler(Isolate* isolate, Graph* graph, | 14 RawMachineAssembler::RawMachineAssembler(Isolate* isolate, Graph* graph, |
| 15 const MachineSignature* machine_sig, | 15 const MachineSignature* machine_sig, |
| 16 MachineType word, | 16 MachineType word, |
| 17 MachineOperatorBuilder::Flags flags) | 17 MachineOperatorBuilder::Flags flags) |
| 18 : GraphBuilder(isolate, graph), | 18 : GraphBuilder(isolate, graph), |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 : CurrentBlock(); | 251 : CurrentBlock(); |
| 252 if (op->opcode() != IrOpcode::kReturn) { | 252 if (op->opcode() != IrOpcode::kReturn) { |
| 253 schedule()->AddNode(block, node); | 253 schedule()->AddNode(block, node); |
| 254 } | 254 } |
| 255 return node; | 255 return node; |
| 256 } | 256 } |
| 257 | 257 |
| 258 } // namespace compiler | 258 } // namespace compiler |
| 259 } // namespace internal | 259 } // namespace internal |
| 260 } // namespace v8 | 260 } // namespace v8 |
| OLD | NEW |