| 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 2246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2257 #define FOR_EACH_HYDROGEN_INTRINSIC(F) \ | 2257 #define FOR_EACH_HYDROGEN_INTRINSIC(F) \ |
| 2258 F(IsSmi) \ | 2258 F(IsSmi) \ |
| 2259 F(IsArray) \ | 2259 F(IsArray) \ |
| 2260 F(IsTypedArray) \ | 2260 F(IsTypedArray) \ |
| 2261 F(IsRegExp) \ | 2261 F(IsRegExp) \ |
| 2262 F(IsJSProxy) \ | 2262 F(IsJSProxy) \ |
| 2263 F(Call) \ | 2263 F(Call) \ |
| 2264 F(NewObject) \ | 2264 F(NewObject) \ |
| 2265 F(ValueOf) \ | 2265 F(ValueOf) \ |
| 2266 F(StringCharFromCode) \ | 2266 F(StringCharFromCode) \ |
| 2267 F(StringCharAt) \ | |
| 2268 F(OneByteSeqStringSetChar) \ | 2267 F(OneByteSeqStringSetChar) \ |
| 2269 F(TwoByteSeqStringSetChar) \ | 2268 F(TwoByteSeqStringSetChar) \ |
| 2270 F(ToInteger) \ | 2269 F(ToInteger) \ |
| 2271 F(ToName) \ | 2270 F(ToName) \ |
| 2272 F(ToObject) \ | 2271 F(ToObject) \ |
| 2273 F(ToString) \ | 2272 F(ToString) \ |
| 2274 F(ToLength) \ | 2273 F(ToLength) \ |
| 2275 F(ToNumber) \ | 2274 F(ToNumber) \ |
| 2276 F(IsJSReceiver) \ | 2275 F(IsJSReceiver) \ |
| 2277 F(MathPow) \ | 2276 F(MathPow) \ |
| (...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3103 } | 3102 } |
| 3104 | 3103 |
| 3105 private: | 3104 private: |
| 3106 HOptimizedGraphBuilder* builder_; | 3105 HOptimizedGraphBuilder* builder_; |
| 3107 }; | 3106 }; |
| 3108 | 3107 |
| 3109 } // namespace internal | 3108 } // namespace internal |
| 3110 } // namespace v8 | 3109 } // namespace v8 |
| 3111 | 3110 |
| 3112 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3111 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
| OLD | NEW |