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_H_ | 5 #ifndef V8_RUNTIME_H_ |
6 #define V8_RUNTIME_H_ | 6 #define V8_RUNTIME_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/zone.h" | 9 #include "src/zone.h" |
10 | 10 |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 F(MapIteratorNext, 2, 1) \ | 291 F(MapIteratorNext, 2, 1) \ |
292 \ | 292 \ |
293 /* Harmony weak maps and sets */ \ | 293 /* Harmony weak maps and sets */ \ |
294 F(WeakCollectionInitialize, 1, 1) \ | 294 F(WeakCollectionInitialize, 1, 1) \ |
295 F(WeakCollectionGet, 2, 1) \ | 295 F(WeakCollectionGet, 2, 1) \ |
296 F(WeakCollectionHas, 2, 1) \ | 296 F(WeakCollectionHas, 2, 1) \ |
297 F(WeakCollectionDelete, 2, 1) \ | 297 F(WeakCollectionDelete, 2, 1) \ |
298 F(WeakCollectionSet, 3, 1) \ | 298 F(WeakCollectionSet, 3, 1) \ |
299 \ | 299 \ |
300 F(GetWeakMapEntries, 1, 1) \ | 300 F(GetWeakMapEntries, 1, 1) \ |
| 301 F(GetWeakSetEntries, 1, 1) \ |
301 \ | 302 \ |
302 /* Harmony events */ \ | 303 /* Harmony events */ \ |
303 F(EnqueueMicrotask, 1, 1) \ | 304 F(EnqueueMicrotask, 1, 1) \ |
304 F(RunMicrotasks, 0, 1) \ | 305 F(RunMicrotasks, 0, 1) \ |
305 \ | 306 \ |
306 /* Harmony observe */ \ | 307 /* Harmony observe */ \ |
307 F(IsObserved, 1, 1) \ | 308 F(IsObserved, 1, 1) \ |
308 F(SetIsObserved, 1, 1) \ | 309 F(SetIsObserved, 1, 1) \ |
309 F(GetObservationState, 0, 1) \ | 310 F(GetObservationState, 0, 1) \ |
310 F(ObservationWeakMapCreate, 0, 1) \ | 311 F(ObservationWeakMapCreate, 0, 1) \ |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 888 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
888 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 889 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
889 | 890 |
890 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 891 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
891 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 892 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
892 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; | 893 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; |
893 | 894 |
894 } } // namespace v8::internal | 895 } } // namespace v8::internal |
895 | 896 |
896 #endif // V8_RUNTIME_H_ | 897 #endif // V8_RUNTIME_H_ |
OLD | NEW |