mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8239782: CC_INTERP is only used by Zero interpreter
Change CC_INTERP conditional to ZERO and remove in places where unnecessary. Fix build to exclude compilers and rename CppInterpreter to ZeroInterpreter. The "C++ Interpreter" has been removed from the code a while ago. Reviewed-by: dholmes, ihse
This commit is contained in:
parent
6b251191e0
commit
1550fd889b
55 changed files with 288 additions and 639 deletions
|
@ -68,7 +68,6 @@ jint universe_init(); // depends on codeCache_init and stubRoutines_ini
|
|||
void gc_barrier_stubs_init();
|
||||
void interpreter_init_stub(); // before any methods loaded
|
||||
void interpreter_init_code(); // after methods loaded, but before they are linked
|
||||
void invocationCounter_init(); // after methods loaded, but before they are linked
|
||||
void accessFlags_init();
|
||||
void InterfaceSupport_init();
|
||||
void universe2_init(); // dependent on codeCache_init and stubRoutines_init, loads primordial classes
|
||||
|
@ -128,7 +127,6 @@ jint init_globals() {
|
|||
universe2_init(); // dependent on codeCache_init and stubRoutines_init1
|
||||
javaClasses_init();// must happen after vtable initialization, before referenceProcessor_init
|
||||
interpreter_init_code(); // after javaClasses_init and before any method gets linked
|
||||
invocationCounter_init(); // after javaClasses_init and before any method gets linked
|
||||
referenceProcessor_init();
|
||||
jni_handles_init();
|
||||
#if INCLUDE_VM_STRUCTS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue