| 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 2248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2259 } | 2259 } |
| 2260 | 2260 |
| 2261 #define FOR_EACH_HYDROGEN_INTRINSIC(F) \ | 2261 #define FOR_EACH_HYDROGEN_INTRINSIC(F) \ |
| 2262 F(IsSmi) \ | 2262 F(IsSmi) \ |
| 2263 F(IsArray) \ | 2263 F(IsArray) \ |
| 2264 F(IsTypedArray) \ | 2264 F(IsTypedArray) \ |
| 2265 F(IsRegExp) \ | 2265 F(IsRegExp) \ |
| 2266 F(IsJSProxy) \ | 2266 F(IsJSProxy) \ |
| 2267 F(Call) \ | 2267 F(Call) \ |
| 2268 F(NewObject) \ | 2268 F(NewObject) \ |
| 2269 F(ValueOf) \ |
| 2269 F(StringCharFromCode) \ | 2270 F(StringCharFromCode) \ |
| 2270 F(ToInteger) \ | 2271 F(ToInteger) \ |
| 2271 F(ToName) \ | 2272 F(ToName) \ |
| 2272 F(ToObject) \ | 2273 F(ToObject) \ |
| 2273 F(ToString) \ | 2274 F(ToString) \ |
| 2274 F(ToLength) \ | 2275 F(ToLength) \ |
| 2275 F(ToNumber) \ | 2276 F(ToNumber) \ |
| 2276 F(IsJSReceiver) \ | 2277 F(IsJSReceiver) \ |
| 2277 F(HasCachedArrayIndex) \ | 2278 F(HasCachedArrayIndex) \ |
| 2278 F(GetCachedArrayIndex) \ | 2279 F(GetCachedArrayIndex) \ |
| (...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3096 } | 3097 } |
| 3097 | 3098 |
| 3098 private: | 3099 private: |
| 3099 HOptimizedGraphBuilder* builder_; | 3100 HOptimizedGraphBuilder* builder_; |
| 3100 }; | 3101 }; |
| 3101 | 3102 |
| 3102 } // namespace internal | 3103 } // namespace internal |
| 3103 } // namespace v8 | 3104 } // namespace v8 |
| 3104 | 3105 |
| 3105 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3106 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
| OLD | NEW |