Skip to content

Commit c670265

Browse files
committed
Revert "Clean up host pointers in level 2 of clean-up flag (#21112)"
This reverts commit 8ed0c85. The host tree is a cyclical structure. Leaking a single DOM node can retain a large amount of memory. React-managed DOM nodes also point back to a fiber tree. Perf testing suggests that disconnecting these fields has a big memory impact. That suggests leaks in non-React code but since it's hard to completely eliminate those, it may still be worth the extra work to clear these fields. I'm moving this to level 2 to confirm whether this alone is responsible for the memory savings, or if there are other fields that are retaining large amounts of memory. In our plan for removing the alternate model, DOM nodes would not be connected to fibers, except at the root of the whole tree, which is easy to disconnect on deletion. So in that world, we likely won't have to do any additional work.
1 parent 1bd41c6 commit c670265

File tree

2 files changed

+18
-24
lines changed

2 files changed

+18
-24
lines changed

packages/react-reconciler/src/ReactFiberCommitWork.new.js

+9-12
Original file line numberDiff line numberDiff line change
@@ -1382,18 +1382,6 @@ function detachFiberAfterEffects(fiber: Fiber) {
13821382
fiber.deletions = null;
13831383
fiber.sibling = null;
13841384

1385-
// The `stateNode` is cyclical because on host nodes it points to the host
1386-
// tree, which has its own pointers to children, parents, and siblings.
1387-
// The other host nodes also point back to fibers, so we should detach that
1388-
// one, too.
1389-
if (fiber.tag === HostComponent) {
1390-
const hostInstance: Instance = fiber.stateNode;
1391-
if (hostInstance !== null) {
1392-
detachDeletedInstance(hostInstance);
1393-
}
1394-
}
1395-
fiber.stateNode = null;
1396-
13971385
// I'm intentionally not clearing the `return` field in this level. We
13981386
// already disconnect the `return` pointer at the root of the deleted
13991387
// subtree (in `detachFiberMutation`). Besides, `return` by itself is not
@@ -1412,6 +1400,15 @@ function detachFiberAfterEffects(fiber: Fiber) {
14121400
// The purpose of this branch is to be super aggressive so we can measure
14131401
// if there's any difference in memory impact. If there is, that could
14141402
// indicate a React leak we don't know about.
1403+
1404+
// For host components, disconnect host instance -> fiber pointer.
1405+
if (fiber.tag === HostComponent) {
1406+
const hostInstance: Instance = fiber.stateNode;
1407+
if (hostInstance !== null) {
1408+
detachDeletedInstance(hostInstance);
1409+
}
1410+
}
1411+
14151412
fiber.return = null;
14161413
fiber.dependencies = null;
14171414
fiber.memoizedProps = null;

packages/react-reconciler/src/ReactFiberCommitWork.old.js

+9-12
Original file line numberDiff line numberDiff line change
@@ -1382,18 +1382,6 @@ function detachFiberAfterEffects(fiber: Fiber) {
13821382
fiber.deletions = null;
13831383
fiber.sibling = null;
13841384

1385-
// The `stateNode` is cyclical because on host nodes it points to the host
1386-
// tree, which has its own pointers to children, parents, and siblings.
1387-
// The other host nodes also point back to fibers, so we should detach that
1388-
// one, too.
1389-
if (fiber.tag === HostComponent) {
1390-
const hostInstance: Instance = fiber.stateNode;
1391-
if (hostInstance !== null) {
1392-
detachDeletedInstance(hostInstance);
1393-
}
1394-
}
1395-
fiber.stateNode = null;
1396-
13971385
// I'm intentionally not clearing the `return` field in this level. We
13981386
// already disconnect the `return` pointer at the root of the deleted
13991387
// subtree (in `detachFiberMutation`). Besides, `return` by itself is not
@@ -1412,6 +1400,15 @@ function detachFiberAfterEffects(fiber: Fiber) {
14121400
// The purpose of this branch is to be super aggressive so we can measure
14131401
// if there's any difference in memory impact. If there is, that could
14141402
// indicate a React leak we don't know about.
1403+
1404+
// For host components, disconnect host instance -> fiber pointer.
1405+
if (fiber.tag === HostComponent) {
1406+
const hostInstance: Instance = fiber.stateNode;
1407+
if (hostInstance !== null) {
1408+
detachDeletedInstance(hostInstance);
1409+
}
1410+
}
1411+
14151412
fiber.return = null;
14161413
fiber.dependencies = null;
14171414
fiber.memoizedProps = null;

0 commit comments

Comments
 (0)