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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 ValueEffectControl LowerChangeFloat64ToTagged(Node* node, Node* effect, | 53 ValueEffectControl LowerChangeFloat64ToTagged(Node* node, Node* effect, |
54 Node* control); | 54 Node* control); |
55 ValueEffectControl LowerChangeTaggedSignedToInt32(Node* node, Node* effect, | 55 ValueEffectControl LowerChangeTaggedSignedToInt32(Node* node, Node* effect, |
56 Node* control); | 56 Node* control); |
57 ValueEffectControl LowerChangeTaggedToBit(Node* node, Node* effect, | 57 ValueEffectControl LowerChangeTaggedToBit(Node* node, Node* effect, |
58 Node* control); | 58 Node* control); |
59 ValueEffectControl LowerChangeTaggedToInt32(Node* node, Node* effect, | 59 ValueEffectControl LowerChangeTaggedToInt32(Node* node, Node* effect, |
60 Node* control); | 60 Node* control); |
61 ValueEffectControl LowerChangeTaggedToUint32(Node* node, Node* effect, | 61 ValueEffectControl LowerChangeTaggedToUint32(Node* node, Node* effect, |
62 Node* control); | 62 Node* control); |
| 63 ValueEffectControl LowerCheckedUint32ToInt32(Node* node, Node* effect, |
| 64 Node* control); |
| 65 ValueEffectControl LowerCheckedFloat64ToInt32(Node* node, Node* effect, |
| 66 Node* control); |
| 67 ValueEffectControl LowerCheckedTaggedToInt32(Node* node, Node* effect, |
| 68 Node* control); |
| 69 ValueEffectControl LowerCheckedTaggedToFloat64(Node* node, Node* effect, |
| 70 Node* control); |
63 ValueEffectControl LowerChangeTaggedToFloat64(Node* node, Node* effect, | 71 ValueEffectControl LowerChangeTaggedToFloat64(Node* node, Node* effect, |
64 Node* control); | 72 Node* control); |
65 ValueEffectControl LowerTruncateTaggedToFloat64(Node* node, Node* effect, | 73 ValueEffectControl LowerTruncateTaggedToFloat64(Node* node, Node* effect, |
66 Node* control); | 74 Node* control); |
67 ValueEffectControl LowerTruncateTaggedToWord32(Node* node, Node* effect, | 75 ValueEffectControl LowerTruncateTaggedToWord32(Node* node, Node* effect, |
68 Node* control); | 76 Node* control); |
69 ValueEffectControl LowerObjectIsCallable(Node* node, Node* effect, | 77 ValueEffectControl LowerObjectIsCallable(Node* node, Node* effect, |
70 Node* control); | 78 Node* control); |
71 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, | 79 ValueEffectControl LowerObjectIsNumber(Node* node, Node* effect, |
72 Node* control); | 80 Node* control); |
73 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, | 81 ValueEffectControl LowerObjectIsReceiver(Node* node, Node* effect, |
74 Node* control); | 82 Node* control); |
75 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); | 83 ValueEffectControl LowerObjectIsSmi(Node* node, Node* effect, Node* control); |
76 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, | 84 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, |
77 Node* control); | 85 Node* control); |
78 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, | 86 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, |
79 Node* control); | 87 Node* control); |
80 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, | 88 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, |
81 Node* control); | 89 Node* control); |
82 ValueEffectControl AllocateHeapNumberWithValue(Node* node, Node* effect, | 90 ValueEffectControl AllocateHeapNumberWithValue(Node* node, Node* effect, |
83 Node* control); | 91 Node* control); |
84 | 92 ValueEffectControl BuildCheckedFloat64ToInt32(Node* value, Node* frame_state, |
| 93 Node* effect, Node* control); |
| 94 ValueEffectControl BuildCheckedHeapNumberOrOddballToFloat64(Node* value, |
| 95 Node* frame_state, |
| 96 Node* effect, |
| 97 Node* control); |
85 Node* ChangeInt32ToSmi(Node* value); | 98 Node* ChangeInt32ToSmi(Node* value); |
86 Node* ChangeUint32ToSmi(Node* value); | 99 Node* ChangeUint32ToSmi(Node* value); |
87 Node* ChangeInt32ToFloat64(Node* value); | 100 Node* ChangeInt32ToFloat64(Node* value); |
88 Node* ChangeUint32ToFloat64(Node* value); | 101 Node* ChangeUint32ToFloat64(Node* value); |
89 Node* ChangeSmiToInt32(Node* value); | 102 Node* ChangeSmiToInt32(Node* value); |
90 Node* ObjectIsSmi(Node* value); | 103 Node* ObjectIsSmi(Node* value); |
91 | 104 |
92 Node* SmiMaxValueConstant(); | 105 Node* SmiMaxValueConstant(); |
93 Node* SmiShiftBitsConstant(); | 106 Node* SmiShiftBitsConstant(); |
94 | 107 |
(...skipping 10 matching lines...) Expand all Loading... |
105 JSGraph* js_graph_; | 118 JSGraph* js_graph_; |
106 Schedule* schedule_; | 119 Schedule* schedule_; |
107 Zone* temp_zone_; | 120 Zone* temp_zone_; |
108 }; | 121 }; |
109 | 122 |
110 } // namespace compiler | 123 } // namespace compiler |
111 } // namespace internal | 124 } // namespace internal |
112 } // namespace v8 | 125 } // namespace v8 |
113 | 126 |
114 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 127 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |