| 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 "test/cctest/compiler/graph-builder-tester.h" | 5 #include "test/cctest/compiler/graph-builder-tester.h" |
| 6 | 6 |
| 7 #include "src/compiler/linkage.h" | 7 #include "src/compiler/linkage.h" |
| 8 #include "src/compiler/pipeline.h" | 8 #include "src/compiler/pipeline.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 } | 29 } |
| 30 } | 30 } |
| 31 | 31 |
| 32 | 32 |
| 33 byte* MachineCallHelper::Generate() { | 33 byte* MachineCallHelper::Generate() { |
| 34 DCHECK(parameter_count() == 0 || parameters_ != NULL); | 34 DCHECK(parameter_count() == 0 || parameters_ != NULL); |
| 35 if (!Pipeline::SupportedBackend()) return NULL; | 35 if (!Pipeline::SupportedBackend()) return NULL; |
| 36 if (code_.is_null()) { | 36 if (code_.is_null()) { |
| 37 Zone* zone = graph_->zone(); | 37 Zone* zone = graph_->zone(); |
| 38 CompilationInfo info(zone->isolate(), zone); | 38 CompilationInfo info(zone->isolate(), zone); |
| 39 Linkage linkage(&info, | 39 Linkage linkage(zone, |
| 40 Linkage::GetSimplifiedCDescriptor(zone, machine_sig_)); | 40 Linkage::GetSimplifiedCDescriptor(zone, machine_sig_)); |
| 41 Pipeline pipeline(&info); | 41 Pipeline pipeline(&info); |
| 42 code_ = pipeline.GenerateCodeForMachineGraph(&linkage, graph_); | 42 code_ = pipeline.GenerateCodeForMachineGraph(&linkage, graph_); |
| 43 } | 43 } |
| 44 return code_.ToHandleChecked()->entry(); | 44 return code_.ToHandleChecked()->entry(); |
| 45 } | 45 } |
| 46 | 46 |
| 47 | 47 |
| 48 Node* MachineCallHelper::Parameter(size_t index) { | 48 Node* MachineCallHelper::Parameter(size_t index) { |
| 49 DCHECK_NE(NULL, parameters_); | 49 DCHECK_NE(NULL, parameters_); |
| 50 DCHECK(index < parameter_count()); | 50 DCHECK(index < parameter_count()); |
| 51 return parameters_[index]; | 51 return parameters_[index]; |
| 52 } | 52 } |
| 53 | 53 |
| 54 } // namespace compiler | 54 } // namespace compiler |
| 55 } // namespace internal | 55 } // namespace internal |
| 56 } // namespace v8 | 56 } // namespace v8 |
| OLD | NEW |