| 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 2256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2267 F(NewObject) \ | 2267 F(NewObject) \ |
| 2268 F(ValueOf) \ | 2268 F(ValueOf) \ |
| 2269 F(StringCharFromCode) \ | 2269 F(StringCharFromCode) \ |
| 2270 F(ToInteger) \ | 2270 F(ToInteger) \ |
| 2271 F(ToName) \ | 2271 F(ToName) \ |
| 2272 F(ToObject) \ | 2272 F(ToObject) \ |
| 2273 F(ToString) \ | 2273 F(ToString) \ |
| 2274 F(ToLength) \ | 2274 F(ToLength) \ |
| 2275 F(ToNumber) \ | 2275 F(ToNumber) \ |
| 2276 F(IsJSReceiver) \ | 2276 F(IsJSReceiver) \ |
| 2277 F(MathPow) \ | |
| 2278 F(HasCachedArrayIndex) \ | 2277 F(HasCachedArrayIndex) \ |
| 2279 F(GetCachedArrayIndex) \ | 2278 F(GetCachedArrayIndex) \ |
| 2280 F(DebugBreakInOptimizedCode) \ | 2279 F(DebugBreakInOptimizedCode) \ |
| 2281 F(StringCharCodeAt) \ | 2280 F(StringCharCodeAt) \ |
| 2282 F(SubString) \ | 2281 F(SubString) \ |
| 2283 F(RegExpExec) \ | 2282 F(RegExpExec) \ |
| 2284 F(RegExpConstructResult) \ | 2283 F(RegExpConstructResult) \ |
| 2285 F(RegExpFlags) \ | 2284 F(RegExpFlags) \ |
| 2286 F(RegExpSource) \ | 2285 F(RegExpSource) \ |
| 2287 F(NumberToString) \ | 2286 F(NumberToString) \ |
| (...skipping 812 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 |