OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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_EFFECT_CONTROL_LINEARIZER_H_ | 5 #ifndef V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
6 #define V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 6 #define V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
7 | 7 |
8 #include "src/compiler/common-operator.h" | 8 #include "src/compiler/common-operator.h" |
9 #include "src/compiler/node.h" | 9 #include "src/compiler/node.h" |
10 #include "src/compiler/simplified-operator.h" | 10 #include "src/compiler/simplified-operator.h" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ValueEffectControl LowerChangeTaggedSignedToInt32(Node* node, Node* effect, | 57 ValueEffectControl LowerChangeTaggedSignedToInt32(Node* node, Node* effect, |
58 Node* control); | 58 Node* control); |
59 ValueEffectControl LowerChangeTaggedToBit(Node* node, Node* effect, | 59 ValueEffectControl LowerChangeTaggedToBit(Node* node, Node* effect, |
60 Node* control); | 60 Node* control); |
61 ValueEffectControl LowerChangeTaggedToInt32(Node* node, Node* effect, | 61 ValueEffectControl LowerChangeTaggedToInt32(Node* node, Node* effect, |
62 Node* control); | 62 Node* control); |
63 ValueEffectControl LowerChangeTaggedToUint32(Node* node, Node* effect, | 63 ValueEffectControl LowerChangeTaggedToUint32(Node* node, Node* effect, |
64 Node* control); | 64 Node* control); |
65 ValueEffectControl LowerCheckBounds(Node* node, Node* frame_state, | 65 ValueEffectControl LowerCheckBounds(Node* node, Node* frame_state, |
66 Node* effect, Node* control); | 66 Node* effect, Node* control); |
| 67 ValueEffectControl LowerCheckTaggedPointer(Node* node, Node* frame_state, |
| 68 Node* effect, Node* control); |
| 69 ValueEffectControl LowerCheckTaggedSigned(Node* node, Node* frame_state, |
| 70 Node* effect, Node* control); |
67 ValueEffectControl LowerCheckedUint32ToInt32(Node* node, Node* frame_state, | 71 ValueEffectControl LowerCheckedUint32ToInt32(Node* node, Node* frame_state, |
68 Node* effect, Node* control); | 72 Node* effect, Node* control); |
69 ValueEffectControl LowerCheckedFloat64ToInt32(Node* node, Node* frame_state, | 73 ValueEffectControl LowerCheckedFloat64ToInt32(Node* node, Node* frame_state, |
70 Node* effect, Node* control); | 74 Node* effect, Node* control); |
71 ValueEffectControl LowerCheckedTaggedToInt32(Node* node, Node* frame_state, | 75 ValueEffectControl LowerCheckedTaggedToInt32(Node* node, Node* frame_state, |
72 Node* effect, Node* control); | 76 Node* effect, Node* control); |
73 ValueEffectControl LowerCheckedTaggedToFloat64(Node* node, Node* frame_state, | 77 ValueEffectControl LowerCheckedTaggedToFloat64(Node* node, Node* frame_state, |
74 Node* effect, Node* control); | 78 Node* effect, Node* control); |
75 ValueEffectControl LowerChangeTaggedToFloat64(Node* node, Node* effect, | 79 ValueEffectControl LowerChangeTaggedToFloat64(Node* node, Node* effect, |
76 Node* control); | 80 Node* control); |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 Zone* temp_zone() const { return temp_zone_; } | 135 Zone* temp_zone() const { return temp_zone_; } |
132 CommonOperatorBuilder* common() const; | 136 CommonOperatorBuilder* common() const; |
133 SimplifiedOperatorBuilder* simplified() const; | 137 SimplifiedOperatorBuilder* simplified() const; |
134 MachineOperatorBuilder* machine() const; | 138 MachineOperatorBuilder* machine() const; |
135 | 139 |
136 Operator const* ToNumberOperator(); | 140 Operator const* ToNumberOperator(); |
137 | 141 |
138 JSGraph* js_graph_; | 142 JSGraph* js_graph_; |
139 Schedule* schedule_; | 143 Schedule* schedule_; |
140 Zone* temp_zone_; | 144 Zone* temp_zone_; |
| 145 RegionObservability region_observability_ = RegionObservability::kObservable; |
141 | 146 |
142 SetOncePointer<Operator const> to_number_operator_; | 147 SetOncePointer<Operator const> to_number_operator_; |
143 }; | 148 }; |
144 | 149 |
145 } // namespace compiler | 150 } // namespace compiler |
146 } // namespace internal | 151 } // namespace internal |
147 } // namespace v8 | 152 } // namespace v8 |
148 | 153 |
149 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 154 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |