| 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_RUNTIME_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
| 6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/objects.h" | 9 #include "src/objects.h" |
| 10 #include "src/zone.h" | 10 #include "src/zone.h" |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 F(SetInitialize, 1, 1) \ | 306 F(SetInitialize, 1, 1) \ |
| 307 F(SetAdd, 2, 1) \ | 307 F(SetAdd, 2, 1) \ |
| 308 F(SetHas, 2, 1) \ | 308 F(SetHas, 2, 1) \ |
| 309 F(SetDelete, 2, 1) \ | 309 F(SetDelete, 2, 1) \ |
| 310 F(SetClear, 1, 1) \ | 310 F(SetClear, 1, 1) \ |
| 311 F(SetGetSize, 1, 1) \ | 311 F(SetGetSize, 1, 1) \ |
| 312 \ | 312 \ |
| 313 F(SetIteratorInitialize, 3, 1) \ | 313 F(SetIteratorInitialize, 3, 1) \ |
| 314 F(SetIteratorClone, 1, 1) \ | 314 F(SetIteratorClone, 1, 1) \ |
| 315 F(SetIteratorNext, 2, 1) \ | 315 F(SetIteratorNext, 2, 1) \ |
| 316 F(SetIteratorDetails, 1, 1) \ |
| 316 \ | 317 \ |
| 317 /* Harmony maps */ \ | 318 /* Harmony maps */ \ |
| 318 F(MapInitialize, 1, 1) \ | 319 F(MapInitialize, 1, 1) \ |
| 319 F(MapGet, 2, 1) \ | 320 F(MapGet, 2, 1) \ |
| 320 F(MapHas, 2, 1) \ | 321 F(MapHas, 2, 1) \ |
| 321 F(MapDelete, 2, 1) \ | 322 F(MapDelete, 2, 1) \ |
| 322 F(MapClear, 1, 1) \ | 323 F(MapClear, 1, 1) \ |
| 323 F(MapSet, 3, 1) \ | 324 F(MapSet, 3, 1) \ |
| 324 F(MapGetSize, 1, 1) \ | 325 F(MapGetSize, 1, 1) \ |
| 325 \ | 326 \ |
| 326 F(MapIteratorInitialize, 3, 1) \ | 327 F(MapIteratorInitialize, 3, 1) \ |
| 327 F(MapIteratorClone, 1, 1) \ | 328 F(MapIteratorClone, 1, 1) \ |
| 328 F(MapIteratorNext, 2, 1) \ | 329 F(MapIteratorNext, 2, 1) \ |
| 330 F(MapIteratorDetails, 1, 1) \ |
| 329 \ | 331 \ |
| 330 /* Harmony weak maps and sets */ \ | 332 /* Harmony weak maps and sets */ \ |
| 331 F(WeakCollectionInitialize, 1, 1) \ | 333 F(WeakCollectionInitialize, 1, 1) \ |
| 332 F(WeakCollectionGet, 2, 1) \ | 334 F(WeakCollectionGet, 2, 1) \ |
| 333 F(WeakCollectionHas, 2, 1) \ | 335 F(WeakCollectionHas, 2, 1) \ |
| 334 F(WeakCollectionDelete, 2, 1) \ | 336 F(WeakCollectionDelete, 2, 1) \ |
| 335 F(WeakCollectionSet, 3, 1) \ | 337 F(WeakCollectionSet, 3, 1) \ |
| 336 \ | 338 \ |
| 337 F(GetWeakMapEntries, 2, 1) \ | 339 F(GetWeakMapEntries, 2, 1) \ |
| 338 F(GetWeakSetValues, 2, 1) \ | 340 F(GetWeakSetValues, 2, 1) \ |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; | 890 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; |
| 889 | 891 |
| 890 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 892 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 891 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 893 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 892 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; | 894 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; |
| 893 | 895 |
| 894 } // namespace internal | 896 } // namespace internal |
| 895 } // namespace v8 | 897 } // namespace v8 |
| 896 | 898 |
| 897 #endif // V8_RUNTIME_RUNTIME_H_ | 899 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |