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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, | 66 ValueEffectControl LowerCheckMaps(Node* node, Node* frame_state, Node* effect, |
67 Node* control); | 67 Node* control); |
68 ValueEffectControl LowerCheckNumber(Node* node, Node* frame_state, | 68 ValueEffectControl LowerCheckNumber(Node* node, Node* frame_state, |
69 Node* effect, Node* control); | 69 Node* effect, Node* control); |
70 ValueEffectControl LowerCheckString(Node* node, Node* frame_state, | 70 ValueEffectControl LowerCheckString(Node* node, Node* frame_state, |
71 Node* effect, Node* control); | 71 Node* effect, Node* control); |
| 72 ValueEffectControl LowerCheckHasInPrototypeChain(Node* node, |
| 73 Node* frame_state, |
| 74 Node* effect, Node* control); |
| 75 ValueEffectControl LowerCheckHeapObject(Node* node, Node* frame_state, |
| 76 Node* effect, Node* control); |
72 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, | 77 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, |
73 Node* control); | 78 Node* control); |
74 ValueEffectControl LowerCheckHeapObject(Node* node, Node* frame_state, | |
75 Node* effect, Node* control); | |
76 ValueEffectControl LowerCheckedInt32Add(Node* node, Node* frame_state, | 79 ValueEffectControl LowerCheckedInt32Add(Node* node, Node* frame_state, |
77 Node* effect, Node* control); | 80 Node* effect, Node* control); |
78 ValueEffectControl LowerCheckedInt32Sub(Node* node, Node* frame_state, | 81 ValueEffectControl LowerCheckedInt32Sub(Node* node, Node* frame_state, |
79 Node* effect, Node* control); | 82 Node* effect, Node* control); |
80 ValueEffectControl LowerCheckedInt32Div(Node* node, Node* frame_state, | 83 ValueEffectControl LowerCheckedInt32Div(Node* node, Node* frame_state, |
81 Node* effect, Node* control); | 84 Node* effect, Node* control); |
82 ValueEffectControl LowerCheckedInt32Mod(Node* node, Node* frame_state, | 85 ValueEffectControl LowerCheckedInt32Mod(Node* node, Node* frame_state, |
83 Node* effect, Node* control); | 86 Node* effect, Node* control); |
84 ValueEffectControl LowerCheckedUint32Div(Node* node, Node* frame_state, | 87 ValueEffectControl LowerCheckedUint32Div(Node* node, Node* frame_state, |
85 Node* effect, Node* control); | 88 Node* effect, Node* control); |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 RegionObservability region_observability_ = RegionObservability::kObservable; | 211 RegionObservability region_observability_ = RegionObservability::kObservable; |
209 | 212 |
210 SetOncePointer<Operator const> to_number_operator_; | 213 SetOncePointer<Operator const> to_number_operator_; |
211 }; | 214 }; |
212 | 215 |
213 } // namespace compiler | 216 } // namespace compiler |
214 } // namespace internal | 217 } // namespace internal |
215 } // namespace v8 | 218 } // namespace v8 |
216 | 219 |
217 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 220 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |