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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, | 68 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, |
69 Node* control); | 69 Node* control); |
70 ValueEffectControl LowerCheckTaggedPointer(Node* node, Node* frame_state, | 70 ValueEffectControl LowerCheckTaggedPointer(Node* node, Node* frame_state, |
71 Node* effect, Node* control); | 71 Node* effect, Node* control); |
72 ValueEffectControl LowerCheckTaggedSigned(Node* node, Node* frame_state, | 72 ValueEffectControl LowerCheckTaggedSigned(Node* node, Node* frame_state, |
73 Node* effect, Node* control); | 73 Node* effect, Node* control); |
74 ValueEffectControl LowerCheckedInt32Add(Node* node, Node* frame_state, | 74 ValueEffectControl LowerCheckedInt32Add(Node* node, Node* frame_state, |
75 Node* effect, Node* control); | 75 Node* effect, Node* control); |
76 ValueEffectControl LowerCheckedInt32Sub(Node* node, Node* frame_state, | 76 ValueEffectControl LowerCheckedInt32Sub(Node* node, Node* frame_state, |
77 Node* effect, Node* control); | 77 Node* effect, Node* control); |
| 78 ValueEffectControl LowerCheckedInt32Div(Node* node, Node* frame_state, |
| 79 Node* effect, Node* control); |
| 80 ValueEffectControl LowerCheckedInt32Mod(Node* node, Node* frame_state, |
| 81 Node* effect, Node* control); |
78 ValueEffectControl LowerCheckedUint32ToInt32(Node* node, Node* frame_state, | 82 ValueEffectControl LowerCheckedUint32ToInt32(Node* node, Node* frame_state, |
79 Node* effect, Node* control); | 83 Node* effect, Node* control); |
80 ValueEffectControl LowerCheckedFloat64ToInt32(Node* node, Node* frame_state, | 84 ValueEffectControl LowerCheckedFloat64ToInt32(Node* node, Node* frame_state, |
81 Node* effect, Node* control); | 85 Node* effect, Node* control); |
82 ValueEffectControl LowerCheckedTaggedToInt32(Node* node, Node* frame_state, | 86 ValueEffectControl LowerCheckedTaggedToInt32(Node* node, Node* frame_state, |
83 Node* effect, Node* control); | 87 Node* effect, Node* control); |
84 ValueEffectControl LowerCheckedTaggedToFloat64(Node* node, Node* frame_state, | 88 ValueEffectControl LowerCheckedTaggedToFloat64(Node* node, Node* frame_state, |
85 Node* effect, Node* control); | 89 Node* effect, Node* control); |
86 ValueEffectControl LowerChangeTaggedToFloat64(Node* node, Node* effect, | 90 ValueEffectControl LowerChangeTaggedToFloat64(Node* node, Node* effect, |
87 Node* control); | 91 Node* control); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 RegionObservability region_observability_ = RegionObservability::kObservable; | 154 RegionObservability region_observability_ = RegionObservability::kObservable; |
151 | 155 |
152 SetOncePointer<Operator const> to_number_operator_; | 156 SetOncePointer<Operator const> to_number_operator_; |
153 }; | 157 }; |
154 | 158 |
155 } // namespace compiler | 159 } // namespace compiler |
156 } // namespace internal | 160 } // namespace internal |
157 } // namespace v8 | 161 } // namespace v8 |
158 | 162 |
159 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 163 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |