RFR: 8277842: IGV: Add jvms property to know where a node came from
Christian Hagedorn
chagedorn at openjdk.java.net
Fri Nov 26 10:50:03 UTC 2021
On Thu, 25 Nov 2021 14:46:36 GMT, Christian Hagedorn <chagedorn at openjdk.org> wrote:
> When dumping a node with `node->dump()`, it also prints the JVM state which tells us to which bci and inlinee method the node belongs to:
>
> 38 StoreI === 5 7 37 35 [[ 15 ]] @java/lang/Class:exact+116 *, name=y, idx=5; Memory: @java/lang/Class:exact+116 *, name=y, idx=5; !jvms: Test::inlinee @ bci:1 (line 16) Test::test @ bci:4 (line 12)
>
> IGV only shows the line and bci information with which it is sometimes hard to tell where exactly the node came from, especially with deep inlining. This patch adds the entire JVM state as a `jvms` property field to IGV:
>
> 
>
> This helps to better analyze a graph.
>
> Thanks,
> Christian
Thanks Roland and Nils for your reviews!
-------------
PR: https://git.openjdk.java.net/jdk/pull/6563
More information about the hotspot-compiler-dev
mailing list