| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 Node* control); | 115 Node* control); |
| 116 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, | 116 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, |
| 117 Node* control); | 117 Node* control); |
| 118 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, | 118 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, |
| 119 Node* control); | 119 Node* control); |
| 120 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); | 120 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); |
| 121 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, | 121 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, |
| 122 Node* control); | 122 Node* control); |
| 123 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, | 123 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, |
| 124 Node* control); | 124 Node* control); |
| 125 ValueEffectControl LowerArrayBufferWasNeutered(Node* node, Node* effect, |
| 126 Node* control); |
| 125 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect, | 127 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect, |
| 126 Node* control); | 128 Node* control); |
| 127 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, | 129 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, |
| 128 Node* control); | 130 Node* control); |
| 129 ValueEffectControl LowerCheckFloat64Hole(Node* node, Node* frame_state, | 131 ValueEffectControl LowerCheckFloat64Hole(Node* node, Node* frame_state, |
| 130 Node* effect, Node* control); | 132 Node* effect, Node* control); |
| 131 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state, | 133 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state, |
| 132 Node* effect, Node* control); | 134 Node* effect, Node* control); |
| 133 ValueEffectControl LowerConvertTaggedHoleToUndefined(Node* node, Node* effect, | 135 ValueEffectControl LowerConvertTaggedHoleToUndefined(Node* node, Node* effect, |
| 134 Node* control); | 136 Node* control); |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 RegionObservability region_observability_ = RegionObservability::kObservable; | 196 RegionObservability region_observability_ = RegionObservability::kObservable; |
| 195 | 197 |
| 196 SetOncePointer<Operator const> to_number_operator_; | 198 SetOncePointer<Operator const> to_number_operator_; |
| 197 }; | 199 }; |
| 198 | 200 |
| 199 } // namespace compiler | 201 } // namespace compiler |
| 200 } // namespace internal | 202 } // namespace internal |
| 201 } // namespace v8 | 203 } // namespace v8 |
| 202 | 204 |
| 203 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 205 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
| OLD | NEW |