hotspot/src/share/vm/runtime/init.cpp
author gziemski
Thu, 18 Jun 2015 14:39:38 -0500
changeset 31371 311143309e73
parent 30764 fec48bf5a827
child 31608 b5cb9a07591a
permissions -rw-r--r--
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments. Summary: Validate the arguments to all JVM command-line flags so as to avoid crashes, and ensure that appropriate error messages are displayed when they are invalid. Reviewed-by: ddmitriev, dholmes, kbarrett, drwhite, brutisso, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 26796
diff changeset
     2
 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5050
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5050
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5050
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    25
#include "precompiled.hpp"
24426
0a69c8cdfca9 8038654: Separate SymbolTable and StringTable code
gziemski
parents: 19319
diff changeset
    26
#include "classfile/stringTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    27
#include "code/icBuffer.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 26796
diff changeset
    28
#include "gc/shared/collectedHeap.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    29
#include "interpreter/bytecodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    30
#include "memory/universe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    31
#include "prims/methodHandles.hpp"
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
    32
#include "runtime/globals.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    33
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    34
#include "runtime/icache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    35
#include "runtime/init.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    36
#include "runtime/safepoint.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    37
#include "runtime/sharedRuntime.hpp"
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
    38
#include "services/memTracker.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13975
diff changeset
    39
#include "utilities/macros.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
    41
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// Initialization done by VM thread in vm_init_globals()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
void check_ThreadShadow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
void eventlog_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
void mutex_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
void chunkpool_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
void perfMemory_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// Initialization done by Java thread in init_globals()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
void management_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
void bytecodes_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
void classLoader_init();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25946
diff changeset
    53
void compilationPolicy_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
void codeCache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
void VM_Version_init();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
    56
void os_init_globals();        // depends on VM_Version_init, before universe_init
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
void stubRoutines_init1();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
    58
jint universe_init();          // depends on codeCache_init and stubRoutines_init
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
    59
void interpreter_init();       // before any methods loaded
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
    60
void invocationCounter_init(); // before any methods loaded
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
void marksweep_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
void accessFlags_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
void templateTable_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
void InterfaceSupport_init();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
    65
void universe2_init();  // dependent on codeCache_init and stubRoutines_init, loads primordial classes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
void referenceProcessor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
void jni_handles_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
void vmStructs_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
void vtableStubs_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
void InlineCacheBuffer_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
void compilerOracle_init();
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11441
diff changeset
    73
void compileBroker_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// Initialization after compiler initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
bool universe_post_init();  // must happen after compiler_init
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
void javaClasses_init();  // must happen after vtable initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
void stubRoutines_init2(); // note: StubRoutines need 2-phase init
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// Do not disable thread-local-storage, as it is important for some
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// JNI/JVM/JVMTI functions and signal handlers to work properly
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// during VM shutdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
void perfMemory_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
void ostream_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
void vm_init_globals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  check_ThreadShadow();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    88
  basic_types_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  eventlog_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  mutex_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  chunkpool_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  perfMemory_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
jint init_globals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  management_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  bytecodes_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  classLoader_init();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25946
diff changeset
   101
  compilationPolicy_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  codeCache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  VM_Version_init();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
   104
  os_init_globals();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  stubRoutines_init1();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
   106
  jint status = universe_init();  // dependent on codeCache_init and
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13087
diff changeset
   107
                                  // stubRoutines_init1 and metaspace_init.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  if (status != JNI_OK)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    return status;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  interpreter_init();  // before any methods loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  invocationCounter_init();  // before any methods loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  marksweep_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  accessFlags_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  templateTable_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  InterfaceSupport_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  SharedRuntime::generate_stubs();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
   118
  universe2_init();  // dependent on codeCache_init and stubRoutines_init1
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  referenceProcessor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  jni_handles_init();
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   121
#if INCLUDE_VM_STRUCTS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  vmStructs_init();
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   123
#endif // INCLUDE_VM_STRUCTS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  vtableStubs_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  InlineCacheBuffer_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  compilerOracle_init();
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11441
diff changeset
   128
  compileBroker_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  VMRegImpl::set_regName();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  if (!universe_post_init()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
   134
  javaClasses_init();   // must happen after vtable initialization
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  stubRoutines_init2(); // note: StubRoutines need 2-phase init
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   137
#if INCLUDE_NMT
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   138
  // Solaris stack is walkable only after stubRoutines are set up.
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   139
  // On Other platforms, the stack is always walkable.
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   140
  NMT_stack_walkable = true;
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   141
#endif // INCLUDE_NMT
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   142
6272
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 5924
diff changeset
   143
  // All the flags that get adjusted by VM_Version_init and os::init_2
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 5924
diff changeset
   144
  // have been set so dump the flags now.
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   145
  if (PrintFlagsFinal || PrintFlagsRanges) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   146
    CommandLineFlags::printFlags(tty, false, PrintFlagsRanges);
6272
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 5924
diff changeset
   147
  }
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 5924
diff changeset
   148
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
void exit_globals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static bool destructorsCalled = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  if (!destructorsCalled) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    destructorsCalled = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    perfMemory_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    if (PrintSafepointStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      // Print the collected safepoint statistics.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
      SafepointSynchronize::print_stat_on_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 11636
diff changeset
   162
    if (PrintStringTableStatistics) {
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 11636
diff changeset
   163
      SymbolTable::dump(tty);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 11636
diff changeset
   164
      StringTable::dump(tty);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 11636
diff changeset
   165
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    ostream_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
static bool _init_completed = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
bool is_init_completed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  return _init_completed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
void set_init_completed() {
7384
71eebb634028 7000578: CMS: assert(SafepointSynchronize::is_at_safepoint()) failed: Else races are possible
ysr
parents: 6272
diff changeset
   179
  assert(Universe::is_fully_initialized(), "Should have completed initialization");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  _init_completed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}