| 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 29 matching lines...) Expand all Loading... |
| 40 : value(value), effect(effect), control(control) {} | 40 : value(value), effect(effect), control(control) {} |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 bool TryWireInStateEffect(Node* node, Node** effect, Node** control); | 43 bool TryWireInStateEffect(Node* node, Node** effect, Node** control); |
| 44 ValueEffectControl LowerChangeInt32ToTagged(Node* node, Node* effect, | 44 ValueEffectControl LowerChangeInt32ToTagged(Node* node, Node* effect, |
| 45 Node* control); | 45 Node* control); |
| 46 ValueEffectControl LowerChangeUint32ToTagged(Node* node, Node* effect, | 46 ValueEffectControl LowerChangeUint32ToTagged(Node* node, Node* effect, |
| 47 Node* control); | 47 Node* control); |
| 48 ValueEffectControl LowerChangeFloat64ToTagged(Node* node, Node* effect, | 48 ValueEffectControl LowerChangeFloat64ToTagged(Node* node, Node* effect, |
| 49 Node* control); | 49 Node* control); |
| 50 ValueEffectControl LowerChangeTaggedToInt32(Node* node, Node* effect, |
| 51 Node* control); |
| 52 ValueEffectControl LowerChangeTaggedToUint32(Node* node, Node* effect, |
| 53 Node* control); |
| 54 ValueEffectControl LowerChangeTaggedToFloat64(Node* node, Node* effect, |
| 55 Node* control); |
| 56 ValueEffectControl LowerTruncateTaggedToWord32(Node* node, Node* effect, |
| 57 Node* control); |
| 50 ValueEffectControl LowerObjectIsCallable(Node* node, Node* effect, | 58 ValueEffectControl LowerObjectIsCallable(Node* node, Node* effect, |
| 51 Node* control); | 59 Node* control); |
| 52 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, | 60 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, |
| 53 Node* control); | 61 Node* control); |
| 54 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, | 62 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, |
| 55 Node* control); | 63 Node* control); |
| 56 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, | 64 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, |
| 57 Node* control); | 65 Node* control); |
| 58 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, | 66 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, |
| 59 Node* control); | 67 Node* control); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 79 JSGraph* js_graph_; | 87 JSGraph* js_graph_; |
| 80 Schedule* schedule_; | 88 Schedule* schedule_; |
| 81 Zone* temp_zone_; | 89 Zone* temp_zone_; |
| 82 }; | 90 }; |
| 83 | 91 |
| 84 } // namespace compiler | 92 } // namespace compiler |
| 85 } // namespace internal | 93 } // namespace internal |
| 86 } // namespace v8 | 94 } // namespace v8 |
| 87 | 95 |
| 88 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 96 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
| OLD | NEW |