< prev index next >

src/hotspot/share/runtime/init.cpp

Print this page
*** 124,10 ***
--- 124,11 ---
    bytecodes_init();
    classLoader_init1();
    compilationPolicy_init();
    codeCache_init();
    VM_Version_init();              // depends on codeCache_init for emitting code
+   VMRegImpl::set_regName();       // need this before generate_stubs (for printing oop maps).
    // stub routines in initial blob are referenced by later generated code
    initial_stubs_init();
    // stack overflow exception blob is referenced by the interpreter
    SharedRuntime::generate_initial_stubs();
    jint status = universe_init();  // dependent on codeCache_init and

*** 151,11 ***
    SharedRuntime::generate_jfr_stubs();
  #endif
    interpreter_init_stub();   // before methods get loaded
    accessFlags_init();
    InterfaceSupport_init();
-   VMRegImpl::set_regName();  // need this before generate_stubs (for printing oop maps).
    SharedRuntime::generate_stubs();
    return JNI_OK;
  }
  
  jint init_globals2() {
--- 152,10 ---
< prev index next >