Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index 2dd9d08bc55e12c675ecae29848d8187c041730c..3e96342a2fed2123fb2a2fc4bbc7bdf0a9e4a6f2 100644 |
--- a/src/runtime/runtime.h |
+++ b/src/runtime/runtime.h |
@@ -281,51 +281,52 @@ namespace internal { |
#endif |
#define FOR_EACH_INTRINSIC_INTERNAL(F) \ |
+ F(AllocateInNewSpace, 1, 1) \ |
+ F(AllocateInTargetSpace, 2, 1) \ |
+ F(AllocateSeqOneByteString, 1, 1) \ |
+ F(AllocateSeqTwoByteString, 1, 1) \ |
F(CheckIsBootstrapping, 0, 1) \ |
- F(ExportFromRuntime, 1, 1) \ |
+ F(CreateListFromArrayLike, 1, 1) \ |
+ F(EnqueueMicrotask, 1, 1) \ |
+ F(GetAndResetRuntimeCallStats, -1 /* <= 2 */, 1) \ |
F(ExportExperimentalFromRuntime, 1, 1) \ |
+ F(ExportFromRuntime, 1, 1) \ |
+ F(IncrementUseCounter, 1, 1) \ |
F(InstallToContext, 1, 1) \ |
- F(Throw, 1, 1) \ |
- F(ReThrow, 1, 1) \ |
- F(UnwindAndFindExceptionHandler, 0, 1) \ |
+ F(Interrupt, 0, 1) \ |
+ F(IS_VAR, 1, 1) \ |
+ F(IsWasmObject, 1, 1) \ |
+ F(MessageGetScript, 1, 1) \ |
+ F(MessageGetStartPosition, 1, 1) \ |
+ F(NewReferenceError, 2, 1) \ |
+ F(NewSyntaxError, 2, 1) \ |
+ F(NewTypeError, 2, 1) \ |
+ F(OrdinaryHasInstance, 2, 1) \ |
+ F(PromiseRejectEvent, 3, 1) \ |
+ F(PromiseRevokeReject, 1, 1) \ |
F(PromoteScheduledException, 0, 1) \ |
- F(ThrowReferenceError, 1, 1) \ |
+ F(ReThrow, 1, 1) \ |
+ F(RunMicrotasks, 0, 1) \ |
+ F(StackGuard, 0, 1) \ |
+ F(Throw, 1, 1) \ |
F(ThrowApplyNonFunction, 1, 1) \ |
- F(NewTypeError, 2, 1) \ |
- F(NewSyntaxError, 2, 1) \ |
- F(NewReferenceError, 2, 1) \ |
F(ThrowCannotConvertToPrimitive, 0, 1) \ |
+ F(ThrowCalledNonCallable, 1, 1) \ |
+ F(ThrowCalledOnNullOrUndefined, 1, 1) \ |
+ F(ThrowConstructedNonConstructable, 1, 1) \ |
+ F(ThrowDerivedConstructorReturnedNonObject, 0, 1) \ |
+ F(ThrowGeneratorRunning, 0, 1) \ |
F(ThrowIllegalInvocation, 0, 1) \ |
F(ThrowIncompatibleMethodReceiver, 2, 1) \ |
F(ThrowInvalidStringLength, 0, 1) \ |
F(ThrowIteratorResultNotAnObject, 1, 1) \ |
F(ThrowNotGeneric, 1, 1) \ |
- F(ThrowGeneratorRunning, 0, 1) \ |
+ F(ThrowReferenceError, 1, 1) \ |
F(ThrowStackOverflow, 0, 1) \ |
F(ThrowWasmError, 2, 1) \ |
- F(PromiseRejectEvent, 3, 1) \ |
- F(PromiseRevokeReject, 1, 1) \ |
- F(StackGuard, 0, 1) \ |
- F(Interrupt, 0, 1) \ |
- F(AllocateInNewSpace, 1, 1) \ |
- F(AllocateInTargetSpace, 2, 1) \ |
- F(AllocateSeqOneByteString, 1, 1) \ |
- F(AllocateSeqTwoByteString, 1, 1) \ |
- F(MessageGetStartPosition, 1, 1) \ |
- F(MessageGetScript, 1, 1) \ |
- F(IS_VAR, 1, 1) \ |
- F(ThrowConstructedNonConstructable, 1, 1) \ |
- F(ThrowDerivedConstructorReturnedNonObject, 0, 1) \ |
- F(ThrowCalledNonCallable, 1, 1) \ |
- F(ThrowCalledOnNullOrUndefined, 1, 1) \ |
- F(CreateListFromArrayLike, 1, 1) \ |
- F(IncrementUseCounter, 1, 1) \ |
- F(GetAndResetRuntimeCallStats, -1 /* <= 2 */, 1) \ |
- F(EnqueueMicrotask, 1, 1) \ |
- F(RunMicrotasks, 0, 1) \ |
- F(OrdinaryHasInstance, 2, 1) \ |
- F(IsWasmObject, 1, 1) \ |
- F(Typeof, 1, 1) |
+ F(ThrowUndefinedOrNullToObject, 1, 1) \ |
+ F(Typeof, 1, 1) \ |
+ F(UnwindAndFindExceptionHandler, 0, 1) |
#define FOR_EACH_INTRINSIC_LITERALS(F) \ |
F(CreateRegExpLiteral, 4, 1) \ |