Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/runtime.h

Issue 148343005: A64: Synchronize with r18147. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/promise.js ('k') | src/runtime.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 F(GetPropertyNamesFast, 1, 1) \ 57 F(GetPropertyNamesFast, 1, 1) \
58 F(GetLocalPropertyNames, 2, 1) \ 58 F(GetLocalPropertyNames, 2, 1) \
59 F(GetLocalElementNames, 1, 1) \ 59 F(GetLocalElementNames, 1, 1) \
60 F(GetInterceptorInfo, 1, 1) \ 60 F(GetInterceptorInfo, 1, 1) \
61 F(GetNamedInterceptorPropertyNames, 1, 1) \ 61 F(GetNamedInterceptorPropertyNames, 1, 1) \
62 F(GetIndexedInterceptorElementNames, 1, 1) \ 62 F(GetIndexedInterceptorElementNames, 1, 1) \
63 F(GetArgumentsProperty, 1, 1) \ 63 F(GetArgumentsProperty, 1, 1) \
64 F(ToFastProperties, 1, 1) \ 64 F(ToFastProperties, 1, 1) \
65 F(FinishArrayPrototypeSetup, 1, 1) \ 65 F(FinishArrayPrototypeSetup, 1, 1) \
66 F(SpecialArrayFunctions, 1, 1) \ 66 F(SpecialArrayFunctions, 1, 1) \
67 F(IsCallable, 1, 1) \
67 F(IsClassicModeFunction, 1, 1) \ 68 F(IsClassicModeFunction, 1, 1) \
68 F(GetDefaultReceiver, 1, 1) \ 69 F(GetDefaultReceiver, 1, 1) \
69 \ 70 \
70 F(GetPrototype, 1, 1) \ 71 F(GetPrototype, 1, 1) \
71 F(SetPrototype, 2, 1) \ 72 F(SetPrototype, 2, 1) \
72 F(IsInPrototypeChain, 2, 1) \ 73 F(IsInPrototypeChain, 2, 1) \
73 \ 74 \
74 F(GetOwnProperty, 2, 1) \ 75 F(GetOwnProperty, 2, 1) \
75 \ 76 \
76 F(IsExtensible, 1, 1) \ 77 F(IsExtensible, 1, 1) \
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 F(MapSet, 3, 1) \ 346 F(MapSet, 3, 1) \
346 F(MapGetSize, 1, 1) \ 347 F(MapGetSize, 1, 1) \
347 \ 348 \
348 /* Harmony weak maps and sets */ \ 349 /* Harmony weak maps and sets */ \
349 F(WeakCollectionInitialize, 1, 1) \ 350 F(WeakCollectionInitialize, 1, 1) \
350 F(WeakCollectionGet, 2, 1) \ 351 F(WeakCollectionGet, 2, 1) \
351 F(WeakCollectionHas, 2, 1) \ 352 F(WeakCollectionHas, 2, 1) \
352 F(WeakCollectionDelete, 2, 1) \ 353 F(WeakCollectionDelete, 2, 1) \
353 F(WeakCollectionSet, 3, 1) \ 354 F(WeakCollectionSet, 3, 1) \
354 \ 355 \
356 /* Harmony events */ \
357 F(SetMicrotaskPending, 1, 1) \
358 \
355 /* Harmony observe */ \ 359 /* Harmony observe */ \
356 F(IsObserved, 1, 1) \ 360 F(IsObserved, 1, 1) \
357 F(SetIsObserved, 1, 1) \ 361 F(SetIsObserved, 1, 1) \
358 F(SetObserverDeliveryPending, 0, 1) \
359 F(GetObservationState, 0, 1) \ 362 F(GetObservationState, 0, 1) \
360 F(ObservationWeakMapCreate, 0, 1) \ 363 F(ObservationWeakMapCreate, 0, 1) \
361 F(UnwrapGlobalProxy, 1, 1) \ 364 F(UnwrapGlobalProxy, 1, 1) \
362 F(IsAccessAllowedForObserver, 3, 1) \ 365 F(IsAccessAllowedForObserver, 3, 1) \
363 \ 366 \
364 /* Harmony typed arrays */ \ 367 /* Harmony typed arrays */ \
365 F(ArrayBufferInitialize, 2, 1)\ 368 F(ArrayBufferInitialize, 2, 1)\
366 F(ArrayBufferGetByteLength, 1, 1)\ 369 F(ArrayBufferGetByteLength, 1, 1)\
367 F(ArrayBufferSliceImpl, 3, 1) \ 370 F(ArrayBufferSliceImpl, 3, 1) \
368 F(ArrayBufferIsView, 1, 1) \ 371 F(ArrayBufferIsView, 1, 1) \
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 F(InitializeConstGlobal, 2, 1) \ 435 F(InitializeConstGlobal, 2, 1) \
433 F(InitializeConstContextSlot, 3, 1) \ 436 F(InitializeConstContextSlot, 3, 1) \
434 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ 437 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \
435 \ 438 \
436 /* Debugging */ \ 439 /* Debugging */ \
437 F(DebugPrint, 1, 1) \ 440 F(DebugPrint, 1, 1) \
438 F(DebugTrace, 0, 1) \ 441 F(DebugTrace, 0, 1) \
439 F(TraceEnter, 0, 1) \ 442 F(TraceEnter, 0, 1) \
440 F(TraceExit, 1, 1) \ 443 F(TraceExit, 1, 1) \
441 F(Abort, 2, 1) \ 444 F(Abort, 2, 1) \
445 F(AbortJS, 1, 1) \
442 /* Logging */ \ 446 /* Logging */ \
443 F(Log, 2, 1) \ 447 F(Log, 2, 1) \
444 /* ES5 */ \ 448 /* ES5 */ \
445 F(LocalKeys, 1, 1) \ 449 F(LocalKeys, 1, 1) \
446 /* Cache suport */ \ 450 /* Cache suport */ \
447 F(GetFromCache, 2, 1) \ 451 F(GetFromCache, 2, 1) \
448 \ 452 \
449 /* Message objects */ \ 453 /* Message objects */ \
450 F(MessageGetStartPosition, 1, 1) \ 454 F(MessageGetStartPosition, 1, 1) \
451 F(MessageGetScript, 1, 1) \ 455 F(MessageGetScript, 1, 1) \
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; 866 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {};
863 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; 867 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {};
864 868
865 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 869 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
866 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 870 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
867 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 871 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
868 872
869 } } // namespace v8::internal 873 } } // namespace v8::internal
870 874
871 #endif // V8_RUNTIME_H_ 875 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/promise.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698