-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSE Machine: Visual garbage collector #3119
base: master
Are you sure you want to change the base?
Conversation
Pull Request Test Coverage Report for Build 14256302577Details
💛 - Coveralls |
I noticed some cases where the reachability logic doesn’t fully reflect actual references: 1. Indirect referencing through nested arraysfunction test_func() {
const x = [];
const y = [x];
const a = [x, y];
return a;
}
const result = test_func();
result[1][0] = 5; In this case, Source.Academy.-.Personal.-.Microsoft.Edge.2025-04-02.18-21-18.mp42. Function still referenced after returnfunction test_func() {
const x = [];
const a = d => d + 1;
return a;
}
const result = test_func();
result(5); In this example, Right now, the visualization marks the frame as unreachable as soon as Also, when Source.Academy.-.Personal.-.Microsoft.Edge.2025-04-02.18-36-28.mp4 |
Description
Currently, frames that will no longer be referenced still show up as white in the environment, along with their associated bound objects. There was previously no mechanism to visually "garbage collect" frames which should have been dereferenced. This PR fixes this, by having the default color be faded, and for each step in the CSE Machine, we mark the current environment as reachable, and then recursively mark its parent frames (with their bindings) as reachable, up till the root parent (Global).
Type of change
How to test
Demo
Frames and bindings (such as function closures) will indicate as grey, once they will be no longer accessed.
garbagecollector.mp4
Nested referencing within ArrayUnits are also updated.
gc_array.mp4
Checklist