1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/CycleCollectedJSContext.h"
#include <algorithm>
#include <utility>
#include "js/Debug.h"
#include "js/friend/DumpFunctions.h"
#include "js/friend/MicroTask.h"
#include "js/GCAPI.h"
#include "js/Utility.h"
#include "jsapi.h"
#include "mozilla/AsyncEventDispatcher.h"
#include "mozilla/AutoRestore.h"
#include "mozilla/CycleCollectedJSRuntime.h"
#include "mozilla/DebuggerOnGCRunnable.h"
#include "mozilla/FlowMarkers.h"
#include "mozilla/MemoryReporting.h"
#include "mozilla/ProfilerMarkers.h"
#include "mozilla/ProfilerRunnable.h"
#include "mozilla/Sprintf.h"
#include "mozilla/StaticPrefs_javascript.h"
#include "mozilla/dom/DOMException.h"
#include "mozilla/dom/DOMJSClass.h"
#include "mozilla/dom/FinalizationRegistryBinding.h"
#include "mozilla/dom/CallbackObject.h"
#include "mozilla/dom/PromiseDebugging.h"
#include "mozilla/dom/PromiseRejectionEvent.h"
#include "mozilla/dom/PromiseRejectionEventBinding.h"
#include "mozilla/dom/RootedDictionary.h"
#include "mozilla/dom/ScriptSettings.h"
#include "mozilla/dom/UserActivation.h"
#include "mozilla/dom/WebTaskScheduler.h"
#include "nsContentUtils.h"
#include "nsCycleCollectionNoteRootCallback.h"
#include "nsCycleCollectionParticipant.h"
#include "nsCycleCollector.h"
#include "nsDOMJSUtils.h"
#include "nsDOMMutationObserver.h"
#include "nsJSUtils.h"
#include "nsPIDOMWindow.h"
#include "nsThread.h"
#include "nsThreadUtils.h"
#include "nsWrapperCache.h"
#include "xpcpublic.h"
using namespace mozilla;
using namespace mozilla::dom;
namespace mozilla {
CycleCollectedJSContext::CycleCollectedJSContext()
: mRuntime(nullptr),
mJSContext(nullptr),
mDoingStableStates(false),
mTargetedMicroTaskRecursionDepth(0),
mMicroTaskLevel(0),
mSyncOperations(0),
mSuppressionGeneration(0),
mDebuggerRecursionDepth(0),
mFinalizationRegistryCleanup(this) {
MOZ_COUNT_CTOR(CycleCollectedJSContext);
nsCOMPtr<nsIThread> thread = do_GetCurrentThread();
mOwningThread = thread.forget().downcast<nsThread>().take();
MOZ_RELEASE_ASSERT(mOwningThread);
}
CycleCollectedJSContext::~CycleCollectedJSContext() {
MOZ_COUNT_DTOR(CycleCollectedJSContext);
// If the allocation failed, here we are.
if (!mJSContext) {
return;
}
mRecycledPromiseJob = nullptr;
JS::SetHostCleanupFinalizationRegistryCallback(mJSContext, nullptr, nullptr);
JS_SetContextPrivate(mJSContext, nullptr);
MOZ_ASSERT(!JS::HasAnyMicroTasks(mJSContext));
mRuntime->SetContext(nullptr);
mRuntime->Shutdown(mJSContext);
// Last chance to process any events.
CleanupIDBTransactions(mBaseRecursionDepth);
MOZ_ASSERT(mPendingIDBTransactions.IsEmpty());
ProcessStableStateQueue();
MOZ_ASSERT(mStableStateEvents.IsEmpty());
// Clear mPendingException first, since it might be cycle collected.
mPendingException = nullptr;
MOZ_ASSERT(mDebuggerMicroTaskQueue.empty());
MOZ_ASSERT(mPendingMicroTaskRunnables.empty());
mUncaughtRejections.reset();
mConsumedRejections.reset();
mAboutToBeNotifiedRejectedPromises.Clear();
mPendingUnhandledRejections.Clear();
mFinalizationRegistryCleanup.Destroy();
JS_DestroyContext(mJSContext);
mJSContext = nullptr;
nsCycleCollector_forgetJSContext();
mozilla::dom::DestroyScriptSettings();
mOwningThread->SetScriptObserver(nullptr);
NS_RELEASE(mOwningThread);
delete mRuntime;
mRuntime = nullptr;
}
nsresult CycleCollectedJSContext::Initialize(JSRuntime* aParentRuntime,
uint32_t aMaxBytes) {
MOZ_ASSERT(!mJSContext);
mozilla::dom::InitScriptSettings();
mJSContext = JS_NewContext(aMaxBytes, aParentRuntime);
if (!mJSContext) {
return NS_ERROR_OUT_OF_MEMORY;
}
mRuntime = CreateRuntime(mJSContext);
mRuntime->SetContext(this);
mOwningThread->SetScriptObserver(this);
// The main thread has a base recursion depth of 0, workers of 1.
mBaseRecursionDepth = RecursionDepth();
NS_GetCurrentThread()->SetCanInvokeJS(true);
JS::SetJobQueue(mJSContext, this);
JS::SetPromiseRejectionTrackerCallback(mJSContext,
PromiseRejectionTrackerCallback, this);
mUncaughtRejections.init(mJSContext,
JS::GCVector<JSObject*, 0, js::SystemAllocPolicy>(
js::SystemAllocPolicy()));
mConsumedRejections.init(mJSContext,
JS::GCVector<JSObject*, 0, js::SystemAllocPolicy>(
js::SystemAllocPolicy()));
mFinalizationRegistryCleanup.Init();
// Cast to PerThreadAtomCache for dom::GetAtomCache(JSContext*).
JS_SetContextPrivate(mJSContext, static_cast<PerThreadAtomCache*>(this));
nsCycleCollector_registerJSContext(this);
return NS_OK;
}
/* static */
CycleCollectedJSContext* CycleCollectedJSContext::GetFor(JSContext* aCx) {
// Cast from void* matching JS_SetContextPrivate.
auto atomCache = static_cast<PerThreadAtomCache*>(JS_GetContextPrivate(aCx));
// Down cast.
return static_cast<CycleCollectedJSContext*>(atomCache);
}
size_t CycleCollectedJSContext::SizeOfExcludingThis(
MallocSizeOf aMallocSizeOf) const {
return 0;
}
class PromiseJobRunnable final : public CallbackObjectBase,
public MicroTaskRunnable {
public:
PromiseJobRunnable(JS::HandleObject aPromise, JS::HandleObject aCallback,
JS::HandleObject aCallbackGlobal,
JS::HandleObject aAllocationSite,
nsIGlobalObject* aIncumbentGlobal,
WebTaskSchedulingState* aSchedulingState)
: CallbackObjectBase(aCallback, aCallbackGlobal, aAllocationSite,
aIncumbentGlobal),
mPropagateUserInputEventHandling(false) {
MOZ_ASSERT(js::IsFunctionObject(aCallback));
InitInternal(aPromise, aSchedulingState);
}
void Reinit(JS::HandleObject aPromise, JS::HandleObject aCallback,
JS::HandleObject aCallbackGlobal,
JS::HandleObject aAllocationSite,
nsIGlobalObject* aIncumbentGlobal,
WebTaskSchedulingState* aSchedulingState) {
InitNoHold(aCallback, aCallbackGlobal, aAllocationSite, aIncumbentGlobal);
InitInternal(aPromise, aSchedulingState);
}
protected:
virtual ~PromiseJobRunnable() = default;
// This is modeled on the Call methods which WebIDL codegen creates for
// callback PromiseJobCallback = undefined();
MOZ_CAN_RUN_SCRIPT inline void Call() {
IgnoredErrorResult rv;
CallSetup s(this, rv, "promise callback", eReportExceptions);
if (!s.GetContext()) {
MOZ_ASSERT(rv.Failed());
return;
}
JS::Rooted<JS::Value> rval(s.GetContext());
JS::Rooted<JS::Value> callable(s.GetContext(), JS::ObjectValue(*mCallback));
if (!JS::Call(s.GetContext(), JS::UndefinedHandleValue, callable,
JS::HandleValueArray::empty(), &rval)) {
// This isn't really needed but it ensures that rv's value is updated
// consistently.
rv.NoteJSContextException(s.GetContext());
}
}
MOZ_CAN_RUN_SCRIPT
virtual void Run(AutoSlowOperation& aAso) override {
JSObject* callback = CallbackPreserveColor();
nsCOMPtr<nsIGlobalObject> global =
callback ? xpc::NativeGlobal(callback) : nullptr;
if (global && !global->IsDying()) {
// Propagate the user input event handling bit if needed.
AutoHandlingUserInputStatePusher userInpStatePusher(
mPropagateUserInputEventHandling);
// https://wicg.github.io/scheduling-apis/#sec-patches-html-hostcalljobcallback
// 2. Set event loop’s current scheduling state to
// callback.[[HostDefined]].[[SchedulingState]].
global->SetWebTaskSchedulingState(mSchedulingState);
Call();
// (The step after step 7): Set event loop’s current scheduling state to
// null
global->SetWebTaskSchedulingState(nullptr);
}
// Now that PromiseJobCallback is no longer needed, clear any pointers it
// contains. This removes any storebuffer entries associated with those
// pointers, which can cause problems by taking up memory and by triggering
// minor GCs. This otherwise would not happen until the next minor GC or
// cycle collection.
Reset();
// Clear also other explicit member variables of PromiseJobRunnable so that
// we can possibly reuse it.
mSchedulingState = nullptr;
mPropagateUserInputEventHandling = false;
if (CycleCollectedJSContext* ccjs = CycleCollectedJSContext::Get()) {
ccjs->mRecycledPromiseJob = this;
}
}
virtual bool Suppressed() override {
JSObject* callback = CallbackPreserveColor();
nsIGlobalObject* global = callback ? xpc::NativeGlobal(callback) : nullptr;
return global && global->IsInSyncOperation();
}
void TraceMicroTask(JSTracer* aTracer) override {
// We can trace CallbackObjectBase.
Trace(aTracer);
}
private:
void InitInternal(JS::HandleObject aPromise,
WebTaskSchedulingState* aSchedulingState) {
if (aPromise) {
JS::PromiseUserInputEventHandlingState state =
JS::GetPromiseUserInputEventHandlingState(aPromise);
mPropagateUserInputEventHandling =
state ==
JS::PromiseUserInputEventHandlingState::HadUserInteractionAtCreation;
}
mSchedulingState = aSchedulingState;
}
RefPtr<WebTaskSchedulingState> mSchedulingState;
bool mPropagateUserInputEventHandling;
};
enum { INCUMBENT_SETTING_SLOT, SCHEDULING_STATE_SLOT, HOSTDEFINED_DATA_SLOTS };
// Finalizer for instances of HostDefinedData.
void FinalizeHostDefinedData(JS::GCContext* gcx, JSObject* objSelf) {
JS::Value slotEvent = JS::GetReservedSlot(objSelf, SCHEDULING_STATE_SLOT);
if (slotEvent.isUndefined()) {
return;
}
WebTaskSchedulingState* schedulingState =
static_cast<WebTaskSchedulingState*>(slotEvent.toPrivate());
JS_SetReservedSlot(objSelf, SCHEDULING_STATE_SLOT, JS::UndefinedValue());
schedulingState->Release();
}
static const JSClassOps sHostDefinedData = {
nullptr /* addProperty */, nullptr /* delProperty */,
nullptr /* enumerate */, nullptr /* newEnumerate */,
nullptr /* resolve */, nullptr /* mayResolve */,
FinalizeHostDefinedData /* finalize */
};
// Implements `HostDefined` in https://html.spec.whatwg.org/#hostmakejobcallback
static const JSClass sHostDefinedDataClass = {
"HostDefinedData",
JSCLASS_HAS_RESERVED_SLOTS(HOSTDEFINED_DATA_SLOTS) |
JSCLASS_FOREGROUND_FINALIZE,
&sHostDefinedData};
bool CycleCollectedJSContext::getHostDefinedGlobal(
JSContext* aCx, JS::MutableHandle<JSObject*> out) const {
nsIGlobalObject* global = mozilla::dom::GetIncumbentGlobal();
if (!global) {
return true;
}
out.set(global->GetGlobalJSObject());
return true;
}
bool CycleCollectedJSContext::getHostDefinedData(
JSContext* aCx, JS::MutableHandle<JSObject*> aData) const {
nsIGlobalObject* global = mozilla::dom::GetIncumbentGlobal();
if (!global) {
aData.set(nullptr);
return true;
}
JS::Rooted<JSObject*> incumbentGlobal(aCx, global->GetGlobalJSObject());
if (!incumbentGlobal) {
aData.set(nullptr);
return true;
}
JSAutoRealm ar(aCx, incumbentGlobal);
JS::Rooted<JSObject*> objResult(aCx,
JS_NewObject(aCx, &sHostDefinedDataClass));
if (!objResult) {
aData.set(nullptr);
return false;
}
JS_SetReservedSlot(objResult, INCUMBENT_SETTING_SLOT,
JS::ObjectValue(*incumbentGlobal));
if (mozilla::dom::WebTaskSchedulingState* schedulingState =
mozilla::dom::GetWebTaskSchedulingState()) {
schedulingState->AddRef();
JS_SetReservedSlot(objResult, SCHEDULING_STATE_SLOT,
JS::PrivateValue(schedulingState));
}
aData.set(objResult);
return true;
}
bool CycleCollectedJSContext::enqueuePromiseJob(
JSContext* aCx, JS::Handle<JSObject*> aPromise, JS::Handle<JSObject*> aJob,
JS::Handle<JSObject*> aAllocationSite,
JS::Handle<JSObject*> hostDefinedData) {
MOZ_ASSERT(aCx == Context());
MOZ_ASSERT(Get() == this);
MOZ_ASSERT(!StaticPrefs::javascript_options_use_js_microtask_queue());
nsIGlobalObject* global = nullptr;
WebTaskSchedulingState* schedulingState = nullptr;
if (hostDefinedData) {
MOZ_RELEASE_ASSERT(JS::GetClass(hostDefinedData.get()) ==
&sHostDefinedDataClass);
JS::Value incumbentGlobal =
JS::GetReservedSlot(hostDefinedData.get(), INCUMBENT_SETTING_SLOT);
// hostDefinedData is only created when incumbent global exists.
MOZ_ASSERT(incumbentGlobal.isObject());
global = xpc::NativeGlobal(&incumbentGlobal.toObject());
JS::Value state =
JS::GetReservedSlot(hostDefinedData.get(), SCHEDULING_STATE_SLOT);
if (!state.isUndefined()) {
schedulingState = static_cast<WebTaskSchedulingState*>(state.toPrivate());
}
} else {
// There are two possible causes for hostDefinedData to be missing.
// 1. It's optimized out, the SpiderMonkey expects the embedding to
// retrieve it on their own.
// 2. It's the special case for debugger usage.
global = mozilla::dom::GetIncumbentGlobal();
schedulingState = mozilla::dom::GetWebTaskSchedulingState();
}
JS::RootedObject jobGlobal(aCx, JS::CurrentGlobalOrNull(aCx));
RefPtr<PromiseJobRunnable> runnable;
if (mRecycledPromiseJob) {
runnable = mRecycledPromiseJob.forget();
runnable->Reinit(aPromise, aJob, jobGlobal, aAllocationSite, global,
schedulingState);
} else {
runnable = new PromiseJobRunnable(aPromise, aJob, jobGlobal,
aAllocationSite, global, schedulingState);
}
DispatchToMicroTask(runnable.forget());
return true;
}
// Used only by the SpiderMonkey Debugger API, and even then only via
// JS::AutoDebuggerJobQueueInterruption, to ensure that the debuggee's queue is
// not affected; see comments in js/public/Promise.h.
void CycleCollectedJSContext::runJobs(JSContext* aCx) {
MOZ_ASSERT(aCx == Context());
MOZ_ASSERT(Get() == this);
PerformMicroTaskCheckPoint();
}
bool CycleCollectedJSContext::empty() const {
// MG:XXX: This is debug only and only used by
// ~AutoDebuggerJobQueueInterruption; probably can be removed eventually.
// This is our override of JS::JobQueue::empty. Since that interface is only
// concerned with the ordinary microtask queue, not the debugger microtask
// queue, we only report on the former.
return mPendingMicroTaskRunnables.empty();
}
MicroTaskRunnable* MustConsumeMicroTask::MaybeUnwrapTaskToRunnable() const {
if (!IsJSMicroTask()) {
void* nonJSTask = mMicroTask.toPrivate();
MicroTaskRunnable* task = reinterpret_cast<MicroTaskRunnable*>(nonJSTask);
return task;
}
return nullptr;
}
already_AddRefed<MicroTaskRunnable>
MustConsumeMicroTask::MaybeConsumeAsOwnedRunnable() {
MOZ_ASSERT(!IsConsumed(), "Attempting to consume an already-consumed task");
MicroTaskRunnable* mtr = MaybeUnwrapTaskToRunnable();
if (!mtr) {
return nullptr;
}
mMicroTask.setUndefined();
return already_AddRefed(mtr);
}
// Preserve a debuggee's microtask queue while it is interrupted by the
// debugger. See the comments for JS::AutoDebuggerJobQueueInterruption.
class CycleCollectedJSContext::SavedMicroTaskQueue
: public JS::JobQueue::SavedJobQueue {
public:
explicit SavedMicroTaskQueue(CycleCollectedJSContext* ccjs) : ccjs(ccjs) {
ccjs->mDebuggerRecursionDepth++;
if (StaticPrefs::javascript_options_use_js_microtask_queue()) {
mSavedQueue = JS::SaveMicroTaskQueue(ccjs->Context());
} else {
ccjs->mPendingMicroTaskRunnables.swap(mQueue);
}
}
~SavedMicroTaskQueue() {
// The JS Debugger attempts to maintain the invariant that microtasks which
// occur durring debugger operation are completely flushed from the task
// queue before returning control to the debuggee, in order to avoid
// micro-tasks generated during debugging from interfering with regular
// operation.
//
// While the vast majority of microtasks can be reliably flushed,
// synchronous operations (see nsAutoSyncOperation) such as printing and
// alert diaglogs suppress the execution of some microtasks.
//
// When PerformMicroTaskCheckpoint is run while microtasks are suppressed,
// any suppressed microtasks are gathered into a new SuppressedMicroTasks
// runnable, which is enqueued on exit from PerformMicroTaskCheckpoint. As a
// result, AutoDebuggerJobQueueInterruption::runJobs is not able to
// correctly guarantee that the microtask queue is totally empty in the
// presence of sync operations.
//
// Previous versions of this code release-asserted that the queue was empty,
// causing user observable crashes (Bug 1849675). To avoid this, we instead
// choose to move suspended microtasks from the SavedMicroTaskQueue to the
// main microtask queue in this destructor. This means that jobs enqueued
// during synchnronous events under debugger control may produce events
// which run outside the debugger, but this is viewed as strictly
// preferrable to crashing.
MOZ_RELEASE_ASSERT(ccjs->mPendingMicroTaskRunnables.size() <= 1);
MOZ_RELEASE_ASSERT(ccjs->mDebuggerRecursionDepth);
if (StaticPrefs::javascript_options_use_js_microtask_queue()) {
JSContext* cx = ccjs->Context();
JS::Rooted<MustConsumeMicroTask> suppressedTasks(cx);
MOZ_ASSERT(JS::GetRegularMicroTaskCount(cx) <= 1);
if (JS::HasRegularMicroTasks(cx)) {
suppressedTasks = DequeueNextRegularMicroTask(cx);
MOZ_ASSERT(suppressedTasks.get().MaybeUnwrapTaskToRunnable() ==
ccjs->mSuppressedMicroTaskList);
}
MOZ_RELEASE_ASSERT(!JS::HasRegularMicroTasks(cx));
JS::RestoreMicroTaskQueue(cx, std::move(mSavedQueue));
if (suppressedTasks.get()) {
EnqueueMicroTask(cx,
suppressedTasks.get().MaybeConsumeAsOwnedRunnable());
}
} else {
MOZ_RELEASE_ASSERT(ccjs->mPendingMicroTaskRunnables.size() <= 1);
RefPtr<MicroTaskRunnable> maybeSuppressedTasks;
// Handle the case where there is a SuppressedMicroTask still in the
// queue.
if (!ccjs->mPendingMicroTaskRunnables.empty()) {
maybeSuppressedTasks = ccjs->mPendingMicroTaskRunnables.front();
ccjs->mPendingMicroTaskRunnables.pop_front();
}
MOZ_RELEASE_ASSERT(ccjs->mPendingMicroTaskRunnables.empty());
ccjs->mPendingMicroTaskRunnables.swap(mQueue);
// Re-enqueue the suppressed task now that we've put the original
// microtask queue back.
if (maybeSuppressedTasks) {
ccjs->mPendingMicroTaskRunnables.push_back(maybeSuppressedTasks);
}
}
ccjs->mDebuggerRecursionDepth--;
}
private:
CycleCollectedJSContext* ccjs;
std::deque<RefPtr<MicroTaskRunnable>> mQueue;
js::UniquePtr<JS::SavedMicroTaskQueue> mSavedQueue;
};
js::UniquePtr<JS::JobQueue::SavedJobQueue>
CycleCollectedJSContext::saveJobQueue(JSContext* cx) {
auto saved = js::MakeUnique<SavedMicroTaskQueue>(this);
if (!saved) {
// When MakeUnique's allocation fails, the SavedMicroTaskQueue constructor
// is never called, so mPendingMicroTaskRunnables is still initialized.
JS_ReportOutOfMemory(cx);
return nullptr;
}
return saved;
}
/* static */
void CycleCollectedJSContext::PromiseRejectionTrackerCallback(
JSContext* aCx, bool aMutedErrors, JS::HandleObject aPromise,
JS::PromiseRejectionHandlingState state, void* aData) {
CycleCollectedJSContext* self = static_cast<CycleCollectedJSContext*>(aData);
MOZ_ASSERT(aCx == self->Context());
MOZ_ASSERT(Get() == self);
// TODO: Bug 1549351 - Promise rejection event should not be sent for
// cross-origin scripts
PromiseArray& aboutToBeNotified = self->mAboutToBeNotifiedRejectedPromises;
PromiseHashtable& unhandled = self->mPendingUnhandledRejections;
uint64_t promiseID = JS::GetPromiseID(aPromise);
if (state == JS::PromiseRejectionHandlingState::Unhandled) {
PromiseDebugging::AddUncaughtRejection(aPromise);
if (!aMutedErrors) {
RefPtr<Promise> promise =
Promise::CreateFromExisting(xpc::NativeGlobal(aPromise), aPromise);
aboutToBeNotified.AppendElement(promise);
unhandled.InsertOrUpdate(promiseID, std::move(promise));
}
} else {
PromiseDebugging::AddConsumedRejection(aPromise);
for (size_t i = 0; i < aboutToBeNotified.Length(); i++) {
if (aboutToBeNotified[i] &&
aboutToBeNotified[i]->PromiseObj() == aPromise) {
// To avoid large amounts of memmoves, we don't shrink the vector
// here. Instead, we filter out nullptrs when iterating over the
// vector later.
aboutToBeNotified[i] = nullptr;
DebugOnly<bool> isFound = unhandled.Remove(promiseID);
MOZ_ASSERT(isFound);
return;
}
}
RefPtr<Promise> promise;
unhandled.Remove(promiseID, getter_AddRefs(promise));
if (!promise && !aMutedErrors) {
nsIGlobalObject* global = xpc::NativeGlobal(aPromise);
if (nsCOMPtr<EventTarget> owner = do_QueryInterface(global)) {
RootedDictionary<PromiseRejectionEventInit> init(aCx);
if (RefPtr<Promise> newPromise =
Promise::CreateFromExisting(global, aPromise)) {
init.mPromise = newPromise->PromiseObj();
}
init.mReason = JS::GetPromiseResult(aPromise);
RefPtr<PromiseRejectionEvent> event =
PromiseRejectionEvent::Constructor(owner, u"rejectionhandled"_ns,
init);
RefPtr<AsyncEventDispatcher> asyncDispatcher =
new AsyncEventDispatcher(owner, event.forget());
asyncDispatcher->PostDOMEvent();
}
}
}
}
already_AddRefed<Exception> CycleCollectedJSContext::GetPendingException()
const {
MOZ_ASSERT(mJSContext);
nsCOMPtr<Exception> out = mPendingException;
return out.forget();
}
void CycleCollectedJSContext::SetPendingException(Exception* aException) {
MOZ_ASSERT(mJSContext);
mPendingException = aException;
}
std::deque<RefPtr<MicroTaskRunnable>>&
CycleCollectedJSContext::GetMicroTaskQueue() {
MOZ_ASSERT(mJSContext);
MOZ_ASSERT(!StaticPrefs::javascript_options_use_js_microtask_queue());
return mPendingMicroTaskRunnables;
}
std::deque<RefPtr<MicroTaskRunnable>>&
CycleCollectedJSContext::GetDebuggerMicroTaskQueue() {
MOZ_ASSERT(mJSContext);
MOZ_ASSERT(!StaticPrefs::javascript_options_use_js_microtask_queue());
return mDebuggerMicroTaskQueue;
}
void CycleCollectedJSContext::TraceMicroTasks(JSTracer* aTracer) {
for (MicroTaskRunnable* mt : mMicrotasksToTrace) {
mt->TraceMicroTask(aTracer);
}
}
void CycleCollectedJSContext::ProcessStableStateQueue() {
MOZ_ASSERT(mJSContext);
MOZ_RELEASE_ASSERT(!mDoingStableStates);
mDoingStableStates = true;
// When run, one event can add another event to the mStableStateEvents, as
// such you can't use iterators here.
for (uint32_t i = 0; i < mStableStateEvents.Length(); ++i) {
nsCOMPtr<nsIRunnable> event = std::move(mStableStateEvents[i]);
AUTO_PROFILE_FOLLOWING_RUNNABLE(event);
event->Run();
}
mStableStateEvents.Clear();
mDoingStableStates = false;
}
void CycleCollectedJSContext::CleanupIDBTransactions(uint32_t aRecursionDepth) {
MOZ_ASSERT(mJSContext);
MOZ_RELEASE_ASSERT(!mDoingStableStates);
mDoingStableStates = true;
nsTArray<PendingIDBTransactionData> localQueue =
std::move(mPendingIDBTransactions);
localQueue.RemoveLastElements(
localQueue.end() -
std::remove_if(localQueue.begin(), localQueue.end(),
[aRecursionDepth](PendingIDBTransactionData& data) {
if (data.mRecursionDepth != aRecursionDepth) {
return false;
}
{
nsCOMPtr<nsIRunnable> transaction =
std::move(data.mTransaction);
transaction->Run();
}
return true;
}));
// If mPendingIDBTransactions has events in it now, they were added from
// something we called, so they belong at the end of the queue.
localQueue.AppendElements(std::move(mPendingIDBTransactions));
mPendingIDBTransactions = std::move(localQueue);
mDoingStableStates = false;
}
void CycleCollectedJSContext::BeforeProcessTask(bool aMightBlock) {
// If ProcessNextEvent was called during a microtask callback, we
// must process any pending microtasks before blocking in the event loop,
// otherwise we may deadlock until an event enters the queue later.
if (aMightBlock && PerformMicroTaskCheckPoint()) {
// If any microtask was processed, we post a dummy event in order to
// force the ProcessNextEvent call not to block. This is required
// to support nested event loops implemented using a pattern like
// "while (condition) thread.processNextEvent(true)", in case the
// condition is triggered here by a Promise "then" callback.
NS_DispatchToMainThread(new Runnable("BeforeProcessTask"));
}
}
void CycleCollectedJSContext::AfterProcessTask(uint32_t aRecursionDepth) {
MOZ_ASSERT(mJSContext);
// See HTML 6.1.4.2 Processing model
// Step 4.1: Execute microtasks.
PerformMicroTaskCheckPoint();
// Step 4.2 Execute any events that were waiting for a stable state.
ProcessStableStateQueue();
// This should be a fast test so that it won't affect the next task
// processing.
MaybePokeGC();
mRuntime->FinalizeDeferredThings(CycleCollectedJSRuntime::FinalizeNow);
nsCycleCollector_maybeDoDeferredDeletion();
}
void CycleCollectedJSContext::AfterProcessMicrotasks() {
MOZ_ASSERT(mJSContext);
// Notify unhandled promise rejections:
// https://html.spec.whatwg.org/multipage/webappapis.html#notify-about-rejected-promises
if (mAboutToBeNotifiedRejectedPromises.Length()) {
RefPtr<NotifyUnhandledRejections> runnable = new NotifyUnhandledRejections(
std::move(mAboutToBeNotifiedRejectedPromises));
NS_DispatchToCurrentThread(runnable);
}
// Cleanup Indexed Database transactions:
// https://html.spec.whatwg.org/multipage/webappapis.html#perform-a-microtask-checkpoint
CleanupIDBTransactions(RecursionDepth());
// Clear kept alive objects in JS WeakRef.
// https://whatpr.org/html/4571/webappapis.html#perform-a-microtask-checkpoint
//
// ECMAScript implementations are expected to call ClearKeptObjects when
// a synchronous sequence of ECMAScript execution completes.
//
// https://tc39.es/proposal-weakrefs/#sec-clear-kept-objects
JS::ClearKeptObjects(mJSContext);
}
void CycleCollectedJSContext::MaybePokeGC() {
// Worker-compatible check to see if we want to do an idle-time minor
// GC.
class IdleTimeGCTaskRunnable : public mozilla::IdleRunnable {
public:
using mozilla::IdleRunnable::IdleRunnable;
public:
IdleTimeGCTaskRunnable() : IdleRunnable("IdleTimeGCTask") {}
NS_IMETHOD Run() override {
CycleCollectedJSRuntime* ccrt = CycleCollectedJSRuntime::Get();
if (ccrt) {
ccrt->RunIdleTimeGCTask();
}
return NS_OK;
}
};
if (Runtime()->IsIdleGCTaskNeeded()) {
nsCOMPtr<nsIRunnable> gc_task = new IdleTimeGCTaskRunnable();
NS_DispatchToCurrentThreadQueue(gc_task.forget(), EventQueuePriority::Idle);
Runtime()->SetPendingIdleGCTask();
}
}
uint32_t CycleCollectedJSContext::RecursionDepth() const {
// Debugger interruptions are included in the recursion depth so that debugger
// microtask checkpoints do not run IDB transactions which were initiated
// before the interruption.
return mOwningThread->RecursionDepth() + mDebuggerRecursionDepth;
}
void CycleCollectedJSContext::RunInStableState(
already_AddRefed<nsIRunnable>&& aRunnable) {
MOZ_ASSERT(mJSContext);
nsCOMPtr<nsIRunnable> runnable = std::move(aRunnable);
PROFILER_MARKER("CycleCollectedJSContext::RunInStableState", OTHER, {},
FlowMarker, Flow::FromPointer(runnable.get()));
mStableStateEvents.AppendElement(std::move(runnable));
}
void CycleCollectedJSContext::AddPendingIDBTransaction(
already_AddRefed<nsIRunnable>&& aTransaction) {
MOZ_ASSERT(mJSContext);
PendingIDBTransactionData data;
data.mTransaction = aTransaction;
MOZ_ASSERT(mOwningThread);
data.mRecursionDepth = RecursionDepth();
// There must be an event running to get here.
#ifndef MOZ_WIDGET_COCOA
MOZ_ASSERT(data.mRecursionDepth > mBaseRecursionDepth);
#else
// XXX bug 1261143
// Recursion depth should be greater than mBaseRecursionDepth,
// or the runnable will stay in the queue forever.
if (data.mRecursionDepth <= mBaseRecursionDepth) {
data.mRecursionDepth = mBaseRecursionDepth + 1;
}
#endif
mPendingIDBTransactions.AppendElement(std::move(data));
}
// MicroTaskRunnables and the JS MicroTask Queue:
//
// The following describes our refcounting scheme:
//
// - A runnable wrapped in a JS::Value (RunnableToValue) is always created from
// an already_AddRefed (so has a positive refcount) and it holds onto that ref
// count until it is finally eventually unwrapped to an owning reference
// (MaybeUnwrapTaskToOwnedRunnable)
//
// - This means runnables in the queue have their refcounts stay above zero for
// the duration of the time they are in the queue.
JS::MicroTask RunnableToMicroTask(
already_AddRefed<MicroTaskRunnable>& aRunnable) {
JS::MicroTask v;
auto* r = aRunnable.take();
MOZ_ASSERT(r);
v.setPrivate(r);
return v;
}
bool EnqueueMicroTask(JSContext* aCx,
already_AddRefed<MicroTaskRunnable> aRunnable) {
MOZ_ASSERT(StaticPrefs::javascript_options_use_js_microtask_queue());
JS::MicroTask v = RunnableToMicroTask(aRunnable);
return JS::EnqueueMicroTask(aCx, v);
}
bool EnqueueDebugMicroTask(JSContext* aCx,
already_AddRefed<MicroTaskRunnable> aRunnable) {
MOZ_ASSERT(StaticPrefs::javascript_options_use_js_microtask_queue());
JS::MicroTask v = RunnableToMicroTask(aRunnable);
return JS::EnqueueDebugMicroTask(aCx, v);
}
void CycleCollectedJSContext::DispatchToMicroTask(
already_AddRefed<MicroTaskRunnable> aRunnable) {
RefPtr<MicroTaskRunnable> runnable(aRunnable);
MOZ_ASSERT(NS_IsMainThread());
JS::JobQueueMayNotBeEmpty(Context());
PROFILER_MARKER_FLOW_ONLY("CycleCollectedJSContext::DispatchToMicroTask",
OTHER, {}, FlowMarker,
Flow::FromPointer(runnable.get()));
LogMicroTaskRunnable::LogDispatch(runnable.get());
if (StaticPrefs::javascript_options_use_js_microtask_queue()) {
EnqueueMicroTask(Context(), runnable.forget());
} else {
if (!runnable->isInList()) {
// A recycled object may be in the list already.
mMicrotasksToTrace.insertBack(runnable);
}
mPendingMicroTaskRunnables.push_back(std::move(runnable));
}
}
class AsyncMutationHandler final : public mozilla::Runnable {
public:
AsyncMutationHandler() : mozilla::Runnable("AsyncMutationHandler") {}
// MOZ_CAN_RUN_SCRIPT_BOUNDARY until Runnable::Run is MOZ_CAN_RUN_SCRIPT. See
// bug 1535398.
MOZ_CAN_RUN_SCRIPT_BOUNDARY
NS_IMETHOD Run() override {
CycleCollectedJSContext* ccjs = CycleCollectedJSContext::Get();
if (ccjs) {
ccjs->PerformMicroTaskCheckPoint();
}
return NS_OK;
}
};
SuppressedMicroTasks::SuppressedMicroTasks(CycleCollectedJSContext* aContext)
: mContext(aContext),
mSuppressionGeneration(aContext->mSuppressionGeneration) {}
bool SuppressedMicroTasks::Suppressed() {
if (mSuppressionGeneration == mContext->mSuppressionGeneration) {
return true;
}
for (std::deque<RefPtr<MicroTaskRunnable>>::reverse_iterator it =
mSuppressedMicroTaskRunnables.rbegin();
it != mSuppressedMicroTaskRunnables.rend(); ++it) {
mContext->GetMicroTaskQueue().push_front(*it);
}
mContext->mSuppressedMicroTasks = nullptr;
return false;
}
LazyLogModule gLog("mtq");
SuppressedMicroTaskList::SuppressedMicroTaskList(
CycleCollectedJSContext* aContext)
: mContext(aContext),
mSuppressionGeneration(aContext->mSuppressionGeneration),
mSuppressedMicroTaskRunnables(aContext->Context(), aContext->Context()) {}
bool SuppressedMicroTaskList::Suppressed() {
if (mSuppressionGeneration == mContext->mSuppressionGeneration) {
return true;
}
MOZ_ASSERT(StaticPrefs::javascript_options_use_js_microtask_queue());
MOZ_ASSERT(mContext->mSuppressedMicroTaskList == this);
MOZ_LOG_FMT(gLog, LogLevel::Verbose, "Prepending %zu suppressed microtasks",
mSuppressedMicroTaskRunnables.get().length());
for (size_t i = mSuppressedMicroTaskRunnables.get().length(); i > 0; i--) {
mSuppressedMicroTaskRunnables.get()[i - 1].ConsumeByPrependToQueue(
mContext->Context());
}
mSuppressedMicroTaskRunnables.get().clear();
mContext->mSuppressedMicroTaskList = nullptr;
// Return false: We are -not- ourselves suppressed, so,
// in PerformMicroTasks we will end up in the branch where
// we can drop the final refcount.
return false;
}
SuppressedMicroTaskList::~SuppressedMicroTaskList() {
MOZ_ASSERT(mContext->mSuppressedMicroTaskList == nullptr);
MOZ_ASSERT(mSuppressedMicroTaskRunnables.get().empty());
};
// Run a microtask. Handles both non-JS (enqueued MicroTaskRunnables) and JS
// microtasks.
static void MOZ_CAN_RUN_SCRIPT RunMicroTask(
JSContext* aCx, JS::MutableHandle<MustConsumeMicroTask> aMicroTask) {
LogMustConsumeMicroTask::Run log(&aMicroTask.get());
if (RefPtr<MicroTaskRunnable> runnable =
aMicroTask.get().MaybeConsumeAsOwnedRunnable()) {
AUTO_PROFILER_TERMINATING_FLOW_MARKER_FLOW_ONLY(
"RunMicroTaskRunnable", OTHER, Flow::FromPointer(runnable.get()));
AutoSlowOperation aso;
runnable->Run(aso);
return;
}
// Avoid the overhead of GetFlowIdFromJSMicroTask in the common case
// of not having the profiler enabled.
mozilla::Maybe<AutoProfilerTerminatingFlowMarkerFlowOnly> terminatingMarker;
if (profiler_is_active_and_unpaused() &&
profiler_feature_active(ProfilerFeature::Flows)) {
uint64_t flowId = 0;
// Since this only returns false when the microtask won't run (dead wrapper)
// we can elide the marker if it does fail.
if (aMicroTask.get().GetFlowIdFromJSMicroTask(&flowId)) {
terminatingMarker.emplace("RunMicroTask",
mozilla::baseprofiler::category::OTHER,
Flow::ProcessScoped(flowId));
}
}
JS::Rooted<JSObject*> maybePromise(
aCx, aMicroTask.get().MaybeGetPromiseFromJSMicroTask());
auto state = maybePromise
? JS::GetPromiseUserInputEventHandlingState(maybePromise)
: JS::PromiseUserInputEventHandlingState::DontCare;
bool propagate =
state ==
JS::PromiseUserInputEventHandlingState::HadUserInteractionAtCreation;
AutoHandlingUserInputStatePusher userInputStateSwitcher(propagate);
JS::RootedTuple<JSObject*, JSObject*, JSObject*> roots(aCx);
JS::RootedField<JSObject*, 0> callbackGlobal(
roots, aMicroTask.get().GetExecutionGlobalFromJSMicroTask(aCx));
JS::RootedField<JSObject*, 1> hostDefinedData(
roots, aMicroTask.get().MaybeGetHostDefinedDataFromJSMicroTask());
JS::RootedField<JSObject*, 2> allocStack(
roots, aMicroTask.get().MaybeGetAllocationSiteFromJSMicroTask());
nsIGlobalObject* incumbentGlobal = nullptr;
WebTaskSchedulingState* schedulingState = nullptr;
if (hostDefinedData) {
MOZ_RELEASE_ASSERT(JS::GetClass(hostDefinedData.get()) ==
&sHostDefinedDataClass);
JS::Value incumbentGlobalVal =
JS::GetReservedSlot(hostDefinedData, INCUMBENT_SETTING_SLOT);
// hostDefinedData is only created when incumbent global exists.
MOZ_ASSERT(incumbentGlobalVal.isObject());
incumbentGlobal = xpc::NativeGlobal(&incumbentGlobalVal.toObject());
JS::Value state =
JS::GetReservedSlot(hostDefinedData, SCHEDULING_STATE_SLOT);
if (!state.isUndefined()) {
schedulingState = static_cast<WebTaskSchedulingState*>(state.toPrivate());
}
} else {
// There are two possible causes for hostDefinedData to be missing.
// 1. It's optimized out, the SpiderMonkey expects the embedding to
// retrieve it on their own.
// 2. It's the special case for debugger usage.
//
// MG:XXX: The handling of incumbent global can be made appreciably more
// harmonious through co-evolution with the JS engine, but I have tried to
// avoid doing too much divergence for now.
JSObject* incumbentGlobalJS =
aMicroTask.get().MaybeGetHostDefinedGlobalFromJSMicroTask();
MOZ_ASSERT_IF(incumbentGlobalJS, !js::IsWrapper(incumbentGlobalJS));
if (incumbentGlobalJS) {
incumbentGlobal = xpc::NativeGlobal(incumbentGlobalJS);
}
}
if (incumbentGlobal) {
// https://wicg.github.io/scheduling-apis/#sec-patches-html-hostcalljobcallback
// 2. Set event loop’s current scheduling state to
// callback.[[HostDefined]].[[SchedulingState]].
incumbentGlobal->SetWebTaskSchedulingState(schedulingState);
}
// MG:XXX: It would be worth revisiting the design of CallSetup here to try
// and reduce JS microtask overheads that turn out to be superflous. For
// example, in at least some circumstances we end up having multiple realm
// changes here that don't need to happen.
//
// Similarly, IgnoredErrorResult!
IgnoredErrorResult rv;
CallSetup setup(callbackGlobal, incumbentGlobal, allocStack, rv,
"promise callback" /* Some tests care about this string. */,
dom::CallbackObject::eReportExceptions);
if (!setup.GetContext()) {
// We can't run, so we must ignore here!
aMicroTask.get().IgnoreJSMicroTask();
return;
}
// Note: We're dropping the return value on the floor here, however
// cleanup and exception handling are done as part of the CallSetup
// destructor if necessary.
(void)aMicroTask.get().RunAndConsumeJSMicroTask(aCx);
// (The step after step 7): Set event loop’s current scheduling
// state to null
if (incumbentGlobal) {
incumbentGlobal->SetWebTaskSchedulingState(nullptr);
}
}
MustConsumeMicroTask DequeueNextMicroTask(JSContext* aCx) {
return MustConsumeMicroTask(JS::DequeueNextMicroTask(aCx));
}
MustConsumeMicroTask DequeueNextRegularMicroTask(JSContext* aCx) {
return MustConsumeMicroTask(JS::DequeueNextRegularMicroTask(aCx));
}
MustConsumeMicroTask DequeueNextDebuggerMicroTask(JSContext* aCx) {
return MustConsumeMicroTask(JS::DequeueNextDebuggerMicroTask(aCx));
}
static bool IsSuppressed(JSContext* aCx,
JS::Handle<MustConsumeMicroTask> task) {
if (task.get().IsJSMicroTask()) {
JSObject* jsGlobal = task.get().GetExecutionGlobalFromJSMicroTask(aCx);
if (!jsGlobal) {
return false;
}
nsIGlobalObject* global = xpc::NativeGlobal(jsGlobal);
return global && global->IsInSyncOperation();
}
MicroTaskRunnable* runnable = task.get().MaybeUnwrapTaskToRunnable();
// If it's not a JS microtask, it must be a MicroTaskRunnable,
// and so MaybeUnwrapTaskToRunnable must return non-null.
MOZ_ASSERT(runnable, "Unexpected task type");
return runnable->Suppressed();
}
bool CycleCollectedJSContext::PerformMicroTaskCheckPoint(bool aForce) {
MOZ_LOG_FMT(gLog, LogLevel::Verbose, "Called PerformMicroTaskCheckpoint");
JSContext* cx = Context();
if (StaticPrefs::javascript_options_use_js_microtask_queue()) {
// If we have no JSContext we are not capable of checking for
// nor running microtasks, and so simply return false early here.
if (!cx) {
return false;
}
if (!JS::HasAnyMicroTasks(cx)) {
MOZ_ASSERT(mDebuggerMicroTaskQueue.empty());
MOZ_ASSERT(mPendingMicroTaskRunnables.empty());
// Nothing to do, return early.
AfterProcessMicrotasks();
return false;
}
} else {
if (mPendingMicroTaskRunnables.empty() && mDebuggerMicroTaskQueue.empty()) {
AfterProcessMicrotasks();
// Nothing to do, return early.
return false;
}
}
uint32_t currentDepth = RecursionDepth();
if (mMicroTaskRecursionDepth && *mMicroTaskRecursionDepth >= currentDepth &&
!aForce) {
// We are already executing microtasks for the current recursion depth.
return false;
}
if (mTargetedMicroTaskRecursionDepth != 0 &&
mTargetedMicroTaskRecursionDepth + mDebuggerRecursionDepth !=
currentDepth) {
return false;
}
if (NS_IsMainThread() && !nsContentUtils::IsSafeToRunScript()) {
// Special case for main thread where DOM mutations may happen when
// it is not safe to run scripts.
nsContentUtils::AddScriptRunner(new AsyncMutationHandler());
return false;
}
mozilla::AutoRestore<Maybe<uint32_t>> restore(mMicroTaskRecursionDepth);
mMicroTaskRecursionDepth = Some(currentDepth);
AUTO_PROFILER_MARKER("Perform microtasks", JS);
bool didProcess = false;
AutoSlowOperation aso;
if (StaticPrefs::javascript_options_use_js_microtask_queue()) {
// Make sure we don't leak tasks into the Gecko MicroTask queues.
MOZ_ASSERT(mDebuggerMicroTaskQueue.empty());
MOZ_ASSERT(mPendingMicroTaskRunnables.empty());
MOZ_ASSERT(!mSuppressedMicroTasks);
JS::Rooted<MustConsumeMicroTask> job(cx);
while (JS::HasAnyMicroTasks(cx)) {
MOZ_ASSERT(mDebuggerMicroTaskQueue.empty());
MOZ_ASSERT(mPendingMicroTaskRunnables.empty());
job = DequeueNextMicroTask(cx);
// To avoid us accidentally re-enqueing a SuppressionMicroTaskList in
// itself, we determine here if the job is actually the suppression task
// list.
bool isSuppressionJob = mSuppressedMicroTaskList
? job.get().MaybeUnwrapTaskToRunnable() ==
mSuppressedMicroTaskList
: false;
// No need to check Suppressed if there aren't ongoing sync operations nor
// pending mSuppressedMicroTasks.s
if ((IsInSyncOperation() || mSuppressedMicroTaskList) &&
IsSuppressed(cx, job)) {
// Microtasks in worker shall never be suppressed.
// Otherwise, the micro tasks queue will be replaced later with
// all suppressed tasks in mDebuggerMicroTaskQueue unexpectedly.
MOZ_ASSERT(NS_IsMainThread());
JS::JobQueueMayNotBeEmpty(Context());
// To avoid re-enqueing a suppressed SuppressionMicroTaskList in itself.
if (!isSuppressionJob) {
if (!mSuppressedMicroTaskList) {
mSuppressedMicroTaskList = new SuppressedMicroTaskList(this);
}
mSuppressedMicroTaskList->mSuppressedMicroTaskRunnables.get().append(
std::move(job.get()));
} else {
// Consume the runnable & simultaneously drop a ref count.
RefPtr<MicroTaskRunnable> refToDrop(
job.get().MaybeConsumeAsOwnedRunnable());
MOZ_ASSERT(refToDrop);
}
} else {
// MG:XXX: It's sort of too bad that we can't handle the JobQueueIsEmpty
// note entirely within the JS engine, but in order to do that we'd need
// to move the suppressed micro task handling inside and that's more
// divergence than I would like.
if (!JS::HasAnyMicroTasks(cx) && !mSuppressedMicroTaskList) {
JS::JobQueueIsEmpty(Context());
}
didProcess = true;
RunMicroTask(cx, &job);
}
}
// Put back the suppressed microtasks so that they will be run later.
// Note, it is possible that we end up keeping these suppressed tasks around
// for some time, but no longer than spinning the event loop nestedly
// (sync XHR, alert, etc.)
if (mSuppressedMicroTaskList) {
// Like everywhere else, do_AddRef when enqueing. Then the refcount in the
// queue is 2; when ->Suppressed is called, mSuppressedMicroTaskList will
// be nulled out, dropping the refcount to 1, then when the conversion to
// owned happens, inside of RunMicroTask, the remaining ref will be
// dropped, and the code will be cleaned up.
//
// This should work generally, as if you re-enqueue the task list (we have
// no code to prevent this!) you'll just have more refs in the queue,
// all of which is good.
if (!EnqueueMicroTask(cx, do_AddRef(mSuppressedMicroTaskList))) {
MOZ_CRASH("Failed to re-enqueue suppressed microtask list");
}
}
} else {
for (;;) {
RefPtr<MicroTaskRunnable> runnable;
if (!mDebuggerMicroTaskQueue.empty()) {
runnable = std::move(mDebuggerMicroTaskQueue.front());
mDebuggerMicroTaskQueue.pop_front();
} else if (!mPendingMicroTaskRunnables.empty()) {
runnable = std::move(mPendingMicroTaskRunnables.front());
mPendingMicroTaskRunnables.pop_front();
} else {
break;
}
// No need to check Suppressed if there aren't ongoing sync operations nor
// pending mSuppressedMicroTasks.
if ((IsInSyncOperation() || mSuppressedMicroTasks) &&
runnable->Suppressed()) {
// Microtasks in worker shall never be suppressed.
// Otherwise, mPendingMicroTaskRunnables will be replaced later with
// all suppressed tasks in mDebuggerMicroTaskQueue unexpectedly.
MOZ_ASSERT(NS_IsMainThread());
JS::JobQueueMayNotBeEmpty(Context());
if (runnable != mSuppressedMicroTasks) {
if (!mSuppressedMicroTasks) {
mSuppressedMicroTasks = new SuppressedMicroTasks(this);
}
mSuppressedMicroTasks->mSuppressedMicroTaskRunnables.push_back(
runnable);
}
} else {
if (mPendingMicroTaskRunnables.empty() &&
mDebuggerMicroTaskQueue.empty() && !mSuppressedMicroTasks) {
JS::JobQueueIsEmpty(Context());
}
didProcess = true;
AUTO_PROFILER_TERMINATING_FLOW_MARKER_FLOW_ONLY(
"CycleCollectedJSContext::PerformMicroTaskCheckpoint", OTHER,
Flow::FromPointer(runnable.get()));
LogMicroTaskRunnable::Run log(runnable.get());
runnable->Run(aso);
runnable = nullptr;
}
}
// Put back the suppressed microtasks so that they will be run later.
// Note, it is possible that we end up keeping these suppressed tasks around
// for some time, but no longer than spinning the event loop nestedly
// (sync XHR, alert, etc.)
if (mSuppressedMicroTasks) {
mPendingMicroTaskRunnables.push_back(mSuppressedMicroTasks);
}
}
AfterProcessMicrotasks();
return didProcess;
}
void CycleCollectedJSContext::PerformDebuggerMicroTaskCheckpoint() {
// Don't do normal microtask handling checks here, since whoever is calling
// this method is supposed to know what they are doing.
JSContext* cx = Context();
if (StaticPrefs::javascript_options_use_js_microtask_queue()) {
while (JS::HasDebuggerMicroTasks(cx)) {
MOZ_ASSERT(mDebuggerMicroTaskQueue.empty());
MOZ_ASSERT(mPendingMicroTaskRunnables.empty());
JS::Rooted<MustConsumeMicroTask> job(cx);
job.set(DequeueNextDebuggerMicroTask(cx));
RunMicroTask(cx, &job);
}
} else {
MOZ_ASSERT(!JS::HasAnyMicroTasks(cx));
AutoSlowOperation aso;
for (;;) {
// For a debugger microtask checkpoint, we always use the debugger
// microtask queue.
std::deque<RefPtr<MicroTaskRunnable>>* microtaskQueue =
&GetDebuggerMicroTaskQueue();
if (microtaskQueue->empty()) {
break;
}
RefPtr<MicroTaskRunnable> runnable = std::move(microtaskQueue->front());
MOZ_ASSERT(runnable);
LogMicroTaskRunnable::Run log(runnable.get());
// This function can re-enter, so we remove the element before calling.
microtaskQueue->pop_front();
if (mPendingMicroTaskRunnables.empty() &&
mDebuggerMicroTaskQueue.empty()) {
JS::JobQueueIsEmpty(Context());
}
AUTO_PROFILER_TERMINATING_FLOW_MARKER_FLOW_ONLY(
"CycleCollectedJSContext::PerformDebuggerMicroTaskCheckPoint", OTHER,
Flow::FromPointer(runnable.get()));
runnable->Run(aso);
runnable = nullptr;
}
}
AfterProcessMicrotasks();
}
NS_IMETHODIMP CycleCollectedJSContext::NotifyUnhandledRejections::Run() {
for (size_t i = 0; i < mUnhandledRejections.Length(); ++i) {
CycleCollectedJSContext* cccx = CycleCollectedJSContext::Get();
NS_ENSURE_STATE(cccx);
RefPtr<Promise>& promise = mUnhandledRejections[i];
if (!promise) {
continue;
}
JS::RootingContext* cx = cccx->RootingCx();
JS::RootedObject promiseObj(cx, promise->PromiseObj());
MOZ_ASSERT(JS::IsPromiseObject(promiseObj));
// Only fire unhandledrejection if the promise is still not handled;
uint64_t promiseID = JS::GetPromiseID(promiseObj);
if (!JS::GetPromiseIsHandled(promiseObj)) {
if (nsCOMPtr<EventTarget> target =
do_QueryInterface(promise->GetParentObject())) {
RootedDictionary<PromiseRejectionEventInit> init(cx);
init.mPromise = promiseObj;
init.mReason = JS::GetPromiseResult(promiseObj);
init.mCancelable = true;
RefPtr<PromiseRejectionEvent> event =
PromiseRejectionEvent::Constructor(target, u"unhandledrejection"_ns,
init);
// We don't use the result of dispatching event here to check whether
// to report the Promise to console.
target->DispatchEvent(*event);
}
}
cccx = CycleCollectedJSContext::Get();
NS_ENSURE_STATE(cccx);
if (!JS::GetPromiseIsHandled(promiseObj)) {
DebugOnly<bool> isFound =
cccx->mPendingUnhandledRejections.Remove(promiseID);
MOZ_ASSERT(isFound);
}
// If a rejected promise is being handled in "unhandledrejection" event
// handler, it should be removed from the table in
// PromiseRejectionTrackerCallback.
MOZ_ASSERT(!cccx->mPendingUnhandledRejections.Lookup(promiseID));
}
return NS_OK;
}
nsresult CycleCollectedJSContext::NotifyUnhandledRejections::Cancel() {
CycleCollectedJSContext* cccx = CycleCollectedJSContext::Get();
NS_ENSURE_STATE(cccx);
for (size_t i = 0; i < mUnhandledRejections.Length(); ++i) {
RefPtr<Promise>& promise = mUnhandledRejections[i];
if (!promise) {
continue;
}
JS::RootedObject promiseObj(cccx->RootingCx(), promise->PromiseObj());
cccx->mPendingUnhandledRejections.Remove(JS::GetPromiseID(promiseObj));
}
return NS_OK;
}
#ifdef MOZ_EXECUTION_TRACING
void CycleCollectedJSContext::BeginExecutionTracingAsync() {
mOwningThread->Dispatch(NS_NewRunnableFunction(
"CycleCollectedJSContext::BeginExecutionTracingAsync", [] {
CycleCollectedJSContext* ccjs = CycleCollectedJSContext::Get();
if (ccjs) {
JS_TracerBeginTracing(ccjs->Context());
}
}));
}
void CycleCollectedJSContext::EndExecutionTracingAsync() {
mOwningThread->Dispatch(NS_NewRunnableFunction(
"CycleCollectedJSContext::EndExecutionTracingAsync", [] {
CycleCollectedJSContext* ccjs = CycleCollectedJSContext::Get();
if (ccjs) {
JS_TracerEndTracing(ccjs->Context());
}
}));
}
#else
void CycleCollectedJSContext::BeginExecutionTracingAsync() {}
void CycleCollectedJSContext::EndExecutionTracingAsync() {}
#endif
class FinalizationRegistryCleanup::CleanupRunnable
: public DiscardableRunnable {
public:
explicit CleanupRunnable(FinalizationRegistryCleanup* aCleanupWork)
: DiscardableRunnable("CleanupRunnable"), mCleanupWork(aCleanupWork) {}
// MOZ_CAN_RUN_SCRIPT_BOUNDARY until Runnable::Run is MOZ_CAN_RUN_SCRIPT. See
// bug 1535398.
MOZ_CAN_RUN_SCRIPT_BOUNDARY
NS_IMETHOD Run() override {
mCleanupWork->DoCleanup();
return NS_OK;
}
private:
FinalizationRegistryCleanup* mCleanupWork;
};
FinalizationRegistryCleanup::FinalizationRegistryCleanup(
CycleCollectedJSContext* aContext)
: mContext(aContext) {}
void FinalizationRegistryCleanup::Destroy() {
// This must happen before the CycleCollectedJSContext destructor calls
// JS_DestroyContext().
mCallbacks.reset();
}
void FinalizationRegistryCleanup::Init() {
JSContext* cx = mContext->Context();
mCallbacks.init(cx);
JS::SetHostCleanupFinalizationRegistryCallback(cx, QueueCallback, this);
}
/* static */
void FinalizationRegistryCleanup::QueueCallback(JSFunction* aDoCleanup,
JSObject* aHostDefinedData,
void* aData) {
FinalizationRegistryCleanup* cleanup =
static_cast<FinalizationRegistryCleanup*>(aData);
cleanup->QueueCallback(aDoCleanup, aHostDefinedData);
}
void FinalizationRegistryCleanup::QueueCallback(JSFunction* aDoCleanup,
JSObject* aHostDefinedData) {
bool firstCallback = mCallbacks.empty();
JSObject* incumbentGlobal = nullptr;
// Extract incumbentGlobal from aHostDefinedData.
if (aHostDefinedData) {
MOZ_RELEASE_ASSERT(JS::GetClass(aHostDefinedData) ==
&sHostDefinedDataClass);
JS::Value global =
JS::GetReservedSlot(aHostDefinedData, INCUMBENT_SETTING_SLOT);
incumbentGlobal = &global.toObject();
}
MOZ_ALWAYS_TRUE(mCallbacks.append(Callback{aDoCleanup, incumbentGlobal}));
if (firstCallback) {
RefPtr<CleanupRunnable> cleanup = new CleanupRunnable(this);
NS_DispatchToCurrentThread(cleanup.forget());
}
}
void FinalizationRegistryCleanup::DoCleanup() {
if (mCallbacks.empty()) {
return;
}
JS::RootingContext* cx = mContext->RootingCx();
JS::Rooted<CallbackVector> callbacks(cx);
std::swap(callbacks.get(), mCallbacks.get());
for (const Callback& callback : callbacks) {
JS::ExposeObjectToActiveJS(
JS_GetFunctionObject(callback.mCallbackFunction));
JS::ExposeObjectToActiveJS(callback.mIncumbentGlobal);
JS::RootedObject functionObj(
cx, JS_GetFunctionObject(callback.mCallbackFunction));
JS::RootedObject globalObj(cx, JS::GetNonCCWObjectGlobal(functionObj));
nsIGlobalObject* incumbentGlobal =
xpc::NativeGlobal(callback.mIncumbentGlobal);
if (!incumbentGlobal) {
continue;
}
RefPtr<FinalizationRegistryCleanupCallback> cleanupCallback(
new FinalizationRegistryCleanupCallback(functionObj, globalObj, nullptr,
incumbentGlobal));
nsIGlobalObject* global =
xpc::NativeGlobal(cleanupCallback->CallbackPreserveColor());
if (global) {
cleanupCallback->Call("FinalizationRegistryCleanup::DoCleanup");
}
}
}
void FinalizationRegistryCleanup::Callback::trace(JSTracer* trc) {
JS::TraceRoot(trc, &mCallbackFunction, "mCallbackFunction");
JS::TraceRoot(trc, &mIncumbentGlobal, "mIncumbentGlobal");
}
} // namespace mozilla
|