mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8137167: JEP165: Compiler Control: Implementation task
Compiler Control JEP Reviewed-by: roland, twisti, zmajo, simonis
This commit is contained in:
parent
857b7eb968
commit
5a5faf94bf
66 changed files with 3965 additions and 307 deletions
|
@ -71,7 +71,7 @@ void vmStructs_init();
|
|||
void vtableStubs_init();
|
||||
void InlineCacheBuffer_init();
|
||||
void compilerOracle_init();
|
||||
void compileBroker_init();
|
||||
bool compileBroker_init();
|
||||
|
||||
// Initialization after compiler initialization
|
||||
bool universe_post_init(); // must happen after compiler_init
|
||||
|
@ -131,7 +131,9 @@ jint init_globals() {
|
|||
vtableStubs_init();
|
||||
InlineCacheBuffer_init();
|
||||
compilerOracle_init();
|
||||
compileBroker_init();
|
||||
if (!compileBroker_init()) {
|
||||
return JNI_EINVAL;
|
||||
}
|
||||
VMRegImpl::set_regName();
|
||||
|
||||
if (!universe_post_init()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue