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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 Node* control); | 82 Node* control); |
83 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, | 83 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, |
84 Node* control); | 84 Node* control); |
85 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); | 85 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); |
86 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, | 86 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, |
87 Node* control); | 87 Node* control); |
88 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, | 88 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, |
89 Node* control); | 89 Node* control); |
90 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, | 90 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, |
91 Node* control); | 91 Node* control); |
| 92 ValueEffectControl LowerCheckFloat64Hole(Node* node, Node* frame_state, |
| 93 Node* effect, Node* control); |
| 94 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state, |
| 95 Node* effect, Node* control); |
92 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, | 96 ValueEffectControl LowerCheckIf(Node* node, Node* frame_state, Node* effect, |
93 Node* control); | 97 Node* control); |
94 ValueEffectControl LowerPlainPrimitiveToNumber(Node* node, Node* effect, | 98 ValueEffectControl LowerPlainPrimitiveToNumber(Node* node, Node* effect, |
95 Node* control); | 99 Node* control); |
96 ValueEffectControl LowerPlainPrimitiveToWord32(Node* node, Node* effect, | 100 ValueEffectControl LowerPlainPrimitiveToWord32(Node* node, Node* effect, |
97 Node* control); | 101 Node* control); |
98 ValueEffectControl LowerPlainPrimitiveToFloat64(Node* node, Node* effect, | 102 ValueEffectControl LowerPlainPrimitiveToFloat64(Node* node, Node* effect, |
99 Node* control); | 103 Node* control); |
100 | 104 |
101 ValueEffectControl AllocateHeapNumberWithValue(Node* node, Node* effect, | 105 ValueEffectControl AllocateHeapNumberWithValue(Node* node, Node* effect, |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 Zone* temp_zone_; | 138 Zone* temp_zone_; |
135 | 139 |
136 SetOncePointer<Operator const> to_number_operator_; | 140 SetOncePointer<Operator const> to_number_operator_; |
137 }; | 141 }; |
138 | 142 |
139 } // namespace compiler | 143 } // namespace compiler |
140 } // namespace internal | 144 } // namespace internal |
141 } // namespace v8 | 145 } // namespace v8 |
142 | 146 |
143 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 147 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |