Skip to content

Commit c718a08

Browse files
committedJan 29, 2020
8238083: Crash: assert(is_object_aligned(v)) failed: address not aligned: 0xfffffffffffffff1
Reviewed-by: mgronlun
1 parent 2f45d46 commit c718a08

File tree

1 file changed

+12
-6
lines changed
  • src/jdk.jfr/share/classes/jdk/jfr/internal

1 file changed

+12
-6
lines changed
 

‎src/jdk.jfr/share/classes/jdk/jfr/internal/Utils.java

+12-6
Original file line numberDiff line numberDiff line change
@@ -328,17 +328,23 @@ static long nanosToTicks(long nanos) {
328328

329329
static synchronized EventHandler getHandler(Class<? extends jdk.internal.event.Event> eventClass) {
330330
Utils.ensureValidEventSubclass(eventClass);
331-
Object handler = JVM.getJVM().getHandler(eventClass);
332-
if (handler == null || handler instanceof EventHandler) {
333-
return (EventHandler) handler;
331+
try {
332+
Field f = eventClass.getDeclaredField(EventInstrumentation.FIELD_EVENT_HANDLER);
333+
SecuritySupport.setAccessible(f);
334+
return (EventHandler) f.get(null);
335+
} catch (NoSuchFieldException | IllegalArgumentException | IllegalAccessException e) {
336+
throw new InternalError("Could not access event handler");
334337
}
335-
throw new InternalError("Could not access event handler");
336338
}
337339

338340
static synchronized void setHandler(Class<? extends jdk.internal.event.Event> eventClass, EventHandler handler) {
339341
Utils.ensureValidEventSubclass(eventClass);
340-
if (!JVM.getJVM().setHandler(eventClass, handler)) {
341-
throw new InternalError("Could not set event handler");
342+
try {
343+
Field field = eventClass.getDeclaredField(EventInstrumentation.FIELD_EVENT_HANDLER);
344+
SecuritySupport.setAccessible(field);
345+
field.set(null, handler);
346+
} catch (NoSuchFieldException | IllegalArgumentException | IllegalAccessException e) {
347+
throw new InternalError("Could not access event handler");
342348
}
343349
}
344350

0 commit comments

Comments
 (0)
Please sign in to comment.