src/hotspot/share/runtime/init.cpp
author stefank
Tue, 26 Nov 2019 10:47:46 +0100
changeset 59290 97d13893ec3c
parent 59247 56bf71d64d51
permissions -rw-r--r--
8234748: Clean up atomic and orderAccess includes Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53588
a5f46c4690f8 8217659: monitor_logging updates from Async Monitor Deflation project
dcubed
parents: 50966
diff changeset
     2
 * Copyright (c) 1997, 2019, 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"
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34195
diff changeset
    27
#include "classfile/symbolTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    28
#include "code/icBuffer.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 26796
diff changeset
    29
#include "gc/shared/collectedHeap.hpp"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    30
#if INCLUDE_JVMCI
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    31
#include "jvmci/jvmci.hpp"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
    32
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    33
#include "interpreter/bytecodes.hpp"
50966
f939a67fea30 8198720: Obsolete PrintSafepointStatistics, PrintSafepointStatisticsTimeout and PrintSafepointStatisticsCount options
coleenp
parents: 50059
diff changeset
    34
#include "logging/log.hpp"
f939a67fea30 8198720: Obsolete PrintSafepointStatistics, PrintSafepointStatisticsTimeout and PrintSafepointStatisticsCount options
coleenp
parents: 50059
diff changeset
    35
#include "logging/logTag.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    36
#include "memory/universe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    37
#include "prims/methodHandles.hpp"
59290
97d13893ec3c 8234748: Clean up atomic and orderAccess includes
stefank
parents: 59247
diff changeset
    38
#include "runtime/atomic.hpp"
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49860
diff changeset
    39
#include "runtime/flags/jvmFlag.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    40
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    41
#include "runtime/icache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    42
#include "runtime/init.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    43
#include "runtime/safepoint.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7384
diff changeset
    44
#include "runtime/sharedRuntime.hpp"
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
    45
#include "services/memTracker.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13975
diff changeset
    46
#include "utilities/macros.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
    48
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// Initialization done by VM thread in vm_init_globals()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
void check_ThreadShadow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
void eventlog_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
void mutex_init();
57828
35db8fba55f9 8227054: ServiceThread needs to know about all OopStorage objects
kbarrett
parents: 54669
diff changeset
    53
void oopstorage_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
void chunkpool_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
void perfMemory_init();
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
    56
void SuspendibleThreadSet_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// Initialization done by Java thread in init_globals()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void management_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
void bytecodes_init();
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37188
diff changeset
    61
void classLoader_init1();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25946
diff changeset
    62
void compilationPolicy_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
void codeCache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
void VM_Version_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
void stubRoutines_init1();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
    66
jint universe_init();          // depends on codeCache_init and stubRoutines_init
47688
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47216
diff changeset
    67
// depends on universe_init, must be before interpreter_init (currently only on SPARC)
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 48619
diff changeset
    68
void gc_barrier_stubs_init();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
    69
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
    70
void invocationCounter_init(); // before any methods loaded
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
void accessFlags_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
void templateTable_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
void InterfaceSupport_init();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
    74
void universe2_init();  // dependent on codeCache_init and stubRoutines_init, loads primordial classes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
void referenceProcessor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
void jni_handles_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
void vmStructs_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void vtableStubs_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
void InlineCacheBuffer_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
void compilerOracle_init();
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 32619
diff changeset
    82
bool compileBroker_init();
34195
89011d12ebd3 8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents: 33451
diff changeset
    83
void dependencyContext_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
// Initialization after compiler initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
bool universe_post_init();  // must happen after compiler_init
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
void javaClasses_init();  // must happen after vtable initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
void stubRoutines_init2(); // note: StubRoutines need 2-phase init
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// Do not disable thread-local-storage, as it is important for some
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// JNI/JVM/JVMTI functions and signal handlers to work properly
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// during VM shutdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
void perfMemory_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
void ostream_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
void vm_init_globals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  check_ThreadShadow();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    98
  basic_types_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  eventlog_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  mutex_init();
57828
35db8fba55f9 8227054: ServiceThread needs to know about all OopStorage objects
kbarrett
parents: 54669
diff changeset
   101
  oopstorage_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  chunkpool_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  perfMemory_init();
37188
390e3a2e7cee 8152196: SuspendibleThreadSet::yield scales poorly
kbarrett
parents: 36104
diff changeset
   104
  SuspendibleThreadSet_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
jint init_globals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  management_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  bytecodes_init();
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37188
diff changeset
   112
  classLoader_init1();
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25946
diff changeset
   113
  compilationPolicy_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  codeCache_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  VM_Version_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  stubRoutines_init1();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
   117
  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
   118
                                  // stubRoutines_init1 and metaspace_init.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  if (status != JNI_OK)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    return status;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 48619
diff changeset
   122
  gc_barrier_stubs_init();   // depends on universe_init, must be before interpreter_init
47688
3d1e3786d66e 8166317: InterpreterCodeSize should be computed
simonis
parents: 47216
diff changeset
   123
  interpreter_init();        // before any methods loaded
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  invocationCounter_init();  // before any methods loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  accessFlags_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  templateTable_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  InterfaceSupport_init();
54411
1ad7f5bcc670 8221482: Initialize VMRegImpl::regName[] earlier to prevent assert during PrintStubCode
lucy
parents: 54301
diff changeset
   128
  VMRegImpl::set_regName();  // need this before generate_stubs (for printing oop maps).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  SharedRuntime::generate_stubs();
11417
4ecc3253bec4 7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents: 7712
diff changeset
   130
  universe2_init();  // dependent on codeCache_init and stubRoutines_init1
48619
1703d83b3ffe 8058259: compute_offset() is confusing for static fields
coleenp
parents: 47812
diff changeset
   131
  javaClasses_init();// must happen after vtable initialization, before referenceProcessor_init
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  referenceProcessor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  jni_handles_init();
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   134
#if INCLUDE_VM_STRUCTS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  vmStructs_init();
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   136
#endif // INCLUDE_VM_STRUCTS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  vtableStubs_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  InlineCacheBuffer_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  compilerOracle_init();
34195
89011d12ebd3 8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents: 33451
diff changeset
   141
  dependencyContext_init();
89011d12ebd3 8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents: 33451
diff changeset
   142
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 32619
diff changeset
   143
  if (!compileBroker_init()) {
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 32619
diff changeset
   144
    return JNI_EINVAL;
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 32619
diff changeset
   145
  }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   146
#if INCLUDE_JVMCI
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   147
  if (EnableJVMCI) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   148
    JVMCI::initialize_globals();
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   149
  }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54623
diff changeset
   150
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  if (!universe_post_init()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  stubRoutines_init2(); // note: StubRoutines need 2-phase init
36074
11263906664c 8138922: StubCodeDesc constructor publishes partially-constructed objects on StubCodeDesc::_list
vlivanov
parents: 34666
diff changeset
   156
  MethodHandles::generate_adapters();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   158
#if INCLUDE_NMT
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   159
  // Solaris stack is walkable only after stubRoutines are set up.
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   160
  // On Other platforms, the stack is always walkable.
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   161
  NMT_stack_walkable = true;
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   162
#endif // INCLUDE_NMT
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24426
diff changeset
   163
6272
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 5924
diff changeset
   164
  // 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
   165
  // have been set so dump the flags now.
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 30764
diff changeset
   166
  if (PrintFlagsFinal || PrintFlagsRanges) {
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49860
diff changeset
   167
    JVMFlag::printFlags(tty, false, PrintFlagsRanges);
6272
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 5924
diff changeset
   168
  }
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 5924
diff changeset
   169
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
void exit_globals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  static bool destructorsCalled = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  if (!destructorsCalled) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    destructorsCalled = true;
53588
a5f46c4690f8 8217659: monitor_logging updates from Async Monitor Deflation project
dcubed
parents: 50966
diff changeset
   178
    if (log_is_enabled(Info, monitorinflation)) {
a5f46c4690f8 8217659: monitor_logging updates from Async Monitor Deflation project
dcubed
parents: 50966
diff changeset
   179
      // The ObjectMonitor subsystem uses perf counters so
a5f46c4690f8 8217659: monitor_logging updates from Async Monitor Deflation project
dcubed
parents: 50966
diff changeset
   180
      // do this before perfMemory_exit().
a5f46c4690f8 8217659: monitor_logging updates from Async Monitor Deflation project
dcubed
parents: 50966
diff changeset
   181
      // ObjectSynchronizer::finish_deflate_idle_monitors()'s call
a5f46c4690f8 8217659: monitor_logging updates from Async Monitor Deflation project
dcubed
parents: 50966
diff changeset
   182
      // to audit_and_print_stats() is done at the Debug level.
a5f46c4690f8 8217659: monitor_logging updates from Async Monitor Deflation project
dcubed
parents: 50966
diff changeset
   183
      ObjectSynchronizer::audit_and_print_stats(true /* on_exit */);
a5f46c4690f8 8217659: monitor_logging updates from Async Monitor Deflation project
dcubed
parents: 50966
diff changeset
   184
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    perfMemory_exit();
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53588
diff changeset
   186
    SafepointTracing::statistics_exit_log();
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 11636
diff changeset
   187
    if (PrintStringTableStatistics) {
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 11636
diff changeset
   188
      SymbolTable::dump(tty);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 11636
diff changeset
   189
      StringTable::dump(tty);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 11636
diff changeset
   190
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    ostream_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
36082
e734f3a55bdf 8136854: G1 ConcurrentG1RefineThread::stop delays JVM shutdown for >150ms
tschatzl
parents: 34666
diff changeset
   195
static volatile bool _init_completed = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
bool is_init_completed() {
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 58048
diff changeset
   198
  return Atomic::load_acquire(&_init_completed);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
54301
2f522c487791 8221392: Reduce ConcurrentGCThreads spinning during start up
pliden
parents: 53895
diff changeset
   201
void wait_init_completed() {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54411
diff changeset
   202
  MonitorLocker ml(InitCompleted_lock, Monitor::_no_safepoint_check_flag);
54301
2f522c487791 8221392: Reduce ConcurrentGCThreads spinning during start up
pliden
parents: 53895
diff changeset
   203
  while (!_init_completed) {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54411
diff changeset
   204
    ml.wait();
54301
2f522c487791 8221392: Reduce ConcurrentGCThreads spinning during start up
pliden
parents: 53895
diff changeset
   205
  }
2f522c487791 8221392: Reduce ConcurrentGCThreads spinning during start up
pliden
parents: 53895
diff changeset
   206
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
void set_init_completed() {
7384
71eebb634028 7000578: CMS: assert(SafepointSynchronize::is_at_safepoint()) failed: Else races are possible
ysr
parents: 6272
diff changeset
   209
  assert(Universe::is_fully_initialized(), "Should have completed initialization");
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54411
diff changeset
   210
  MonitorLocker ml(InitCompleted_lock, Monitor::_no_safepoint_check_flag);
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 58048
diff changeset
   211
  Atomic::release_store(&_init_completed, true);
54301
2f522c487791 8221392: Reduce ConcurrentGCThreads spinning during start up
pliden
parents: 53895
diff changeset
   212
  ml.notify_all();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}