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/compiler/int64-lowering.h" | 5 #include "src/compiler/int64-lowering.h" |
6 #include "src/compiler/common-operator.h" | 6 #include "src/compiler/common-operator.h" |
7 #include "src/compiler/diamond.h" | 7 #include "src/compiler/diamond.h" |
8 #include "src/compiler/graph.h" | 8 #include "src/compiler/graph.h" |
9 #include "src/compiler/linkage.h" | 9 #include "src/compiler/linkage.h" |
10 #include "src/compiler/machine-operator.h" | 10 #include "src/compiler/machine-operator.h" |
11 #include "src/compiler/node-matchers.h" | 11 #include "src/compiler/node-matchers.h" |
12 #include "src/compiler/node-properties.h" | 12 #include "src/compiler/node-properties.h" |
13 | 13 |
14 #include "src/compiler/node.h" | 14 #include "src/compiler/node.h" |
15 #include "src/wasm/wasm-module.h" | 15 #include "src/wasm/wasm-module.h" |
16 #include "src/zone.h" | 16 #include "src/zone/zone.h" |
17 | 17 |
18 namespace v8 { | 18 namespace v8 { |
19 namespace internal { | 19 namespace internal { |
20 namespace compiler { | 20 namespace compiler { |
21 | 21 |
22 Int64Lowering::Int64Lowering(Graph* graph, MachineOperatorBuilder* machine, | 22 Int64Lowering::Int64Lowering(Graph* graph, MachineOperatorBuilder* machine, |
23 CommonOperatorBuilder* common, Zone* zone, | 23 CommonOperatorBuilder* common, Zone* zone, |
24 Signature<MachineRepresentation>* signature) | 24 Signature<MachineRepresentation>* signature) |
25 : zone_(zone), | 25 : zone_(zone), |
26 graph_(graph), | 26 graph_(graph), |
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 common()->Phi(MachineRepresentation::kWord32, value_count), | 874 common()->Phi(MachineRepresentation::kWord32, value_count), |
875 value_count + 1, inputs_low, false), | 875 value_count + 1, inputs_low, false), |
876 graph()->NewNode( | 876 graph()->NewNode( |
877 common()->Phi(MachineRepresentation::kWord32, value_count), | 877 common()->Phi(MachineRepresentation::kWord32, value_count), |
878 value_count + 1, inputs_high, false)); | 878 value_count + 1, inputs_high, false)); |
879 } | 879 } |
880 } | 880 } |
881 } // namespace compiler | 881 } // namespace compiler |
882 } // namespace internal | 882 } // namespace internal |
883 } // namespace v8 | 883 } // namespace v8 |
OLD | NEW |