OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 F(MapSet, 3, 1) \ | 346 F(MapSet, 3, 1) \ |
347 F(MapGetSize, 1, 1) \ | 347 F(MapGetSize, 1, 1) \ |
348 \ | 348 \ |
349 /* Harmony weak maps and sets */ \ | 349 /* Harmony weak maps and sets */ \ |
350 F(WeakCollectionInitialize, 1, 1) \ | 350 F(WeakCollectionInitialize, 1, 1) \ |
351 F(WeakCollectionGet, 2, 1) \ | 351 F(WeakCollectionGet, 2, 1) \ |
352 F(WeakCollectionHas, 2, 1) \ | 352 F(WeakCollectionHas, 2, 1) \ |
353 F(WeakCollectionDelete, 2, 1) \ | 353 F(WeakCollectionDelete, 2, 1) \ |
354 F(WeakCollectionSet, 3, 1) \ | 354 F(WeakCollectionSet, 3, 1) \ |
355 \ | 355 \ |
| 356 /* Harmony events */ \ |
| 357 F(SetMicrotasksPending, 1, 1) \ |
| 358 \ |
356 /* Harmony observe */ \ | 359 /* Harmony observe */ \ |
357 F(IsObserved, 1, 1) \ | 360 F(IsObserved, 1, 1) \ |
358 F(SetIsObserved, 1, 1) \ | 361 F(SetIsObserved, 1, 1) \ |
359 F(SetObserverDeliveryPending, 0, 1) \ | |
360 F(GetObservationState, 0, 1) \ | 362 F(GetObservationState, 0, 1) \ |
361 F(ObservationWeakMapCreate, 0, 1) \ | 363 F(ObservationWeakMapCreate, 0, 1) \ |
362 F(UnwrapGlobalProxy, 1, 1) \ | 364 F(UnwrapGlobalProxy, 1, 1) \ |
363 F(IsAccessAllowedForObserver, 3, 1) \ | 365 F(IsAccessAllowedForObserver, 3, 1) \ |
364 \ | 366 \ |
365 /* Harmony typed arrays */ \ | 367 /* Harmony typed arrays */ \ |
366 F(ArrayBufferInitialize, 2, 1)\ | 368 F(ArrayBufferInitialize, 2, 1)\ |
367 F(ArrayBufferGetByteLength, 1, 1)\ | 369 F(ArrayBufferGetByteLength, 1, 1)\ |
368 F(ArrayBufferSliceImpl, 3, 1) \ | 370 F(ArrayBufferSliceImpl, 3, 1) \ |
369 F(ArrayBufferIsView, 1, 1) \ | 371 F(ArrayBufferIsView, 1, 1) \ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 F(InitializeConstGlobal, 2, 1) \ | 434 F(InitializeConstGlobal, 2, 1) \ |
433 F(InitializeConstContextSlot, 3, 1) \ | 435 F(InitializeConstContextSlot, 3, 1) \ |
434 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 436 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
435 \ | 437 \ |
436 /* Debugging */ \ | 438 /* Debugging */ \ |
437 F(DebugPrint, 1, 1) \ | 439 F(DebugPrint, 1, 1) \ |
438 F(DebugTrace, 0, 1) \ | 440 F(DebugTrace, 0, 1) \ |
439 F(TraceEnter, 0, 1) \ | 441 F(TraceEnter, 0, 1) \ |
440 F(TraceExit, 1, 1) \ | 442 F(TraceExit, 1, 1) \ |
441 F(Abort, 2, 1) \ | 443 F(Abort, 2, 1) \ |
| 444 F(AbortJS, 1, 1) \ |
442 /* Logging */ \ | 445 /* Logging */ \ |
443 F(Log, 2, 1) \ | 446 F(Log, 2, 1) \ |
444 /* ES5 */ \ | 447 /* ES5 */ \ |
445 F(LocalKeys, 1, 1) \ | 448 F(LocalKeys, 1, 1) \ |
446 /* Cache suport */ \ | 449 /* Cache suport */ \ |
447 F(GetFromCache, 2, 1) \ | 450 F(GetFromCache, 2, 1) \ |
448 \ | 451 \ |
449 /* Message objects */ \ | 452 /* Message objects */ \ |
450 F(MessageGetStartPosition, 1, 1) \ | 453 F(MessageGetStartPosition, 1, 1) \ |
451 F(MessageGetScript, 1, 1) \ | 454 F(MessageGetScript, 1, 1) \ |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
844 //--------------------------------------------------------------------------- | 847 //--------------------------------------------------------------------------- |
845 // Constants used by interface to runtime functions. | 848 // Constants used by interface to runtime functions. |
846 | 849 |
847 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 850 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
848 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 851 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
849 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 852 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
850 | 853 |
851 } } // namespace v8::internal | 854 } } // namespace v8::internal |
852 | 855 |
853 #endif // V8_RUNTIME_H_ | 856 #endif // V8_RUNTIME_H_ |
OLD | NEW |