Support advanced stack walking features with cstack=vm #1537
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR is a prerequisite to making
cstack=vm
the default stack walking mode.It includes the following changes:
vm
andvmx
are no longer different stack walking modes. It's now a singlevm
mode with an optionalmixed
feature. There is already-F
argument for choosing various stack walking features, and the ability to display mixed stack (where native frames interleave Java frames) fits this paradigm well.cstack=vmx
remains for backward compatibility as a shorthand forcstack=vm,features=mixed
.StackDetail
enum is gone. Now, I passfeatures
argument instead.vtable
andcomptask
features.nativemem
profiles, I chop everything above malloc hook frames, similarly tofp
anddwarf
modes.I haven't changed logic around allocation and lock profiling. They still use JVMTI API for getting stack traces. This will keep familiar user experience after switching to
vm
by default.Related issues
#1533, #1370
Motivation and context
VMStructs should support all stack walking features that
fp
anddwarf
modes do.How has this been tested?
--cstack vm -F comptask+vtable
Integration tests will be amended in the subsequent PR that changes default mode.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.