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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 ValueEffectControl LowerChangeTaggedSignedToInt32(Node* node, Node* effect, | 56 ValueEffectControl LowerChangeTaggedSignedToInt32(Node* node, Node* effect, |
57 Node* control); | 57 Node* control); |
58 ValueEffectControl LowerChangeTaggedToBit(Node* node, Node* effect, | 58 ValueEffectControl LowerChangeTaggedToBit(Node* node, Node* effect, |
59 Node* control); | 59 Node* control); |
60 ValueEffectControl LowerChangeTaggedToInt32(Node* node, Node* effect, | 60 ValueEffectControl LowerChangeTaggedToInt32(Node* node, Node* effect, |
61 Node* control); | 61 Node* control); |
62 ValueEffectControl LowerChangeTaggedToUint32(Node* node, Node* effect, | 62 ValueEffectControl LowerChangeTaggedToUint32(Node* node, Node* effect, |
63 Node* control); | 63 Node* control); |
64 ValueEffectControl LowerCheckBounds(Node* node, Node* frame_state, | 64 ValueEffectControl LowerCheckBounds(Node* node, Node* frame_state, |
65 Node* effect, Node* control); | 65 Node* effect, Node* control); |
| 66 ValueEffectControl LowerCheckMaps(Node* node, Node* frame_state, Node* effect, |
| 67 Node* control); |
66 ValueEffectControl LowerCheckNumber(Node* node, Node* frame_state, | 68 ValueEffectControl LowerCheckNumber(Node* node, Node* frame_state, |
67 Node* effect, Node* control); | 69 Node* effect, Node* control); |
68 ValueEffectControl LowerCheckString(Node* node, Node* frame_state, | 70 ValueEffectControl LowerCheckString(Node* node, Node* frame_state, |
69 Node* effect, Node* control); | 71 Node* effect, Node* control); |
70 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, | 72 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, |
71 Node* control); | 73 Node* control); |
72 ValueEffectControl LowerCheckTaggedPointer(Node* node, Node* frame_state, | 74 ValueEffectControl LowerCheckTaggedPointer(Node* node, Node* frame_state, |
73 Node* effect, Node* control); | 75 Node* effect, Node* control); |
74 ValueEffectControl LowerCheckTaggedSigned(Node* node, Node* frame_state, | 76 ValueEffectControl LowerCheckTaggedSigned(Node* node, Node* frame_state, |
75 Node* effect, Node* control); | 77 Node* effect, Node* control); |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 RegionObservability region_observability_ = RegionObservability::kObservable; | 172 RegionObservability region_observability_ = RegionObservability::kObservable; |
171 | 173 |
172 SetOncePointer<Operator const> to_number_operator_; | 174 SetOncePointer<Operator const> to_number_operator_; |
173 }; | 175 }; |
174 | 176 |
175 } // namespace compiler | 177 } // namespace compiler |
176 } // namespace internal | 178 } // namespace internal |
177 } // namespace v8 | 179 } // namespace v8 |
178 | 180 |
179 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 181 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |