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 { |
11 namespace internal { | 11 namespace internal { |
12 namespace compiler { | 12 namespace compiler { |
13 | 13 |
14 MachineCallHelper::MachineCallHelper(Isolate* isolate, | 14 MachineCallHelper::MachineCallHelper(Isolate* isolate, |
15 MachineSignature* machine_sig) | 15 MachineSignature* machine_sig) |
16 : CallHelper(isolate, machine_sig), | 16 : CallHelper(isolate, machine_sig), |
17 parameters_(NULL), | 17 parameters_(NULL), |
18 isolate_(isolate), | 18 isolate_(isolate), |
19 graph_(NULL) {} | 19 graph_(NULL) {} |
20 | 20 |
21 | 21 |
22 void MachineCallHelper::InitParameters(GraphBuilder* builder, | 22 void MachineCallHelper::InitParameters(GraphBuilder* builder, |
23 CommonOperatorBuilder* common) { | 23 CommonOperatorBuilder* common) { |
24 DCHECK(!parameters_); | 24 DCHECK_EQ(NULL, parameters_); |
25 graph_ = builder->graph(); | 25 graph_ = builder->graph(); |
26 int param_count = static_cast<int>(parameter_count()); | 26 int param_count = static_cast<int>(parameter_count()); |
27 if (param_count == 0) return; | 27 if (param_count == 0) return; |
28 parameters_ = graph_->zone()->NewArray<Node*>(param_count); | 28 parameters_ = graph_->zone()->NewArray<Node*>(param_count); |
29 for (int i = 0; i < param_count; ++i) { | 29 for (int i = 0; i < param_count; ++i) { |
30 parameters_[i] = builder->NewNode(common->Parameter(i), graph_->start()); | 30 parameters_[i] = builder->NewNode(common->Parameter(i), graph_->start()); |
31 } | 31 } |
32 } | 32 } |
33 | 33 |
34 | 34 |
35 byte* MachineCallHelper::Generate() { | 35 byte* MachineCallHelper::Generate() { |
36 DCHECK(parameter_count() == 0 || parameters_ != NULL); | 36 DCHECK(parameter_count() == 0 || parameters_ != NULL); |
37 if (!Pipeline::SupportedBackend()) return NULL; | 37 if (!Pipeline::SupportedBackend()) return NULL; |
38 if (code_.is_null()) { | 38 if (code_.is_null()) { |
39 Zone* zone = graph_->zone(); | 39 Zone* zone = graph_->zone(); |
40 CallDescriptor* desc = | 40 CallDescriptor* desc = |
41 Linkage::GetSimplifiedCDescriptor(zone, machine_sig_); | 41 Linkage::GetSimplifiedCDescriptor(zone, machine_sig_); |
42 code_ = Pipeline::GenerateCodeForTesting(isolate_, desc, graph_); | 42 code_ = Pipeline::GenerateCodeForTesting(isolate_, desc, 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(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 |