RFR: 8338971: IGV: Add incrementally inlined method name to phase name
Vladimir Kozlov
kvn at openjdk.org
Tue Sep 3 17:11:20 UTC 2024
On Tue, 3 Sep 2024 11:43:57 GMT, Christian Hagedorn <chagedorn at openjdk.org> wrote:
> This patch adds the method name to the incremental inlining step dumps in IGV which improves debugging issues involving incremental inlining:
>
>
> static void test() {
> method1();
> method2();
> method3();
> }
>
> static void method1() {}
> static void method2() {}
> static void method3() {}
>
> Run with `-XX:+AlwaysIncrementalInline` and IGV print level >=3:
>
> Before patch:
> 
>
> After patch:
> 
>
> The patch just prints the method name if we call `print_method()` with `n` being a call node which, AFAICT, only happens for the incremental inlining step. However, even if we call it with another phase at some point, I don't think it hurts to also dump the method name there.
>
> #### Testing
> - Manually verifying change in IGV
> - Building IGV which runs its unit tests
> - Sanity run with a hello world program with `-Xcomp -XX:+AlwaysIncrementalInline -XX:+PrintIdealGraph -XX:PrintIdealGraphLevel=3 -XX:PrintIdealGraphFile=graph.xml`
>
> Thanks,
> Christian
Good.
-------------
Marked as reviewed by kvn (Reviewer).
PR Review: https://git.openjdk.org/jdk/pull/20834#pullrequestreview-2278016686
More information about the hotspot-compiler-dev
mailing list