hotspot/src/share/vm/runtime/java.cpp
author roland
Tue, 22 Oct 2013 09:51:47 +0200
changeset 21095 1a04f7b3946e
parent 20702 bbe0fcde6e13
child 22210 b0408ba029f6
permissions -rw-r--r--
8026251: New type profiling points: parameters to methods Summary: x86 interpreter and c1 type profiling for parameters on method entries Reviewed-by: kvn, twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15482
diff changeset
     2
 * Copyright (c) 1997, 2013, 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: 5542
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5542
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: 5542
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: 7119
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    26
#include "classfile/classLoader.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    27
#include "classfile/symbolTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    29
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    30
#include "compiler/compileBroker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    31
#include "compiler/compilerOracle.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    32
#include "interpreter/bytecodeHistogram.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    33
#include "memory/genCollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    34
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    35
#include "memory/universe.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
    36
#include "oops/constantPool.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    37
#include "oops/generateOopMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    38
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    39
#include "oops/instanceOop.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
    40
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    41
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    42
#include "oops/oop.inline.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7900
diff changeset
    43
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    44
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    45
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    46
#include "runtime/biasedLocking.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    47
#include "runtime/compilationPolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    48
#include "runtime/fprofiler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    49
#include "runtime/init.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    50
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    51
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    52
#include "runtime/memprofiler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    53
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    54
#include "runtime/statSampler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    55
#include "runtime/task.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14289
diff changeset
    56
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    57
#include "runtime/timer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    58
#include "runtime/vm_operations.hpp"
13861
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
    59
#include "services/memReporter.hpp"
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
    60
#include "services/memTracker.hpp"
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10739
diff changeset
    61
#include "trace/tracing.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    62
#include "utilities/dtrace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    63
#include "utilities/globalDefinitions.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    64
#include "utilities/histogram.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15202
diff changeset
    65
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    66
#include "utilities/vmError.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    67
#ifdef TARGET_ARCH_x86
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    68
# include "vm_version_x86.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    69
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    70
#ifdef TARGET_ARCH_sparc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    71
# include "vm_version_sparc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    72
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    73
#ifdef TARGET_ARCH_zero
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    74
# include "vm_version_zero.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    75
#endif
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 8076
diff changeset
    76
#ifdef TARGET_ARCH_arm
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 8076
diff changeset
    77
# include "vm_version_arm.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 8076
diff changeset
    78
#endif
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 8076
diff changeset
    79
#ifdef TARGET_ARCH_ppc
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 8076
diff changeset
    80
# include "vm_version_ppc.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 8076
diff changeset
    81
#endif
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15202
diff changeset
    82
#if INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    83
#include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    84
#include "gc_implementation/parallelScavenge/psScavenge.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    85
#include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15202
diff changeset
    86
#endif // INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    87
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    88
#include "c1/c1_Compiler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    89
#include "c1/c1_Runtime1.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    90
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    91
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    92
#include "code/compiledIC.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    93
#include "compiler/methodLiveness.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    94
#include "opto/compile.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    95
#include "opto/indexSet.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    96
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7119
diff changeset
    97
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    99
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
HS_DTRACE_PROBE_DECL(hotspot, vm__shutdown);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   101
#endif /* !USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// Statistics printing (method invocation histogram)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   107
GrowableArray<Method*>* collected_invoked_methods;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   109
void collect_invoked_methods(Method* m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  if (m->invocation_count() + m->compiled_invocation_count() >= 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    collected_invoked_methods->push(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   116
GrowableArray<Method*>* collected_profiled_methods;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   118
void collect_profiled_methods(Method* m) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   119
  Thread* thread = Thread::current();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   120
  // This HandleMark prevents a huge amount of handles from being added
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   121
  // to the metadata_handles() array on the thread.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   122
  HandleMark hm(thread);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   123
  methodHandle mh(thread, m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  if ((m->method_data() != NULL) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      (PrintMethodData || CompilerOracle::should_print(mh))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    collected_profiled_methods->push(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   131
int compare_methods(Method** a, Method** b) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // %%% there can be 32-bit overflow here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  return ((*b)->invocation_count() + (*b)->compiled_invocation_count())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
       - ((*a)->invocation_count() + (*a)->compiled_invocation_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
void print_method_invocation_histogram() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  HandleMark hm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   141
  collected_invoked_methods = new GrowableArray<Method*>(1024);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  SystemDictionary::methods_do(collect_invoked_methods);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  collected_invoked_methods->sort(&compare_methods);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  tty->print_cr("Histogram Over MethodOop Invocation Counters (cutoff = %d):", MethodHistogramCutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  tty->print_cr("____Count_(I+C)____Method________________________Module_________________");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  unsigned total = 0, int_total = 0, comp_total = 0, static_total = 0, final_total = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      synch_total = 0, nativ_total = 0, acces_total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  for (int index = 0; index < collected_invoked_methods->length(); index++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   152
    Method* m = collected_invoked_methods->at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    int c = m->invocation_count() + m->compiled_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    if (c >= MethodHistogramCutoff) m->print_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    int_total  += m->invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    comp_total += m->compiled_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    if (m->is_final())        final_total  += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    if (m->is_static())       static_total += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    if (m->is_synchronized()) synch_total  += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    if (m->is_native())       nativ_total  += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    if (m->is_accessor())     acces_total  += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  total = int_total + comp_total;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  tty->print_cr("Invocations summary:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  tty->print_cr("\t%9d (%4.1f%%) interpreted",  int_total,    100.0 * int_total    / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  tty->print_cr("\t%9d (%4.1f%%) compiled",     comp_total,   100.0 * comp_total   / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  tty->print_cr("\t%9d (100%%)  total",         total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  tty->print_cr("\t%9d (%4.1f%%) synchronized", synch_total,  100.0 * synch_total  / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  tty->print_cr("\t%9d (%4.1f%%) final",        final_total,  100.0 * final_total  / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  tty->print_cr("\t%9d (%4.1f%%) static",       static_total, 100.0 * static_total / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  tty->print_cr("\t%9d (%4.1f%%) native",       nativ_total,  100.0 * nativ_total  / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  tty->print_cr("\t%9d (%4.1f%%) accessor",     acces_total,  100.0 * acces_total  / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  SharedRuntime::print_call_statistics(comp_total);
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 print_method_profiling_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  HandleMark hm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   181
  collected_profiled_methods = new GrowableArray<Method*>(1024);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  SystemDictionary::methods_do(collect_profiled_methods);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  collected_profiled_methods->sort(&compare_methods);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  int count = collected_profiled_methods->length();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20053
diff changeset
   186
  int total_size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  if (count > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    for (int index = 0; index < count; index++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   189
      Method* m = collected_profiled_methods->at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      tty->print_cr("------------------------------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      //m->print_name(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      m->print_invocation_count();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20053
diff changeset
   194
      tty->print_cr("  mdo size: %d bytes", m->method_data()->size_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
      tty->cr();
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   196
      // Dump data on parameters if any
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   197
      if (m->method_data() != NULL && m->method_data()->parameters_type_data() != NULL) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   198
        tty->fill_to(2);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   199
        m->method_data()->parameters_type_data()->print_data_on(tty);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   200
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      m->print_codes();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20053
diff changeset
   202
      total_size += m->method_data()->size_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    tty->print_cr("------------------------------------------------------------------------");
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20053
diff changeset
   205
    tty->print_cr("Total MDO size: %d bytes", total_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
void print_bytecode_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    tty->print_cr("[BytecodeCounter::counter_value = %d]", BytecodeCounter::counter_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
AllocStats alloc_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
// General statistics printing (profiling ...)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
void print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  if (CountRuntimeCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    extern Histogram *RuntimeHistogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    RuntimeHistogram->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  if (CountJNICalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    extern Histogram *JNIHistogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    JNIHistogram->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  if (CountJVMCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    extern Histogram *JVMHistogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    JVMHistogram->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  if (MemProfiling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    MemProfiler::disengage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  if (CITime) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    CompileBroker::print_times();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
#ifdef COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  if ((PrintC1Statistics || LogVMOutput || LogCompilation) && UseCompiler) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintC1Statistics);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    Runtime1::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    Deoptimization::print_statistics();
10254
406448a00c51 7071427: AdapterFingerPrint can hold 8 entries per int
never
parents: 9992
diff changeset
   255
    SharedRuntime::print_statistics();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    nmethod::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
#endif /* COMPILER1 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  if ((PrintOptoStatistics || LogVMOutput || LogCompilation) && UseCompiler) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintOptoStatistics);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    Compile::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
#ifndef COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    Deoptimization::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    nmethod::print_statistics();
10254
406448a00c51 7071427: AdapterFingerPrint can hold 8 entries per int
never
parents: 9992
diff changeset
   267
    SharedRuntime::print_statistics();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
#endif //COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    os::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  if (PrintLockStatistics || PrintPreciseBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    OptoRuntime::print_named_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  if (TimeLivenessAnalysis) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    MethodLiveness::print_times();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  if (CollectIndexSetStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    IndexSet::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  if (CountCompiledCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    print_method_invocation_histogram();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  }
7119
fda8c40f4729 6997456: Not possible to build just compiler2
iveresov
parents: 6453
diff changeset
   288
  if (ProfileInterpreter COMPILER1_PRESENT(|| C1UpdateMethodData)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    print_method_profiling_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  if (TimeCompiler) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    COMPILER2_PRESENT(Compile::print_timers();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  if (TimeCompilationPolicy) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    CompilationPolicy::policy()->print_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  if (TimeOopMap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    GenerateOopMap::print_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  if (ProfilerCheckIntervals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    PeriodicTask::print_intervals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  if (PrintSymbolTableSizeHistogram) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    SymbolTable::print_histogram();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    BytecodeCounter::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  if (PrintBytecodePairHistogram) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    BytecodePairHistogram::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  if (PrintCodeCache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    CodeCache::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  if (PrintCodeCache2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    CodeCache::print_internals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  if (PrintClassStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    SystemDictionary::print_class_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  if (PrintMethodStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    SystemDictionary::print_method_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  if (PrintVtableStats) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    klassVtable::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    klassItable::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  if (VerifyOops) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    tty->print_cr("+VerifyOops count: %d", StubRoutines::verify_oop_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  print_bytecode_count();
8320
544210b4dd48 7017124: Fix some VM stats to avoid 32-bit overflow
kvn
parents: 8076
diff changeset
   339
  if (PrintMallocStatistics) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    tty->print("allocation stats: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    alloc_stats.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  if (PrintSystemDictionaryAtExit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    SystemDictionary::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    BiasedLocking::print_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
#ifdef ENABLE_ZAP_DEAD_LOCALS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  if (ZapDeadCompiledLocals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    tty->print_cr("Compile::CompiledZap_count = %d", Compile::CompiledZap_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    tty->print_cr("OptoRuntime::ZapDeadCompiledLocals_count = %d", OptoRuntime::ZapDeadCompiledLocals_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
#endif // ENABLE_ZAP_DEAD_LOCALS
13861
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   361
  // Native memory tracking data
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   362
  if (PrintNMTStatistics) {
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   363
    if (MemTracker::is_on()) {
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   364
      BaselineTTYOutputer outputer(tty);
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   365
      MemTracker::print_memory_usage(outputer, K, false);
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   366
    } else {
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   367
      tty->print_cr(MemTracker::reason());
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   368
    }
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   369
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
#else // PRODUCT MODE STATISTICS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
void print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  if (CITime) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    CompileBroker::print_times();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  }
15201
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 14583
diff changeset
   379
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 14583
diff changeset
   380
  if (PrintCodeCache) {
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 14583
diff changeset
   381
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 14583
diff changeset
   382
    CodeCache::print();
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 14583
diff changeset
   383
  }
f3d755b11424 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 14583
diff changeset
   384
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  if (PrintPreciseBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    OptoRuntime::print_named_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    BiasedLocking::print_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  }
13861
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   393
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   394
  // Native memory tracking data
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   395
  if (PrintNMTStatistics) {
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   396
    if (MemTracker::is_on()) {
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   397
      BaselineTTYOutputer outputer(tty);
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   398
      MemTracker::print_memory_usage(outputer, K, false);
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   399
    } else {
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   400
      tty->print_cr(MemTracker::reason());
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   401
    }
619cff4bfb8b 7188594: Print statistic collected by NMT with VM flag
zgu
parents: 13728
diff changeset
   402
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
// Helper class for registering on_exit calls through JVM_OnExit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    typedef void (*__exit_proc)(void);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11480
diff changeset
   414
class ExitProc : public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  __exit_proc _proc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // void (*_proc)(void);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  ExitProc* _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // ExitProc(void (*proc)(void)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  ExitProc(__exit_proc proc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    _proc = proc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  void evaluate()               { _proc(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  ExitProc* next() const        { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  void set_next(ExitProc* next) { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
// Linked list of registered on_exit procedures
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
static ExitProc* exit_procs = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  void register_on_exit_function(void (*func)(void)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    ExitProc *entry = new ExitProc(func);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    // Classic vm does not throw an exception in case the allocation failed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
      entry->set_next(exit_procs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
      exit_procs = entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
// Note: before_exit() can be executed only once, if more than one threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
//       are trying to shutdown the VM at the same time, only one thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
//       can run before_exit() and all other threads must wait.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
void before_exit(JavaThread * thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  #define BEFORE_EXIT_NOT_RUN 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  #define BEFORE_EXIT_RUNNING 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  #define BEFORE_EXIT_DONE    2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  static jint volatile _before_exit_status = BEFORE_EXIT_NOT_RUN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // Note: don't use a Mutex to guard the entire before_exit(), as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  // JVMTI post_thread_end_event and post_vm_death_event will run native code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // A CAS or OSMutex would work just fine but then we need to manipulate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // thread state for Safepoint. Here we use Monitor wait() and notify_all()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // for synchronization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  { MutexLocker ml(BeforeExit_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    switch (_before_exit_status) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    case BEFORE_EXIT_NOT_RUN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      _before_exit_status = BEFORE_EXIT_RUNNING;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    case BEFORE_EXIT_RUNNING:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      while (_before_exit_status == BEFORE_EXIT_RUNNING) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
        BeforeExit_lock->wait();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      assert(_before_exit_status == BEFORE_EXIT_DONE, "invalid state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    case BEFORE_EXIT_DONE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  // The only difference between this and Win32's _onexit procs is that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  // this version is invoked before any threads get killed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  ExitProc* current = exit_procs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  while (current != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    ExitProc* next = current->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    current->evaluate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    delete current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    current = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // Hang forever on exit if we're reporting an error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  if (ShowMessageBoxOnError && is_error_reported()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    os::infinite_sleep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // Terminate watcher thread - must before disenrolling any periodic task
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5924
diff changeset
   493
  if (PeriodicTask::num_tasks() > 0)
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5924
diff changeset
   494
    WatcherThread::stop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // Print statistics gathered (profiling ...)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  if (Arguments::has_profile()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    FlatProfiler::disengage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    FlatProfiler::print(10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // shut down the StatSampler task
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  StatSampler::disengage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  StatSampler::destroy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
9992
0d82cce3e655 7051430: CMS: ongoing CMS cycle should terminate abruptly to allow prompt JVM termination at exit
ysr
parents: 8478
diff changeset
   506
  // We do not need to explicitly stop concurrent GC threads because the
0d82cce3e655 7051430: CMS: ongoing CMS cycle should terminate abruptly to allow prompt JVM termination at exit
ysr
parents: 8478
diff changeset
   507
  // JVM will be taken down at a safepoint when such threads are inactive --
0d82cce3e655 7051430: CMS: ongoing CMS cycle should terminate abruptly to allow prompt JVM termination at exit
ysr
parents: 8478
diff changeset
   508
  // except for some concurrent G1 threads, see (comment in)
0d82cce3e655 7051430: CMS: ongoing CMS cycle should terminate abruptly to allow prompt JVM termination at exit
ysr
parents: 8478
diff changeset
   509
  // Threads::destroy_vm().
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  // Print GC/heap related information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if (PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    Universe::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    AdaptiveSizePolicyOutput(0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   515
    if (Verbose) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   516
      ClassLoaderDataGraph::dump_on(gclog_or_tty);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13196
diff changeset
   517
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  if (PrintBytecodeHistogram) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    BytecodeHistogram::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  if (JvmtiExport::should_post_thread_life()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    JvmtiExport::post_thread_end(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  }
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10739
diff changeset
   527
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15482
diff changeset
   528
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15482
diff changeset
   529
  EventThreadEnd event;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15482
diff changeset
   530
  if (event.should_commit()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15482
diff changeset
   531
      event.set_javalangthread(java_lang_Thread::thread_id(thread->threadObj()));
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15482
diff changeset
   532
      event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15482
diff changeset
   533
  }
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10739
diff changeset
   534
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // Always call even when there are not JVMTI environments yet, since environments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  // may be attached late and JVMTI must track phases of VM execution
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  JvmtiExport::post_vm_death();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  Threads::shutdown_vm_agents();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  // Terminate the signal thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  // Note: we don't wait until it actually dies.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  os::terminate_signal_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  Universe::heap()->print_tracing_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  { MutexLocker ml(BeforeExit_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    _before_exit_status = BEFORE_EXIT_DONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    BeforeExit_lock->notify_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
15191
d5f9601f72af 8005936: PrintNMTStatistics doesn't work for normal JVM exit
zgu
parents: 14583
diff changeset
   552
  // Shutdown NMT before exit. Otherwise,
d5f9601f72af 8005936: PrintNMTStatistics doesn't work for normal JVM exit
zgu
parents: 14583
diff changeset
   553
  // it will run into trouble when system destroys static variables.
d5f9601f72af 8005936: PrintNMTStatistics doesn't work for normal JVM exit
zgu
parents: 14583
diff changeset
   554
  MemTracker::shutdown(MemTracker::NMT_normal);
d5f9601f72af 8005936: PrintNMTStatistics doesn't work for normal JVM exit
zgu
parents: 14583
diff changeset
   555
20053
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   556
  if (VerifyStringTableAtExit) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   557
    int fail_cnt = 0;
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   558
    {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   559
      MutexLocker ml(StringTable_lock);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   560
      fail_cnt = StringTable::verify_and_compare_entries();
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   561
    }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   562
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   563
    if (fail_cnt != 0) {
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   564
      tty->print_cr("ERROR: fail_cnt=%d", fail_cnt);
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   565
      guarantee(fail_cnt == 0, "unexpected StringTable verification failures");
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   566
    }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   567
  }
a12bd7991794 8019835: Strings interned in different threads equal but does not ==
dcubed
parents: 18687
diff changeset
   568
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  #undef BEFORE_EXIT_NOT_RUN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  #undef BEFORE_EXIT_RUNNING
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  #undef BEFORE_EXIT_DONE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
void vm_exit(int code) {
7720
8283870fc280 6583275: Hotspot crash in vm_perform_shutdown_actions due to uninitialized TLS during out of memory handling
coleenp
parents: 7397
diff changeset
   575
  Thread* thread = ThreadLocalStorage::is_initialized() ?
8283870fc280 6583275: Hotspot crash in vm_perform_shutdown_actions due to uninitialized TLS during out of memory handling
coleenp
parents: 7397
diff changeset
   576
    ThreadLocalStorage::get_thread_slow() : NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  if (thread == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    // we have serious problems -- just exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    vm_direct_exit(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  if (VMThread::vm_thread() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    // Fire off a VM_Exit operation to bring VM to a safepoint and exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    VM_Exit op(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    if (thread->is_Java_thread())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
      ((JavaThread*)thread)->set_thread_state(_thread_in_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    VMThread::execute(&op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    // should never reach here; but in case something wrong with VM Thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    vm_direct_exit(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    // VM thread is gone, just exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    vm_direct_exit(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
void notify_vm_shutdown() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  // For now, just a dtrace probe.
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   599
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  HS_DTRACE_PROBE(hotspot, vm__shutdown);
5542
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 950
diff changeset
   601
  HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   602
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   603
  HOTSPOT_VM_SHUTDOWN();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
   604
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
void vm_direct_exit(int code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  notify_vm_shutdown();
8476
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8107
diff changeset
   609
  os::wait_for_keypress_at_exit();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  ::exit(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
void vm_perform_shutdown_actions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  // Warning: do not call 'exit_globals()' here. All threads are still running.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  // Calling 'exit_globals()' will disable thread-local-storage and cause all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  // kinds of assertions to trigger in debug mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  if (is_init_completed()) {
7720
8283870fc280 6583275: Hotspot crash in vm_perform_shutdown_actions due to uninitialized TLS during out of memory handling
coleenp
parents: 7397
diff changeset
   618
    Thread* thread = ThreadLocalStorage::is_initialized() ?
8283870fc280 6583275: Hotspot crash in vm_perform_shutdown_actions due to uninitialized TLS during out of memory handling
coleenp
parents: 7397
diff changeset
   619
                     ThreadLocalStorage::get_thread_slow() : NULL;
8283870fc280 6583275: Hotspot crash in vm_perform_shutdown_actions due to uninitialized TLS during out of memory handling
coleenp
parents: 7397
diff changeset
   620
    if (thread != NULL && thread->is_Java_thread()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
      // We are leaving the VM, set state to native (in case any OS exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
      // handlers call back to the VM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
      JavaThread* jt = (JavaThread*)thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
      // Must always be walkable or have no last_Java_frame when in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
      // thread_in_native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
      jt->frame_anchor()->make_walkable(jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
      jt->set_thread_state(_thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  notify_vm_shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
void vm_shutdown()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  vm_perform_shutdown_actions();
8476
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8107
diff changeset
   636
  os::wait_for_keypress_at_exit();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  os::shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   640
void vm_abort(bool dump_core) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  vm_perform_shutdown_actions();
8476
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8107
diff changeset
   642
  os::wait_for_keypress_at_exit();
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   643
  os::abort(dump_core);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
void vm_notify_during_shutdown(const char* error, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  if (error != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    tty->print_cr("Error occurred during initialization of VM");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    tty->print("%s", error);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    if (message != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
      tty->print_cr(": %s", message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  if (ShowMessageBoxOnError && WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    fatal("Error occurred during initialization of VM");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
void vm_exit_during_initialization(Handle exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  tty->print_cr("Error occurred during initialization of VM");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  // If there are exceptions on this thread it must be cleared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  // first and here. Any future calls to EXCEPTION_MARK requires
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  // that no pending exceptions exist.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  Thread *THREAD = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  java_lang_Throwable::print(exception, tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  java_lang_Throwable::print_stack_trace(exception(), tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  vm_notify_during_shutdown(NULL, NULL);
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   677
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   678
  // Failure during initialization, we don't want to dump core
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   679
  vm_abort(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7900
diff changeset
   682
void vm_exit_during_initialization(Symbol* ex, const char* message) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  vm_notify_during_shutdown(ex->as_C_string(), message);
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   685
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   686
  // Failure during initialization, we don't want to dump core
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   687
  vm_abort(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
void vm_exit_during_initialization(const char* error, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  vm_notify_during_shutdown(error, message);
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   692
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   693
  // Failure during initialization, we don't want to dump core
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   694
  vm_abort(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
void vm_shutdown_during_initialization(const char* error, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  vm_notify_during_shutdown(error, message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  vm_shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   702
JDK_Version JDK_Version::_current;
13106
cecfb99d6cff 7176856: add the JRE name to the error log
twisti
parents: 11480
diff changeset
   703
const char* JDK_Version::_runtime_name;
14289
aec758622b4b 8002078: hs_err_pid file should report full JDK version string
sla
parents: 13861
diff changeset
   704
const char* JDK_Version::_runtime_version;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
void JDK_Version::initialize() {
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   707
  jdk_version_info info;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   708
  assert(!_current.is_valid(), "Don't initialize twice");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   709
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  void *lib_handle = os::native_java_library();
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   711
  jdk_version_info_fn_t func = CAST_TO_FN_PTR(jdk_version_info_fn_t,
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   712
     os::dll_lookup(lib_handle, "JDK_GetVersionInfo0"));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  if (func == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    // JDK older than 1.6
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   716
    _current._partially_initialized = true;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   717
  } else {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   718
    (*func)(&info, sizeof(info));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   720
    int major = JDK_VERSION_MAJOR(info.jdk_version);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   721
    int minor = JDK_VERSION_MINOR(info.jdk_version);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   722
    int micro = JDK_VERSION_MICRO(info.jdk_version);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   723
    int build = JDK_VERSION_BUILD(info.jdk_version);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   724
    if (major == 1 && minor > 4) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   725
      // We represent "1.5.0" as "5.0", but 1.4.2 as itself.
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   726
      major = minor;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   727
      minor = micro;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   728
      micro = 0;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   729
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   730
    _current = JDK_Version(major, minor, micro, info.update_version,
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   731
                           info.special_update_version, build,
7900
4c7fc6332f7e 6994753: Implement optional hook to a Java method at VM startup.
kevinw
parents: 7720
diff changeset
   732
                           info.thread_park_blocker == 1,
10526
3e92f211533f 4965777: GC changes to support use of discovered field for pending references
ysr
parents: 10254
diff changeset
   733
                           info.post_vm_init_hook_enabled == 1,
3e92f211533f 4965777: GC changes to support use of discovered field for pending references
ysr
parents: 10254
diff changeset
   734
                           info.pending_list_uses_discovered_field == 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  }
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   736
}
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   737
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   738
void JDK_Version::fully_initialize(
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   739
    uint8_t major, uint8_t minor, uint8_t micro, uint8_t update) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   740
  // This is only called when current is less than 1.6 and we've gotten
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   741
  // far enough in the initialization to determine the exact version.
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   742
  assert(major < 6, "not needed for JDK version >= 6");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   743
  assert(is_partially_initialized(), "must not initialize");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   744
  if (major < 5) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   745
    // JDK verison sequence: 1.2.x, 1.3.x, 1.4.x, 5.0.x, 6.0.x, etc.
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   746
    micro = minor;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   747
    minor = major;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   748
    major = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  }
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   750
  _current = JDK_Version(major, minor, micro, update);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
void JDK_Version_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  JDK_Version::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
}
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   756
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   757
static int64_t encode_jdk_version(const JDK_Version& v) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   758
  return
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   759
    ((int64_t)v.major_version()          << (BitsPerByte * 5)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   760
    ((int64_t)v.minor_version()          << (BitsPerByte * 4)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   761
    ((int64_t)v.micro_version()          << (BitsPerByte * 3)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   762
    ((int64_t)v.update_version()         << (BitsPerByte * 2)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   763
    ((int64_t)v.special_update_version() << (BitsPerByte * 1)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   764
    ((int64_t)v.build_number()           << (BitsPerByte * 0));
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   765
}
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   766
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   767
int JDK_Version::compare(const JDK_Version& other) const {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   768
  assert(is_valid() && other.is_valid(), "Invalid version (uninitialized?)");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   769
  if (!is_partially_initialized() && other.is_partially_initialized()) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   770
    return -(other.compare(*this)); // flip the comparators
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   771
  }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   772
  assert(!other.is_partially_initialized(), "Not initialized yet");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   773
  if (is_partially_initialized()) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   774
    assert(other.major_version() >= 6,
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   775
           "Invalid JDK version comparison during initialization");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   776
    return -1;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   777
  } else {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   778
    uint64_t e = encode_jdk_version(*this);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   779
    uint64_t o = encode_jdk_version(other);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   780
    return (e > o) ? 1 : ((e == o) ? 0 : -1);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   781
  }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   782
}
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   783
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   784
void JDK_Version::to_string(char* buffer, size_t buflen) const {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   785
  size_t index = 0;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   786
  if (!is_valid()) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   787
    jio_snprintf(buffer, buflen, "%s", "(uninitialized)");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   788
  } else if (is_partially_initialized()) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   789
    jio_snprintf(buffer, buflen, "%s", "(uninitialized) pre-1.6.0");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   790
  } else {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   791
    index += jio_snprintf(
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   792
        &buffer[index], buflen - index, "%d.%d", _major, _minor);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   793
    if (_micro > 0) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   794
      index += jio_snprintf(&buffer[index], buflen - index, ".%d", _micro);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   795
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   796
    if (_update > 0) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   797
      index += jio_snprintf(&buffer[index], buflen - index, "_%02d", _update);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   798
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   799
    if (_special > 0) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   800
      index += jio_snprintf(&buffer[index], buflen - index, "%c", _special);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   801
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   802
    if (_build > 0) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   803
      index += jio_snprintf(&buffer[index], buflen - index, "-b%02d", _build);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   804
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   805
  }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   806
}