OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_JS_INTRINSIC_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_H_ | 6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
7 | 7 |
8 #include "src/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
9 #include "src/compiler/common-operator.h" | 9 #include "src/compiler/common-operator.h" |
10 #include "src/compiler/graph-reducer.h" | 10 #include "src/compiler/graph-reducer.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 Reduction ReduceToLength(Node* node); | 61 Reduction ReduceToLength(Node* node); |
62 Reduction ReduceToNumber(Node* node); | 62 Reduction ReduceToNumber(Node* node); |
63 Reduction ReduceToObject(Node* node); | 63 Reduction ReduceToObject(Node* node); |
64 Reduction ReduceToString(Node* node); | 64 Reduction ReduceToString(Node* node); |
65 Reduction ReduceCall(Node* node); | 65 Reduction ReduceCall(Node* node); |
66 Reduction ReduceGetSuperConstructor(Node* node); | 66 Reduction ReduceGetSuperConstructor(Node* node); |
67 | 67 |
68 // TODO(turbofan): typedarray.js support; drop once TypedArrays are | 68 // TODO(turbofan): typedarray.js support; drop once TypedArrays are |
69 // converted to proper CodeStubAssembler based builtins. | 69 // converted to proper CodeStubAssembler based builtins. |
70 Reduction ReduceArrayBufferViewField(Node* node, FieldAccess const& access); | 70 Reduction ReduceArrayBufferViewField(Node* node, FieldAccess const& access); |
71 Reduction ReduceArrayBufferViewWasNeutered(Node* node); | |
72 Reduction ReduceMaxSmi(Node* node); | 71 Reduction ReduceMaxSmi(Node* node); |
73 Reduction ReduceTypedArrayMaxSizeInHeap(Node* node); | 72 Reduction ReduceTypedArrayMaxSizeInHeap(Node* node); |
74 | 73 |
75 // TODO(turbofan): collection.js support; drop once Maps and Sets are | 74 // TODO(turbofan): collection.js support; drop once Maps and Sets are |
76 // converted to proper CodeStubAssembler based builtins. | 75 // converted to proper CodeStubAssembler based builtins. |
77 Reduction ReduceJSCollectionGetTable(Node* node); | 76 Reduction ReduceJSCollectionGetTable(Node* node); |
78 Reduction ReduceStringGetRawHashField(Node* node); | 77 Reduction ReduceStringGetRawHashField(Node* node); |
79 Reduction ReduceTheHole(Node* node); | 78 Reduction ReduceTheHole(Node* node); |
80 | 79 |
81 // TODO(turbofan): JavaScript builtins support; drop once all uses of | 80 // TODO(turbofan): JavaScript builtins support; drop once all uses of |
(...skipping 18 matching lines...) Expand all Loading... |
100 | 99 |
101 JSGraph* const jsgraph_; | 100 JSGraph* const jsgraph_; |
102 DeoptimizationMode const mode_; | 101 DeoptimizationMode const mode_; |
103 }; | 102 }; |
104 | 103 |
105 } // namespace compiler | 104 } // namespace compiler |
106 } // namespace internal | 105 } // namespace internal |
107 } // namespace v8 | 106 } // namespace v8 |
108 | 107 |
109 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ | 108 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
OLD | NEW |