src/hotspot/share/compiler/compilerDirectives.cpp
changeset 51341 09cc8813ae51
parent 51333 f6641fcf7b7e
child 52894 8df9cf767f79
equal deleted inserted replaced
51340:818768cd1c6c 51341:09cc8813ae51
   440 void DirectivesStack::init() {
   440 void DirectivesStack::init() {
   441   CompilerDirectives* _default_directives = new CompilerDirectives();
   441   CompilerDirectives* _default_directives = new CompilerDirectives();
   442   char str[] = "*.*";
   442   char str[] = "*.*";
   443   const char* error_msg = NULL;
   443   const char* error_msg = NULL;
   444   _default_directives->add_match(str, error_msg);
   444   _default_directives->add_match(str, error_msg);
   445 #ifdef COMPILER1
   445 #if defined(COMPILER1) || INCLUDE_JVMCI
   446   _default_directives->_c1_store->EnableOption = true;
   446   _default_directives->_c1_store->EnableOption = true;
   447 #endif
   447 #endif
   448 #ifdef COMPILER2
   448 #ifdef COMPILER2
   449   if (is_server_compilation_mode_vm()) {
   449   if (is_server_compilation_mode_vm()) {
   450     _default_directives->_c2_store->EnableOption = true;
   450     _default_directives->_c2_store->EnableOption = true;