| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state, | 131 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state, |
| 132 Node* effect, Node* control); | 132 Node* effect, Node* control); |
| 133 ValueEffectControl LowerPlainPrimitiveToNumber(Node* node, Node* effect, | 133 ValueEffectControl LowerPlainPrimitiveToNumber(Node* node, Node* effect, |
| 134 Node* control); | 134 Node* control); |
| 135 ValueEffectControl LowerPlainPrimitiveToWord32(Node* node, Node* effect, | 135 ValueEffectControl LowerPlainPrimitiveToWord32(Node* node, Node* effect, |
| 136 Node* control); | 136 Node* control); |
| 137 ValueEffectControl LowerPlainPrimitiveToFloat64(Node* node, Node* effect, | 137 ValueEffectControl LowerPlainPrimitiveToFloat64(Node* node, Node* effect, |
| 138 Node* control); | 138 Node* control); |
| 139 ValueEffectControl LowerEnsureWritableFastElements(Node* node, Node* effect, | 139 ValueEffectControl LowerEnsureWritableFastElements(Node* node, Node* effect, |
| 140 Node* control); | 140 Node* control); |
| 141 ValueEffectControl LowerMaybeGrowFastElements(Node* node, Node* frame_state, |
| 142 Node* effect, Node* control); |
| 141 ValueEffectControl LowerTransitionElementsKind(Node* node, Node* effect, | 143 ValueEffectControl LowerTransitionElementsKind(Node* node, Node* effect, |
| 142 Node* control); | 144 Node* control); |
| 143 ValueEffectControl LowerLoadTypedElement(Node* node, Node* effect, | 145 ValueEffectControl LowerLoadTypedElement(Node* node, Node* effect, |
| 144 Node* control); | 146 Node* control); |
| 145 ValueEffectControl LowerStoreTypedElement(Node* node, Node* effect, | 147 ValueEffectControl LowerStoreTypedElement(Node* node, Node* effect, |
| 146 Node* control); | 148 Node* control); |
| 147 | 149 |
| 148 // Lowering of optional operators. | 150 // Lowering of optional operators. |
| 149 ValueEffectControl LowerFloat64RoundUp(Node* node, Node* effect, | 151 ValueEffectControl LowerFloat64RoundUp(Node* node, Node* effect, |
| 150 Node* control); | 152 Node* control); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 RegionObservability region_observability_ = RegionObservability::kObservable; | 193 RegionObservability region_observability_ = RegionObservability::kObservable; |
| 192 | 194 |
| 193 SetOncePointer<Operator const> to_number_operator_; | 195 SetOncePointer<Operator const> to_number_operator_; |
| 194 }; | 196 }; |
| 195 | 197 |
| 196 } // namespace compiler | 198 } // namespace compiler |
| 197 } // namespace internal | 199 } // namespace internal |
| 198 } // namespace v8 | 200 } // namespace v8 |
| 199 | 201 |
| 200 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 202 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
| OLD | NEW |