Skip to content
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

Generational code cache roots #282

Merged
merged 3 commits into from
Sep 10, 2024
Merged

Conversation

wks
Copy link
Contributor

@wks wks commented Jul 8, 2024

This PR ports the generational code cache roots handling code from the LXR branch. See https://github.com/wenyuzhao/mmtk-openjdk/blob/lxr/mmtk/src/gc_work.rs#L242-L262

We split code cache roots into two hash tables, one for nursery roots and one for mature roots. Nursery roots are those added since the previous GC. In a nursery GC, we only scan the nursery code cache roots, assuming mature code cache roots all point to mature objects. In a full-heap GC, we scan both nursery and mature code cache roots.

Because code cache roots are added in bulk in the beginning of execution, and are seldom added later, we expect the number of code cache roots to reduce to zero for most nursery GCs, and greatly reduce the root-scanning time.

This PR also adds USDT tracepoints for code cache roots, and make use of the extensible eBPF timeline tools in mmtk-core introduced in mmtk/mmtk-core#1162.

@wks wks force-pushed the feature/gen-code-cache-roots branch from ab90e13 to a8a5fd6 Compare September 9, 2024 08:30
@wks wks marked this pull request as ready for review September 9, 2024 08:36
@wks wks requested review from wenyuzhao and qinsoon September 9, 2024 08:36
Copy link
Member

@qinsoon qinsoon left a comment

Choose a reason for hiding this comment

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

LGTM. Probably merge after #288, so we can make sure the CI tests pass for this PR.

@wks wks merged commit 71969f3 into mmtk:master Sep 10, 2024
57 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants