| 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 "allocation.h" | 8 #include "allocation.h" |
| 9 #include "zone.h" | 9 #include "zone.h" |
| 10 | 10 |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 /* Harmony sets */ \ | 269 /* Harmony sets */ \ |
| 270 F(SetInitialize, 1, 1) \ | 270 F(SetInitialize, 1, 1) \ |
| 271 F(SetAdd, 2, 1) \ | 271 F(SetAdd, 2, 1) \ |
| 272 F(SetHas, 2, 1) \ | 272 F(SetHas, 2, 1) \ |
| 273 F(SetDelete, 2, 1) \ | 273 F(SetDelete, 2, 1) \ |
| 274 F(SetClear, 1, 1) \ | 274 F(SetClear, 1, 1) \ |
| 275 F(SetGetSize, 1, 1) \ | 275 F(SetGetSize, 1, 1) \ |
| 276 F(SetCreateIterator, 2, 1) \ | 276 F(SetCreateIterator, 2, 1) \ |
| 277 \ | 277 \ |
| 278 F(SetIteratorNext, 1, 1) \ | 278 F(SetIteratorNext, 1, 1) \ |
| 279 F(SetIteratorClose, 1, 1) \ | |
| 280 \ | 279 \ |
| 281 /* Harmony maps */ \ | 280 /* Harmony maps */ \ |
| 282 F(MapInitialize, 1, 1) \ | 281 F(MapInitialize, 1, 1) \ |
| 283 F(MapGet, 2, 1) \ | 282 F(MapGet, 2, 1) \ |
| 284 F(MapHas, 2, 1) \ | 283 F(MapHas, 2, 1) \ |
| 285 F(MapDelete, 2, 1) \ | 284 F(MapDelete, 2, 1) \ |
| 286 F(MapClear, 1, 1) \ | 285 F(MapClear, 1, 1) \ |
| 287 F(MapSet, 3, 1) \ | 286 F(MapSet, 3, 1) \ |
| 288 F(MapGetSize, 1, 1) \ | 287 F(MapGetSize, 1, 1) \ |
| 289 F(MapCreateIterator, 2, 1) \ | 288 F(MapCreateIterator, 2, 1) \ |
| 290 \ | 289 \ |
| 291 F(MapIteratorNext, 1, 1) \ | 290 F(MapIteratorNext, 1, 1) \ |
| 292 F(MapIteratorClose, 1, 1) \ | |
| 293 \ | 291 \ |
| 294 /* Harmony weak maps and sets */ \ | 292 /* Harmony weak maps and sets */ \ |
| 295 F(WeakCollectionInitialize, 1, 1) \ | 293 F(WeakCollectionInitialize, 1, 1) \ |
| 296 F(WeakCollectionGet, 2, 1) \ | 294 F(WeakCollectionGet, 2, 1) \ |
| 297 F(WeakCollectionHas, 2, 1) \ | 295 F(WeakCollectionHas, 2, 1) \ |
| 298 F(WeakCollectionDelete, 2, 1) \ | 296 F(WeakCollectionDelete, 2, 1) \ |
| 299 F(WeakCollectionSet, 3, 1) \ | 297 F(WeakCollectionSet, 3, 1) \ |
| 300 \ | 298 \ |
| 301 /* Harmony events */ \ | 299 /* Harmony events */ \ |
| 302 F(EnqueueMicrotask, 1, 1) \ | 300 F(EnqueueMicrotask, 1, 1) \ |
| (...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 890 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
| 893 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 891 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
| 894 | 892 |
| 895 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 893 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 896 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 894 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 897 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; | 895 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; |
| 898 | 896 |
| 899 } } // namespace v8::internal | 897 } } // namespace v8::internal |
| 900 | 898 |
| 901 #endif // V8_RUNTIME_H_ | 899 #endif // V8_RUNTIME_H_ |
| OLD | NEW |