Top Description Methods
jdk.vm.ci.hotspot

public Interface HotSpotVMEventListener

Imports
jdk.vm.ci.code.CompiledCode, .InstalledCode

Listener for responding to VM events.

Method Summary

Modifier and TypeMethod and Description
public default void
notifyBootstrapFinished()

Notify on completion of a bootstrap.

public default void
notifyInstall(HotSpotCodeCacheProvider
the code cache into which the code was installed
hotSpotCodeCacheProvider
,
InstalledCode
the code that was installed
installedCode
,
CompiledCode
the compiled code from which installedCode was produced
compiledCode
)

Notify on successful install into the code cache.

public default void
notifyShutdown()

Notifies this client that the VM is shutting down.

Method Detail

notifyBootstrapFinishedback to summary
public default void notifyBootstrapFinished()

Notify on completion of a bootstrap.

notifyInstallback to summary
public default void notifyInstall(HotSpotCodeCacheProvider hotSpotCodeCacheProvider, InstalledCode installedCode, CompiledCode compiledCode)

Notify on successful install into the code cache.

Parameters
hotSpotCodeCacheProvider:HotSpotCodeCacheProvider

the code cache into which the code was installed

installedCode:InstalledCode

the code that was installed

compiledCode:CompiledCode

the compiled code from which installedCode was produced

notifyShutdownback to summary
public default void notifyShutdown()

Notifies this client that the VM is shutting down.