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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 LowerCheckNumber(Node* node, Node* frame_state, | 66 ValueEffectControl LowerCheckNumber(Node* node, Node* frame_state, |
67 Node* effect, Node* control); | 67 Node* effect, Node* control); |
| 68 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, |
| 69 Node* control); |
68 ValueEffectControl LowerCheckTaggedPointer(Node* node, Node* frame_state, | 70 ValueEffectControl LowerCheckTaggedPointer(Node* node, Node* frame_state, |
69 Node* effect, Node* control); | 71 Node* effect, Node* control); |
70 ValueEffectControl LowerCheckTaggedSigned(Node* node, Node* frame_state, | 72 ValueEffectControl LowerCheckTaggedSigned(Node* node, Node* frame_state, |
71 Node* effect, Node* control); | 73 Node* effect, Node* control); |
72 ValueEffectControl LowerCheckedInt32Add(Node* node, Node* frame_state, | 74 ValueEffectControl LowerCheckedInt32Add(Node* node, Node* frame_state, |
73 Node* effect, Node* control); | 75 Node* effect, Node* control); |
74 ValueEffectControl LowerCheckedInt32Sub(Node* node, Node* frame_state, | 76 ValueEffectControl LowerCheckedInt32Sub(Node* node, Node* frame_state, |
75 Node* effect, Node* control); | 77 Node* effect, Node* control); |
76 ValueEffectControl LowerCheckedUint32ToInt32(Node* node, Node* frame_state, | 78 ValueEffectControl LowerCheckedUint32ToInt32(Node* node, Node* frame_state, |
77 Node* effect, Node* control); | 79 Node* effect, Node* control); |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 RegionObservability region_observability_ = RegionObservability::kObservable; | 150 RegionObservability region_observability_ = RegionObservability::kObservable; |
149 | 151 |
150 SetOncePointer<Operator const> to_number_operator_; | 152 SetOncePointer<Operator const> to_number_operator_; |
151 }; | 153 }; |
152 | 154 |
153 } // namespace compiler | 155 } // namespace compiler |
154 } // namespace internal | 156 } // namespace internal |
155 } // namespace v8 | 157 } // namespace v8 |
156 | 158 |
157 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 159 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |