OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_CRANKSHAFT_HYDROGEN_H_ | 5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_ |
6 #define V8_CRANKSHAFT_HYDROGEN_H_ | 6 #define V8_CRANKSHAFT_HYDROGEN_H_ |
7 | 7 |
8 #include "src/accessors.h" | 8 #include "src/accessors.h" |
9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
10 #include "src/ast/ast-type-bounds.h" | 10 #include "src/ast/ast-type-bounds.h" |
(...skipping 2281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2292 F(TypedArrayMaxSizeInHeap) \ | 2292 F(TypedArrayMaxSizeInHeap) \ |
2293 F(ArrayBufferViewGetByteLength) \ | 2293 F(ArrayBufferViewGetByteLength) \ |
2294 F(ArrayBufferViewGetByteOffset) \ | 2294 F(ArrayBufferViewGetByteOffset) \ |
2295 F(TypedArrayGetLength) \ | 2295 F(TypedArrayGetLength) \ |
2296 /* ArrayBuffer */ \ | 2296 /* ArrayBuffer */ \ |
2297 F(ArrayBufferGetByteLength) \ | 2297 F(ArrayBufferGetByteLength) \ |
2298 /* Maths */ \ | 2298 /* Maths */ \ |
2299 F(ConstructDouble) \ | 2299 F(ConstructDouble) \ |
2300 F(DoubleHi) \ | 2300 F(DoubleHi) \ |
2301 F(DoubleLo) \ | 2301 F(DoubleLo) \ |
2302 F(MathLogRT) \ | |
2303 /* ES6 Collections */ \ | 2302 /* ES6 Collections */ \ |
2304 F(MapClear) \ | 2303 F(MapClear) \ |
2305 F(MapInitialize) \ | 2304 F(MapInitialize) \ |
2306 F(SetClear) \ | 2305 F(SetClear) \ |
2307 F(SetInitialize) \ | 2306 F(SetInitialize) \ |
2308 F(FixedArrayGet) \ | 2307 F(FixedArrayGet) \ |
2309 F(FixedArraySet) \ | 2308 F(FixedArraySet) \ |
2310 F(JSCollectionGetTable) \ | 2309 F(JSCollectionGetTable) \ |
2311 F(StringGetRawHashField) \ | 2310 F(StringGetRawHashField) \ |
2312 F(TheHole) \ | 2311 F(TheHole) \ |
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3100 } | 3099 } |
3101 | 3100 |
3102 private: | 3101 private: |
3103 HOptimizedGraphBuilder* builder_; | 3102 HOptimizedGraphBuilder* builder_; |
3104 }; | 3103 }; |
3105 | 3104 |
3106 } // namespace internal | 3105 } // namespace internal |
3107 } // namespace v8 | 3106 } // namespace v8 |
3108 | 3107 |
3109 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3108 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |