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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, | 146 ValueEffectControl LowerNewRestParameterElements(Node* node, Node* effect, |
147 Node* control); | 147 Node* control); |
148 ValueEffectControl LowerNewUnmappedArgumentsElements(Node* node, Node* effect, | 148 ValueEffectControl LowerNewUnmappedArgumentsElements(Node* node, Node* effect, |
149 Node* control); | 149 Node* control); |
150 ValueEffectControl LowerArrayBufferWasNeutered(Node* node, Node* effect, | 150 ValueEffectControl LowerArrayBufferWasNeutered(Node* node, Node* effect, |
151 Node* control); | 151 Node* control); |
| 152 ValueEffectControl LowerStringCharAt(Node* node, Node* effect, Node* control); |
152 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect, | 153 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect, |
153 Node* control); | 154 Node* control); |
154 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, | 155 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, |
155 Node* control); | 156 Node* control); |
156 ValueEffectControl LowerStringFromCodePoint(Node* node, Node* effect, | 157 ValueEffectControl LowerStringFromCodePoint(Node* node, Node* effect, |
157 Node* control); | 158 Node* control); |
158 ValueEffectControl LowerStringEqual(Node* node, Node* effect, Node* control); | 159 ValueEffectControl LowerStringEqual(Node* node, Node* effect, Node* control); |
159 ValueEffectControl LowerStringLessThan(Node* node, Node* effect, | 160 ValueEffectControl LowerStringLessThan(Node* node, Node* effect, |
160 Node* control); | 161 Node* control); |
161 ValueEffectControl LowerStringLessThanOrEqual(Node* node, Node* effect, | 162 ValueEffectControl LowerStringLessThanOrEqual(Node* node, Node* effect, |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 SourcePositionTable* source_positions_; | 236 SourcePositionTable* source_positions_; |
236 | 237 |
237 SetOncePointer<Operator const> to_number_operator_; | 238 SetOncePointer<Operator const> to_number_operator_; |
238 }; | 239 }; |
239 | 240 |
240 } // namespace compiler | 241 } // namespace compiler |
241 } // namespace internal | 242 } // namespace internal |
242 } // namespace v8 | 243 } // namespace v8 |
243 | 244 |
244 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 245 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |