| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 Node* control); | 136 Node* control); |
| 137 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, | 137 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, |
| 138 Node* control); | 138 Node* control); |
| 139 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, | 139 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, |
| 140 Node* control); | 140 Node* control); |
| 141 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); | 141 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); |
| 142 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, | 142 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, |
| 143 Node* control); | 143 Node* control); |
| 144 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, | 144 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, |
| 145 Node* control); | 145 Node* control); |
| 146 ValueEffectControl LowerNewRestParameterElements(Node* node, Node* effect, |
| 147 Node* control); |
| 148 ValueEffectControl LowerNewUnmappedArgumentsElements(Node* node, Node* effect, |
| 149 Node* control); |
| 146 ValueEffectControl LowerArrayBufferWasNeutered(Node* node, Node* effect, | 150 ValueEffectControl LowerArrayBufferWasNeutered(Node* node, Node* effect, |
| 147 Node* control); | 151 Node* control); |
| 148 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect, | 152 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect, |
| 149 Node* control); | 153 Node* control); |
| 150 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, | 154 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, |
| 151 Node* control); | 155 Node* control); |
| 152 ValueEffectControl LowerStringFromCodePoint(Node* node, Node* effect, | 156 ValueEffectControl LowerStringFromCodePoint(Node* node, Node* effect, |
| 153 Node* control); | 157 Node* control); |
| 154 ValueEffectControl LowerStringEqual(Node* node, Node* effect, Node* control); | 158 ValueEffectControl LowerStringEqual(Node* node, Node* effect, Node* control); |
| 155 ValueEffectControl LowerStringLessThan(Node* node, Node* effect, | 159 ValueEffectControl LowerStringLessThan(Node* node, Node* effect, |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 SourcePositionTable* source_positions_; | 235 SourcePositionTable* source_positions_; |
| 232 | 236 |
| 233 SetOncePointer<Operator const> to_number_operator_; | 237 SetOncePointer<Operator const> to_number_operator_; |
| 234 }; | 238 }; |
| 235 | 239 |
| 236 } // namespace compiler | 240 } // namespace compiler |
| 237 } // namespace internal | 241 } // namespace internal |
| 238 } // namespace v8 | 242 } // namespace v8 |
| 239 | 243 |
| 240 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 244 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
| OLD | NEW |