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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 Node* control); | 105 Node* control); |
106 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, | 106 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, |
107 Node* control); | 107 Node* control); |
108 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, | 108 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, |
109 Node* control); | 109 Node* control); |
110 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); | 110 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); |
111 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, | 111 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, |
112 Node* control); | 112 Node* control); |
113 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, | 113 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, |
114 Node* control); | 114 Node* control); |
| 115 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect, |
| 116 Node* control); |
115 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, | 117 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, |
116 Node* control); | 118 Node* control); |
117 ValueEffectControl LowerCheckFloat64Hole(Node* node, Node* frame_state, | 119 ValueEffectControl LowerCheckFloat64Hole(Node* node, Node* frame_state, |
118 Node* effect, Node* control); | 120 Node* effect, Node* control); |
119 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state, | 121 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state, |
120 Node* effect, Node* control); | 122 Node* effect, Node* control); |
121 ValueEffectControl LowerPlainPrimitiveToNumber(Node* node, Node* effect, | 123 ValueEffectControl LowerPlainPrimitiveToNumber(Node* node, Node* effect, |
122 Node* control); | 124 Node* control); |
123 ValueEffectControl LowerPlainPrimitiveToWord32(Node* node, Node* effect, | 125 ValueEffectControl LowerPlainPrimitiveToWord32(Node* node, Node* effect, |
124 Node* control); | 126 Node* control); |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 RegionObservability region_observability_ = RegionObservability::kObservable; | 166 RegionObservability region_observability_ = RegionObservability::kObservable; |
165 | 167 |
166 SetOncePointer<Operator const> to_number_operator_; | 168 SetOncePointer<Operator const> to_number_operator_; |
167 }; | 169 }; |
168 | 170 |
169 } // namespace compiler | 171 } // namespace compiler |
170 } // namespace internal | 172 } // namespace internal |
171 } // namespace v8 | 173 } // namespace v8 |
172 | 174 |
173 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 175 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |