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 #ifndef V8_COMPILER_CHANGE_LOWERING_H_ | 5 #ifndef V8_COMPILER_CHANGE_LOWERING_H_ |
6 #define V8_COMPILER_CHANGE_LOWERING_H_ | 6 #define V8_COMPILER_CHANGE_LOWERING_H_ |
7 | 7 |
8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
11 namespace internal { | 11 namespace internal { |
12 namespace compiler { | 12 namespace compiler { |
13 | 13 |
14 // Forward declarations. | 14 // Forward declarations. |
15 class CommonOperatorBuilder; | 15 class CommonOperatorBuilder; |
16 class JSGraph; | 16 class JSGraph; |
17 class Linkage; | 17 class Linkage; |
18 class MachineOperatorBuilder; | 18 class MachineOperatorBuilder; |
| 19 class Operator; |
19 | 20 |
20 class ChangeLowering FINAL : public Reducer { | 21 class ChangeLowering FINAL : public Reducer { |
21 public: | 22 public: |
22 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {} | 23 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {} |
23 ~ChangeLowering() FINAL; | 24 ~ChangeLowering() FINAL; |
24 | 25 |
25 Reduction Reduce(Node* node) FINAL; | 26 Reduction Reduce(Node* node) FINAL; |
26 | 27 |
27 private: | 28 private: |
28 Node* HeapNumberValueIndexConstant(); | 29 Node* HeapNumberValueIndexConstant(); |
(...skipping 18 matching lines...) Expand all Loading... |
47 Reduction ChangeTaggedToUI32(Node* value, Node* control, | 48 Reduction ChangeTaggedToUI32(Node* value, Node* control, |
48 Signedness signedness); | 49 Signedness signedness); |
49 Reduction ChangeUint32ToTagged(Node* value, Node* control); | 50 Reduction ChangeUint32ToTagged(Node* value, Node* control); |
50 | 51 |
51 Graph* graph() const; | 52 Graph* graph() const; |
52 Isolate* isolate() const; | 53 Isolate* isolate() const; |
53 JSGraph* jsgraph() const { return jsgraph_; } | 54 JSGraph* jsgraph() const { return jsgraph_; } |
54 CommonOperatorBuilder* common() const; | 55 CommonOperatorBuilder* common() const; |
55 MachineOperatorBuilder* machine() const; | 56 MachineOperatorBuilder* machine() const; |
56 | 57 |
57 JSGraph* jsgraph_; | 58 JSGraph* const jsgraph_; |
| 59 SetOncePointer<const Operator> allocate_heap_number_operator_; |
58 }; | 60 }; |
59 | 61 |
60 } // namespace compiler | 62 } // namespace compiler |
61 } // namespace internal | 63 } // namespace internal |
62 } // namespace v8 | 64 } // namespace v8 |
63 | 65 |
64 #endif // V8_COMPILER_CHANGE_LOWERING_H_ | 66 #endif // V8_COMPILER_CHANGE_LOWERING_H_ |
OLD | NEW |