| 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.h" | 10 #include "src/ast/ast.h" |
| (...skipping 2248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2259 F(SetInitialize) \ | 2259 F(SetInitialize) \ |
| 2260 F(FixedArrayGet) \ | 2260 F(FixedArrayGet) \ |
| 2261 F(FixedArraySet) \ | 2261 F(FixedArraySet) \ |
| 2262 F(JSCollectionGetTable) \ | 2262 F(JSCollectionGetTable) \ |
| 2263 F(StringGetRawHashField) \ | 2263 F(StringGetRawHashField) \ |
| 2264 F(TheHole) \ | 2264 F(TheHole) \ |
| 2265 /* ES6 Iterators */ \ | 2265 /* ES6 Iterators */ \ |
| 2266 F(CreateIterResultObject) \ | 2266 F(CreateIterResultObject) \ |
| 2267 /* Arrays */ \ | 2267 /* Arrays */ \ |
| 2268 F(HasFastPackedElements) \ | 2268 F(HasFastPackedElements) \ |
| 2269 /* Strings */ \ | |
| 2270 F(StringGetLength) \ | |
| 2271 /* JSValue */ \ | 2269 /* JSValue */ \ |
| 2272 F(JSValueGetValue) | 2270 F(JSValueGetValue) |
| 2273 | 2271 |
| 2274 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); | 2272 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); |
| 2275 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) | 2273 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) |
| 2276 #undef GENERATOR_DECLARATION | 2274 #undef GENERATOR_DECLARATION |
| 2277 | 2275 |
| 2278 void VisitDelete(UnaryOperation* expr); | 2276 void VisitDelete(UnaryOperation* expr); |
| 2279 void VisitVoid(UnaryOperation* expr); | 2277 void VisitVoid(UnaryOperation* expr); |
| 2280 void VisitTypeof(UnaryOperation* expr); | 2278 void VisitTypeof(UnaryOperation* expr); |
| (...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3061 | 3059 |
| 3062 private: | 3060 private: |
| 3063 HGraphBuilder* builder_; | 3061 HGraphBuilder* builder_; |
| 3064 }; | 3062 }; |
| 3065 | 3063 |
| 3066 | 3064 |
| 3067 } // namespace internal | 3065 } // namespace internal |
| 3068 } // namespace v8 | 3066 } // namespace v8 |
| 3069 | 3067 |
| 3070 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3068 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
| OLD | NEW |