OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_CHANGE_LOWERING_H_ | 5 #ifndef V8_COMPILER_CHANGE_LOWERING_H_ |
6 #define V8_COMPILER_CHANGE_LOWERING_H_ | 6 #define V8_COMPILER_CHANGE_LOWERING_H_ |
7 | 7 |
8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 27 matching lines...) Expand all Loading... |
38 Node* ChangeUint32ToSmi(Node* value); | 38 Node* ChangeUint32ToSmi(Node* value); |
39 Node* LoadHeapNumberValue(Node* value, Node* control); | 39 Node* LoadHeapNumberValue(Node* value, Node* control); |
40 Node* TestNotSmi(Node* value); | 40 Node* TestNotSmi(Node* value); |
41 | 41 |
42 Reduction ChangeBitToBool(Node* value, Node* control); | 42 Reduction ChangeBitToBool(Node* value, Node* control); |
43 Reduction ChangeBoolToBit(Node* value); | 43 Reduction ChangeBoolToBit(Node* value); |
44 Reduction ChangeFloat64ToTagged(Node* value, Node* control); | 44 Reduction ChangeFloat64ToTagged(Node* value, Node* control); |
45 Reduction ChangeInt31ToTagged(Node* value, Node* control); | 45 Reduction ChangeInt31ToTagged(Node* value, Node* control); |
46 Reduction ChangeInt32ToTagged(Node* value, Node* control); | 46 Reduction ChangeInt32ToTagged(Node* value, Node* control); |
47 Reduction ChangeTaggedSignedToInt32(Node* value); | 47 Reduction ChangeTaggedSignedToInt32(Node* value); |
48 Reduction ChangeTaggedToFloat64(Node* value, Node* control); | |
49 Reduction ChangeTaggedToUI32(Node* value, Node* control, | |
50 Signedness signedness); | |
51 Reduction ChangeUint32ToTagged(Node* value, Node* control); | 48 Reduction ChangeUint32ToTagged(Node* value, Node* control); |
52 Reduction TruncateTaggedToWord32(Node* value, Node* control); | |
53 | 49 |
54 Reduction LoadField(Node* node); | 50 Reduction LoadField(Node* node); |
55 Reduction StoreField(Node* node); | 51 Reduction StoreField(Node* node); |
56 Reduction LoadElement(Node* node); | 52 Reduction LoadElement(Node* node); |
57 Reduction StoreElement(Node* node); | 53 Reduction StoreElement(Node* node); |
58 Reduction Allocate(Node* node); | 54 Reduction Allocate(Node* node); |
59 | 55 |
60 Node* IsSmi(Node* value); | 56 Node* IsSmi(Node* value); |
61 Node* LoadHeapObjectMap(Node* object, Node* control); | 57 Node* LoadHeapObjectMap(Node* object, Node* control); |
62 Node* LoadMapBitField(Node* map); | 58 Node* LoadMapBitField(Node* map); |
(...skipping 10 matching lines...) Expand all Loading... |
73 | 69 |
74 JSGraph* const jsgraph_; | 70 JSGraph* const jsgraph_; |
75 SetOncePointer<const Operator> allocate_heap_number_operator_; | 71 SetOncePointer<const Operator> allocate_heap_number_operator_; |
76 }; | 72 }; |
77 | 73 |
78 } // namespace compiler | 74 } // namespace compiler |
79 } // namespace internal | 75 } // namespace internal |
80 } // namespace v8 | 76 } // namespace v8 |
81 | 77 |
82 #endif // V8_COMPILER_CHANGE_LOWERING_H_ | 78 #endif // V8_COMPILER_CHANGE_LOWERING_H_ |
OLD | NEW |