Closed Bug 1094749 Opened 10 years ago Closed 10 years ago

The debugger tests are leaking memory when e10s is enabled

Categories

(DevTools :: Debugger, defect)

defect
Not set
normal

Tracking

(e10s+)

RESOLVED DUPLICATE of bug 1073352
Tracking Status
e10s + ---

People

(Reporter: ejpbruel, Assigned: mccr8)

References

(Blocks 1 open bug)

Details

(Whiteboard: [MemShrink])

Attachments

(1 file)

No description provided.
Blocks: 1090929
Assignee: nobody → ejpbruel
e10s test bugs block e10s, but not a particular milestone.
Blocks: e10s-tests
tracking-e10s: --- → +
I've created a minimal test case that consistently leaks on my machine. It registers a shutdown callback, opens a tab, then calls finish(), after which the tab is removed by the shutdown callback. I have no idea what causes the leak, so if anyone has any idea what might be going on, please let me know. This is a rather big deal for us, as it likely causes all our debugger tests to leak on e10s debug builds.
Attachment #8518972 - Attachment is patch: true
Attachment #8518972 - Attachment mime type: text/x-patch → text/plain
pbrosset found bug 1073352, which is probably the same underlying issue.
Depends on: 1073352
Whiteboard: [MemShrink]
Andrew, can you look at this?
Flags: needinfo?(continuation)
sure
Flags: needinfo?(continuation)
(In reply to Andrew McCreight [:mccr8] from comment #5) > sure Thanks for taking this! This is blocking us from enabling a lot of the devtools tests on e10s debug builds, so its quite a priority for us. If there's anything I can do to help, let me know.
Assignee: ejpbruel → continuation
The particular failures I am seeing are: TEST-UNEXPECTED-FAIL | browser/devtools/debugger/test/browser_dbg_e10s.js | leaked 4 window(s) until shutdown [url = about:blank] TEST-UNEXPECTED-FAIL | browser/devtools/debugger/test/browser_dbg_e10s.js | leaked 2 window(s) until shutdown [url = chrome://mochitests/content/browser/browser/devtools/debugger/test/doc_e10s.html] TEST-UNEXPECTED-FAIL | browser/devtools/debugger/test/browser_dbg_e10s.js | leaked 2 docShell(s) until shutdown This is from the window leak checker that matches up ++DOMWINDOW and --DOMWINDOW (and for doc shells). I need to look at it some more, but it seems like maybe it treats windows that are destroyed after "TEST-START | Shutdown" as leaking, and we seem to not run the cycle collector at all until after that point, which would explain why nothing is destroyed. In non-e10s mode, we run the CC 3 or 4 times prior to that, so we clean up the window.
There are four CCs while we're starting to shut down, but before the "TEST-START | Shutdown". The first one is a memory-pressure CC. That does get propagated to the child, but not until after the "TEST-START | Shutdown". But I think that's a minor problem. The next three CCs are from the CCAnalyzer. In e10s mode, they still trigger CCs, but only in the parent process. So, that's bad from the perspective of causing these false positives, but it is also bad from the perspective that we're not running the CCAnalyzer leak checker in content, if I understand this correctly. Basically it looks like at the moment we run the ++/--DOMWINDOW stuff for both parent and child, but the CCAnalyzer stuff only in the parent, and the former just happens to depend on the latter running in the same process.
Depends on: 1096614
I filed bug 1096614. I think that will incidentally fix this issue, but it is a different enough symptom we should have different bugs for it.
No longer depends on: 1073352
Actually, I'll just dupe this over, because I think it is the same issue as bug 1073352.
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
No longer blocks: 1090929
Product: Firefox → DevTools
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: