Integrated: 8252526: Remove excessive inclusion of jvmti.h and jvmtiExport.hpp

Ioi Lam iklam at openjdk.java.net
Thu Nov 12 01:49:15 UTC 2020


On Wed, 11 Nov 2020 00:03:56 GMT, Ioi Lam <iklam at openjdk.org> wrote:

> jvmti.h is included 905 times and jvmtiExport.hpp is included 776 times (out of 971 hotspot .o files). Most of these are unnecessarily included by the following 3 popular header files:
> 
> * javaClasses.hpp: `java_lang_Class::ThreadStatus` (which depends on jvmti.h) this type is rarely used. Move this type to a separate header file. The enum is also changed to an enum class for better type safety.
> * os.hpp: No need to include jvmti.h. Use forward declaration for `struct jvmtiTimerInfo;` instead.
> * thread.hpp: No need to include jvmExport.hpp. Use forward declaration for `JvmtiSampledObjectAllocEventCollector` and `JvmtiVMObjectAllocEventCollector` instead.
> 
> Tested with mach5 tier1-2 and build tiers 3-5.
> 
> Note: Many files are changed, but most of the changes are adding a missing jvmtiExports.hpp.
> 
> Original review thread: https://mail.openjdk.java.net/pipermail/hotspot-runtime-dev/2020-August/041509.html

This pull request has now been integrated.

Changeset: 2f06893a
Author:    Ioi Lam <iklam at openjdk.org>
URL:       https://git.openjdk.java.net/jdk/commit/2f06893a
Stats:     232 lines in 65 files changed: 125 ins; 34 del; 73 mod

8252526: Remove excessive inclusion of jvmti.h and jvmtiExport.hpp

Reviewed-by: ihse, kbarrett

-------------

PR: https://git.openjdk.java.net/jdk/pull/1152


More information about the hotspot-dev mailing list