hotspot/src/share/vm/runtime/init.cpp
changeset 31371 311143309e73
parent 30764 fec48bf5a827
child 31608 b5cb9a07591a
equal deleted inserted replaced
31362:8957ccbb5821 31371:311143309e73
    27 #include "code/icBuffer.hpp"
    27 #include "code/icBuffer.hpp"
    28 #include "gc/shared/collectedHeap.hpp"
    28 #include "gc/shared/collectedHeap.hpp"
    29 #include "interpreter/bytecodes.hpp"
    29 #include "interpreter/bytecodes.hpp"
    30 #include "memory/universe.hpp"
    30 #include "memory/universe.hpp"
    31 #include "prims/methodHandles.hpp"
    31 #include "prims/methodHandles.hpp"
       
    32 #include "runtime/globals.hpp"
    32 #include "runtime/handles.inline.hpp"
    33 #include "runtime/handles.inline.hpp"
    33 #include "runtime/icache.hpp"
    34 #include "runtime/icache.hpp"
    34 #include "runtime/init.hpp"
    35 #include "runtime/init.hpp"
    35 #include "runtime/safepoint.hpp"
    36 #include "runtime/safepoint.hpp"
    36 #include "runtime/sharedRuntime.hpp"
    37 #include "runtime/sharedRuntime.hpp"
   139   NMT_stack_walkable = true;
   140   NMT_stack_walkable = true;
   140 #endif // INCLUDE_NMT
   141 #endif // INCLUDE_NMT
   141 
   142 
   142   // All the flags that get adjusted by VM_Version_init and os::init_2
   143   // All the flags that get adjusted by VM_Version_init and os::init_2
   143   // have been set so dump the flags now.
   144   // have been set so dump the flags now.
   144   if (PrintFlagsFinal) {
   145   if (PrintFlagsFinal || PrintFlagsRanges) {
   145     CommandLineFlags::printFlags(tty, false);
   146     CommandLineFlags::printFlags(tty, false, PrintFlagsRanges);
   146   }
   147   }
   147 
   148 
   148   return JNI_OK;
   149   return JNI_OK;
   149 }
   150 }
   150 
   151