[WIP] [GR-45171] Basic JVMTI infrastructure. #8507
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds basic JVM Tool Interface (JVM TI) support to Native Image so that JVM TI agents can be used at run-time:
-H:+JVMTI.-XX:JVMTIAgentLib=...or-XX:JVMTIAgentPath=...(similar to-agentlib:...and-agentpath:...on HotSpot).Restrictions:
AllocateDeallocateForceGarbageCollectionSetEventCallbacksSetEventNotificationModeGetPotentialCapabilitiesGetCapabilitiesAddCapabilitiesRelinquishCapabilitiesGetTimeGetPhase(only returnsJVMTI_PHASE_LIVEandJVMTI_PHASE_DEAD)DisposeEnvironmentGetVersionNumberGetErrorNameJVMTI_EVENT_VM_INITJVMTI_EVENT_VM_STARTJVMTI_EVENT_VM_DEATHOpen for discussions:
Agent_OnLoadafter VM startup (i.e., some Java code may already have been executed at this point). This does not really match with the JVM TI specification. The alternative would be to callAgent_OnAttachinstead.JVMTI_EVENT_VM_INITandJVMTI_EVENT_VM_STARTdirectly after invokingAgent_OnLoad.Open issues:
JVMTI_EVENT_RESOURCE_EXHAUSTED,JVMTI_EVENT_GARBAGE_COLLECTION_*).