RFR: 8260589: Crash in JfrTraceIdLoadBarrier::load(_jclass*) [v2]
Denghui Dong
ddong at openjdk.java.net
Fri Jan 29 01:49:57 UTC 2021
> hi,
>
> Could I have a review of this fix?
>
> If we run the following code snippet, will get a crash
> class JFRDemo {
> public static void main(String[] args) {
> Recording r = new Recording();
> r.enable("MyEvent");
> r.start();
>
> MyEvent event = new MyEvent();
> event.begin();
> event.clazz = long.class;
> event.commit();
> }
> }
>
> @Enabled(true)
> @StackTrace(true)
> @Registered(true)
> @Name("MyEvent")
> class MyEvent extends Event {
>
> @Label("Class")
> public Class clazz;
> }
Denghui Dong has updated the pull request incrementally with one additional commit since the last revision:
clean doc
-------------
Changes:
- all: https://git.openjdk.java.net/jdk/pull/2295/files
- new: https://git.openjdk.java.net/jdk/pull/2295/files/d2d7477a..0ba1623c
Webrevs:
- full: https://webrevs.openjdk.java.net/?repo=jdk&pr=2295&range=01
- incr: https://webrevs.openjdk.java.net/?repo=jdk&pr=2295&range=00-01
Stats: 2 lines in 1 file changed: 0 ins; 1 del; 1 mod
Patch: https://git.openjdk.java.net/jdk/pull/2295.diff
Fetch: git fetch https://git.openjdk.java.net/jdk pull/2295/head:pull/2295
PR: https://git.openjdk.java.net/jdk/pull/2295
More information about the hotspot-jfr-dev
mailing list