| 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_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
| 6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
| (...skipping 2204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2215 /* Maths */ \ | 2215 /* Maths */ \ |
| 2216 F(ConstructDouble) \ | 2216 F(ConstructDouble) \ |
| 2217 F(DoubleHi) \ | 2217 F(DoubleHi) \ |
| 2218 F(DoubleLo) \ | 2218 F(DoubleLo) \ |
| 2219 F(MathClz32) \ | 2219 F(MathClz32) \ |
| 2220 F(MathFloor) \ | 2220 F(MathFloor) \ |
| 2221 F(MathSqrt) \ | 2221 F(MathSqrt) \ |
| 2222 F(MathLogRT) \ | 2222 F(MathLogRT) \ |
| 2223 /* ES6 Collections */ \ | 2223 /* ES6 Collections */ \ |
| 2224 F(MapClear) \ | 2224 F(MapClear) \ |
| 2225 F(MapDelete) \ | |
| 2226 F(MapGet) \ | |
| 2227 F(MapGetSize) \ | |
| 2228 F(MapHas) \ | |
| 2229 F(MapInitialize) \ | 2225 F(MapInitialize) \ |
| 2230 F(MapSet) \ | |
| 2231 F(SetAdd) \ | |
| 2232 F(SetClear) \ | 2226 F(SetClear) \ |
| 2233 F(SetDelete) \ | |
| 2234 F(SetGetSize) \ | |
| 2235 F(SetHas) \ | |
| 2236 F(SetInitialize) \ | 2227 F(SetInitialize) \ |
| 2228 F(FixedArrayGet) \ |
| 2229 F(FixedArraySet) \ |
| 2230 F(JSCollectionGetTable) \ |
| 2231 F(StringGetRawHashField) \ |
| 2232 F(TheHole) \ |
| 2237 /* Arrays */ \ | 2233 /* Arrays */ \ |
| 2238 F(HasFastPackedElements) \ | 2234 F(HasFastPackedElements) \ |
| 2239 F(GetPrototype) \ | 2235 F(GetPrototype) \ |
| 2240 /* Strings */ \ | 2236 /* Strings */ \ |
| 2241 F(StringGetLength) \ | 2237 F(StringGetLength) \ |
| 2242 /* JSValue */ \ | 2238 /* JSValue */ \ |
| 2243 F(JSValueGetValue) | 2239 F(JSValueGetValue) |
| 2244 | 2240 |
| 2245 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); | 2241 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); |
| 2246 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) | 2242 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3035 } | 3031 } |
| 3036 | 3032 |
| 3037 private: | 3033 private: |
| 3038 HGraphBuilder* builder_; | 3034 HGraphBuilder* builder_; |
| 3039 }; | 3035 }; |
| 3040 | 3036 |
| 3041 | 3037 |
| 3042 } } // namespace v8::internal | 3038 } } // namespace v8::internal |
| 3043 | 3039 |
| 3044 #endif // V8_HYDROGEN_H_ | 3040 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |