Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

debug: use unique stack frame id #2130

Merged
merged 2 commits into from
Jan 29, 2019

Conversation

xiphon
Copy link
Contributor

@xiphon xiphon commented Nov 16, 2018

No description provided.

@ramya-rao-a
Copy link
Contributor

Thanks for the PR @xiphon!

@brycekahle Given that you had earlier worked in the stackTraceRequest area, can you please review this PR and try out the changes?

@jhendrixMSFT
Copy link
Member

@xiphon I tested this out using the repro provided in the linked issue but it doesn't appear to work, i.e. the value for animal is still dog when stopped after animal is shadowed with the value cat. Am I missing something?

@ramya-rao-a
Copy link
Contributor

Any chance this is related to Variable Shadowing?

@jhendrixMSFT
Copy link
Member

jhendrixMSFT commented Jan 15, 2019

It is, I thought the intent of the PR was to address it but perhaps I'm mistaken. I had dug into it a bit, delve sends back all the locals including the shadowed ones. E.g.

"pet": "dog",
"pet": "cat"

We send all of them back to VS Code and it would appear that when there are duplicate entries the first one is displayed and the rest discarded (this is just a guess on my part but fits with my observation).
One idea is to prune out the dupes based on their line number with respect to the current line number (I actually have code for this). Another option would be to display the shadowed variables the same way delve does which might be useful (we could also make this option configurable).

@xiphon
Copy link
Contributor Author

xiphon commented Jan 16, 2019

Yep, seems this PR is not related to #1974. Updated the description.

It still fixes the problem - we have to use unique stack frame identifiers.

Btw, there is another PR attempting to fix the same issue #2208

@xiphon xiphon changed the title debug: use unique stack frame id, fix local variables, evaluation errors debug: use unique stack frame id Jan 16, 2019
@segevfiner
Copy link
Contributor

We are not resetting stackFrameHandles ever. This will cause memory consumption to infinitely raise.

@ramya-rao-a
Copy link
Contributor

@segevfiner Are you referring to resetting the handles in between 2 debugging sessions or inside a single debugging session?

@segevfiner
Copy link
Contributor

Both are an issue technically. During one debug session you keep accumlating handles, and handles from a previous session remain after it ends (Doesn't VS Code close the debug adapter though?)

Another point is that changing the thread ID, frame ID might cause VS Code to consider this a new thread which can make it lose focus. I didn't check whether this PR has such an issue or not.

@jhendrixMSFT
Copy link
Member

@segevfiner the debug adapter process is recycled between sessions however you're correct that the number of handles will continue to grow.
Taking a step back, can somebody articulate why this fix is needed? Not that I'm pushing back (although we do need to address the handle growth), I don't see a referenced issue so I'm missing some context.

@ramya-rao-a
Copy link
Contributor

@jhendrixMSFT When investigating another issue, @segevfiner came across documentation for the debug adapter protocol that the stackframe id should be unique across all threads. See #2133 (comment)

That's the motivation for @segevfiner's attempt to fix the problem.

I believe @xiphon encountered the same when investigating the variable shadowing problem

Though, in itself, this PR doesnt fix any user facing issue we are aware of, this bug could be the reason for some other issue in the future (or present)

@jhendrixMSFT
Copy link
Member

Digging into this a bit more we should be resetting stackFrameHandles and _variableHandles every time the debugger stops as the information is no longer valid and is essentially a memory leak; this is exactly what the node debugger does, see here. I think the best place to do this is in handleReenterDebug() unless there's a better suggestion.

Copy link
Member

@jhendrixMSFT jhendrixMSFT left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reset handle collections to avoid memory leak.

@xiphon
Copy link
Contributor Author

xiphon commented Jan 25, 2019

@jhendrixMSFT you are absolutely correct. Once we stop there, previous handles are no longer valid, handleReenterDebug is the right place. Updated.

@OneOfOne
Copy link
Contributor

@xiphon can you rebase against master please.

@xiphon xiphon force-pushed the fix-stack-frames-and-eval branch 2 times, most recently from a771e31 to 0be2604 Compare January 29, 2019 01:11
Co-authored-by: Joel Hendrix <jhendrix@microsoft.com>
@xiphon
Copy link
Contributor Author

xiphon commented Jan 29, 2019

@OneOfOne
Rebased

@ramya-rao-a ramya-rao-a merged commit 13f8083 into microsoft:master Jan 29, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants