comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java @ 23383:0226d6bcb0d2

Notify the compiler on completion of a bootstrap (JDK-8156034)
author Josef Eisl <josef.eisl@jku.at>
date Mon, 02 May 2016 14:57:11 +0200
parents 24505bf61633
children f102ee538647
comparison
equal deleted inserted replaced
23382:c9915c22a5a9 23383:0226d6bcb0d2
380 vmEventListener.notifyShutdown(); 380 vmEventListener.notifyShutdown();
381 } 381 }
382 } 382 }
383 383
384 /** 384 /**
385 * Notify on completion of a bootstrap.
386 *
387 * Called from the VM.
388 */
389 @SuppressWarnings({"unused"})
390 private void bootstrapFinished() throws Exception {
391 for (HotSpotVMEventListener vmEventListener : vmEventListeners) {
392 vmEventListener.notifyBootstrapFinished();
393 }
394 }
395
396 /**
385 * Notify on successful install into the CodeCache. 397 * Notify on successful install into the CodeCache.
386 * 398 *
387 * @param hotSpotCodeCacheProvider 399 * @param hotSpotCodeCacheProvider
388 * @param installedCode 400 * @param installedCode
389 * @param compiledCode 401 * @param compiledCode