| 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 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2279 F(GetCachedArrayIndex) \ | 2279 F(GetCachedArrayIndex) \ |
| 2280 F(DebugBreakInOptimizedCode) \ | 2280 F(DebugBreakInOptimizedCode) \ |
| 2281 F(StringCharCodeAt) \ | 2281 F(StringCharCodeAt) \ |
| 2282 F(SubString) \ | 2282 F(SubString) \ |
| 2283 F(RegExpExec) \ | 2283 F(RegExpExec) \ |
| 2284 F(RegExpConstructResult) \ | 2284 F(RegExpConstructResult) \ |
| 2285 F(RegExpFlags) \ | 2285 F(RegExpFlags) \ |
| 2286 F(RegExpSource) \ | 2286 F(RegExpSource) \ |
| 2287 F(NumberToString) \ | 2287 F(NumberToString) \ |
| 2288 F(DebugIsActive) \ | 2288 F(DebugIsActive) \ |
| 2289 F(GetOrdinaryHasInstance) \ | |
| 2290 /* Typed Arrays */ \ | 2289 /* Typed Arrays */ \ |
| 2291 F(TypedArrayInitialize) \ | 2290 F(TypedArrayInitialize) \ |
| 2292 F(MaxSmi) \ | 2291 F(MaxSmi) \ |
| 2293 F(TypedArrayMaxSizeInHeap) \ | 2292 F(TypedArrayMaxSizeInHeap) \ |
| 2294 F(ArrayBufferViewGetByteLength) \ | 2293 F(ArrayBufferViewGetByteLength) \ |
| 2295 F(ArrayBufferViewGetByteOffset) \ | 2294 F(ArrayBufferViewGetByteOffset) \ |
| 2296 F(TypedArrayGetLength) \ | 2295 F(TypedArrayGetLength) \ |
| 2297 /* ArrayBuffer */ \ | 2296 /* ArrayBuffer */ \ |
| 2298 F(ArrayBufferGetByteLength) \ | 2297 F(ArrayBufferGetByteLength) \ |
| 2299 /* Maths */ \ | 2298 /* Maths */ \ |
| (...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3118 } | 3117 } |
| 3119 | 3118 |
| 3120 private: | 3119 private: |
| 3121 HOptimizedGraphBuilder* builder_; | 3120 HOptimizedGraphBuilder* builder_; |
| 3122 }; | 3121 }; |
| 3123 | 3122 |
| 3124 } // namespace internal | 3123 } // namespace internal |
| 3125 } // namespace v8 | 3124 } // namespace v8 |
| 3126 | 3125 |
| 3127 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3126 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
| OLD | NEW |