hotspot/src/share/vm/runtime/java.cpp
author kamg
Mon, 28 Jul 2008 14:07:44 -0400
changeset 950 6112b627bb36
parent 781 e1baa9c8f16f
child 5542 be05c5ffe905
permissions -rw-r--r--
6721093: -XX:AppendRatio=N not supported Summary: Add mechanism to ignore unsupported flags for a set period of time Reviewed-by: acorn, never, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 234
diff changeset
     2
 * Copyright 1997-2008 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_java.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
HS_DTRACE_PROBE_DECL(hotspot, vm__shutdown);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Statistics printing (method invocation histogram)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
GrowableArray<methodOop>* collected_invoked_methods;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
void collect_invoked_methods(methodOop m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  if (m->invocation_count() + m->compiled_invocation_count() >= 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    collected_invoked_methods->push(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
GrowableArray<methodOop>* collected_profiled_methods;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
void collect_profiled_methods(methodOop m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  methodHandle mh(Thread::current(), m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  if ((m->method_data() != NULL) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
      (PrintMethodData || CompilerOracle::should_print(mh))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    collected_profiled_methods->push(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
int compare_methods(methodOop* a, methodOop* b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // %%% there can be 32-bit overflow here
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  return ((*b)->invocation_count() + (*b)->compiled_invocation_count())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
       - ((*a)->invocation_count() + (*a)->compiled_invocation_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
void print_method_invocation_histogram() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  collected_invoked_methods = new GrowableArray<methodOop>(1024);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  SystemDictionary::methods_do(collect_invoked_methods);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  collected_invoked_methods->sort(&compare_methods);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  tty->print_cr("Histogram Over MethodOop Invocation Counters (cutoff = %d):", MethodHistogramCutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  tty->print_cr("____Count_(I+C)____Method________________________Module_________________");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  unsigned total = 0, int_total = 0, comp_total = 0, static_total = 0, final_total = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      synch_total = 0, nativ_total = 0, acces_total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  for (int index = 0; index < collected_invoked_methods->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    methodOop m = collected_invoked_methods->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    int c = m->invocation_count() + m->compiled_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    if (c >= MethodHistogramCutoff) m->print_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    int_total  += m->invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    comp_total += m->compiled_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    if (m->is_final())        final_total  += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    if (m->is_static())       static_total += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    if (m->is_synchronized()) synch_total  += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    if (m->is_native())       nativ_total  += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    if (m->is_accessor())     acces_total  += c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  total = int_total + comp_total;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  tty->print_cr("Invocations summary:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  tty->print_cr("\t%9d (%4.1f%%) interpreted",  int_total,    100.0 * int_total    / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  tty->print_cr("\t%9d (%4.1f%%) compiled",     comp_total,   100.0 * comp_total   / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  tty->print_cr("\t%9d (100%%)  total",         total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  tty->print_cr("\t%9d (%4.1f%%) synchronized", synch_total,  100.0 * synch_total  / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  tty->print_cr("\t%9d (%4.1f%%) final",        final_total,  100.0 * final_total  / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  tty->print_cr("\t%9d (%4.1f%%) static",       static_total, 100.0 * static_total / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  tty->print_cr("\t%9d (%4.1f%%) native",       nativ_total,  100.0 * nativ_total  / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  tty->print_cr("\t%9d (%4.1f%%) accessor",     acces_total,  100.0 * acces_total  / total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  SharedRuntime::print_call_statistics(comp_total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
void print_method_profiling_data() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  collected_profiled_methods = new GrowableArray<methodOop>(1024);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  SystemDictionary::methods_do(collect_profiled_methods);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  collected_profiled_methods->sort(&compare_methods);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  int count = collected_profiled_methods->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  if (count > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    for (int index = 0; index < count; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      methodOop m = collected_profiled_methods->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      tty->print_cr("------------------------------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      //m->print_name(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      m->print_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      m->print_codes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    tty->print_cr("------------------------------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
void print_bytecode_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    tty->print_cr("[BytecodeCounter::counter_value = %d]", BytecodeCounter::counter_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
AllocStats alloc_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// General statistics printing (profiling ...)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
void print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  if (CountRuntimeCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    extern Histogram *RuntimeHistogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    RuntimeHistogram->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  if (CountJNICalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    extern Histogram *JNIHistogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    JNIHistogram->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  if (CountJVMCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    extern Histogram *JVMHistogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    JVMHistogram->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  if (MemProfiling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    MemProfiler::disengage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  if (CITime) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    CompileBroker::print_times();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
#ifdef COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  if ((PrintC1Statistics || LogVMOutput || LogCompilation) && UseCompiler) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintC1Statistics);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    Runtime1::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    Deoptimization::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    nmethod::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
#endif /* COMPILER1 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  if ((PrintOptoStatistics || LogVMOutput || LogCompilation) && UseCompiler) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintOptoStatistics);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    Compile::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
#ifndef COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    Deoptimization::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    nmethod::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#endif //COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    SharedRuntime::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    os::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  if (PrintLockStatistics || PrintPreciseBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    OptoRuntime::print_named_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  if (TimeLivenessAnalysis) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    MethodLiveness::print_times();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  if (CollectIndexSetStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    IndexSet::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  if (CountCompiledCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    print_method_invocation_histogram();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  if (ProfileInterpreter || Tier1UpdateMethodData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    print_method_profiling_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  if (TimeCompiler) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    COMPILER2_PRESENT(Compile::print_timers();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  if (TimeCompilationPolicy) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    CompilationPolicy::policy()->print_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (TimeOopMap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    GenerateOopMap::print_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (ProfilerCheckIntervals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    PeriodicTask::print_intervals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if (PrintSymbolTableSizeHistogram) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    SymbolTable::print_histogram();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    BytecodeCounter::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  if (PrintBytecodePairHistogram) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    BytecodePairHistogram::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  if (PrintCodeCache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    CodeCache::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  if (PrintCodeCache2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    CodeCache::print_internals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  if (PrintClassStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    SystemDictionary::print_class_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  if (PrintMethodStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    SystemDictionary::print_method_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  if (PrintVtableStats) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    klassVtable::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    klassItable::print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  if (VerifyOops) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    tty->print_cr("+VerifyOops count: %d", StubRoutines::verify_oop_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  print_bytecode_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    tty->print("allocation stats: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    alloc_stats.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  if (PrintSystemDictionaryAtExit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    SystemDictionary::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    BiasedLocking::print_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
#ifdef ENABLE_ZAP_DEAD_LOCALS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  if (ZapDeadCompiledLocals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    tty->print_cr("Compile::CompiledZap_count = %d", Compile::CompiledZap_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    tty->print_cr("OptoRuntime::ZapDeadCompiledLocals_count = %d", OptoRuntime::ZapDeadCompiledLocals_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
#endif // ENABLE_ZAP_DEAD_LOCALS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
#else // PRODUCT MODE STATISTICS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
void print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  if (CITime) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    CompileBroker::print_times();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  if (PrintPreciseBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    OptoRuntime::print_named_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    BiasedLocking::print_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
// Helper class for registering on_exit calls through JVM_OnExit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    typedef void (*__exit_proc)(void);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
class ExitProc : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  __exit_proc _proc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // void (*_proc)(void);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  ExitProc* _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // ExitProc(void (*proc)(void)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  ExitProc(__exit_proc proc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    _proc = proc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  void evaluate()               { _proc(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  ExitProc* next() const        { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  void set_next(ExitProc* next) { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
// Linked list of registered on_exit procedures
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
static ExitProc* exit_procs = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  void register_on_exit_function(void (*func)(void)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    ExitProc *entry = new ExitProc(func);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    // Classic vm does not throw an exception in case the allocation failed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      entry->set_next(exit_procs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      exit_procs = entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
// Note: before_exit() can be executed only once, if more than one threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
//       are trying to shutdown the VM at the same time, only one thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
//       can run before_exit() and all other threads must wait.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
void before_exit(JavaThread * thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  #define BEFORE_EXIT_NOT_RUN 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  #define BEFORE_EXIT_RUNNING 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  #define BEFORE_EXIT_DONE    2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  static jint volatile _before_exit_status = BEFORE_EXIT_NOT_RUN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // Note: don't use a Mutex to guard the entire before_exit(), as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // JVMTI post_thread_end_event and post_vm_death_event will run native code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // A CAS or OSMutex would work just fine but then we need to manipulate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // thread state for Safepoint. Here we use Monitor wait() and notify_all()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // for synchronization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  { MutexLocker ml(BeforeExit_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    switch (_before_exit_status) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    case BEFORE_EXIT_NOT_RUN:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
      _before_exit_status = BEFORE_EXIT_RUNNING;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    case BEFORE_EXIT_RUNNING:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
      while (_before_exit_status == BEFORE_EXIT_RUNNING) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
        BeforeExit_lock->wait();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      assert(_before_exit_status == BEFORE_EXIT_DONE, "invalid state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    case BEFORE_EXIT_DONE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // The only difference between this and Win32's _onexit procs is that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // this version is invoked before any threads get killed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  ExitProc* current = exit_procs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  while (current != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
    ExitProc* next = current->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    current->evaluate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    delete current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    current = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // Hang forever on exit if we're reporting an error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  if (ShowMessageBoxOnError && is_error_reported()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    os::infinite_sleep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // Terminate watcher thread - must before disenrolling any periodic task
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  WatcherThread::stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // Print statistics gathered (profiling ...)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  if (Arguments::has_profile()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    FlatProfiler::disengage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    FlatProfiler::print(10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // shut down the StatSampler task
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  StatSampler::disengage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  StatSampler::destroy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // stop CMS threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  if (UseConcMarkSweepGC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    ConcurrentMarkSweepThread::stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // Print GC/heap related information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  if (PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    Universe::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    AdaptiveSizePolicyOutput(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  if (Arguments::has_alloc_profile()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    // Do one last collection to enumerate all the objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    // allocated since the last one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    Universe::heap()->collect(GCCause::_allocation_profiler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    AllocationProfiler::disengage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    AllocationProfiler::print(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  if (PrintBytecodeHistogram) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    BytecodeHistogram::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  if (JvmtiExport::should_post_thread_life()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    JvmtiExport::post_thread_end(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // Always call even when there are not JVMTI environments yet, since environments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // may be attached late and JVMTI must track phases of VM execution
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  JvmtiExport::post_vm_death();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  Threads::shutdown_vm_agents();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // Terminate the signal thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // Note: we don't wait until it actually dies.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  os::terminate_signal_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  Universe::heap()->print_tracing_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  VTune::exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  { MutexLocker ml(BeforeExit_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    _before_exit_status = BEFORE_EXIT_DONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    BeforeExit_lock->notify_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  #undef BEFORE_EXIT_NOT_RUN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  #undef BEFORE_EXIT_RUNNING
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  #undef BEFORE_EXIT_DONE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
void vm_exit(int code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  Thread* thread = ThreadLocalStorage::thread_index() == -1 ? NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    : ThreadLocalStorage::get_thread_slow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  if (thread == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    // we have serious problems -- just exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    vm_direct_exit(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  if (VMThread::vm_thread() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    // Fire off a VM_Exit operation to bring VM to a safepoint and exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    VM_Exit op(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    if (thread->is_Java_thread())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      ((JavaThread*)thread)->set_thread_state(_thread_in_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    VMThread::execute(&op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    // should never reach here; but in case something wrong with VM Thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    vm_direct_exit(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    // VM thread is gone, just exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    vm_direct_exit(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
void notify_vm_shutdown() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  // For now, just a dtrace probe.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  HS_DTRACE_PROBE(hotspot, vm__shutdown);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
void vm_direct_exit(int code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  notify_vm_shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  ::exit(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
void vm_perform_shutdown_actions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // Warning: do not call 'exit_globals()' here. All threads are still running.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  // Calling 'exit_globals()' will disable thread-local-storage and cause all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  // kinds of assertions to trigger in debug mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  if (is_init_completed()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    Thread* thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    if (thread->is_Java_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
      // We are leaving the VM, set state to native (in case any OS exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
      // handlers call back to the VM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
      JavaThread* jt = (JavaThread*)thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
      // Must always be walkable or have no last_Java_frame when in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
      // thread_in_native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
      jt->frame_anchor()->make_walkable(jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
      jt->set_thread_state(_thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  notify_vm_shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
void vm_shutdown()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  vm_perform_shutdown_actions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  os::shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   505
void vm_abort(bool dump_core) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  vm_perform_shutdown_actions();
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   507
  os::abort(dump_core);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
void vm_notify_during_shutdown(const char* error, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if (error != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    tty->print_cr("Error occurred during initialization of VM");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    tty->print("%s", error);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    if (message != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
      tty->print_cr(": %s", message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  if (ShowMessageBoxOnError && WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    fatal("Error occurred during initialization of VM");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
void vm_exit_during_initialization(Handle exception) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  tty->print_cr("Error occurred during initialization of VM");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // If there are exceptions on this thread it must be cleared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  // first and here. Any future calls to EXCEPTION_MARK requires
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  // that no pending exceptions exist.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  Thread *THREAD = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  java_lang_Throwable::print(exception, tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  java_lang_Throwable::print_stack_trace(exception(), tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  vm_notify_during_shutdown(NULL, NULL);
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   541
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   542
  // 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
   543
  vm_abort(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
void vm_exit_during_initialization(symbolHandle ex, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  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
   549
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   550
  // 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
   551
  vm_abort(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
void vm_exit_during_initialization(const char* error, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  vm_notify_during_shutdown(error, message);
773
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   556
01daf7c809b1 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 234
diff changeset
   557
  // 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
   558
  vm_abort(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
void vm_shutdown_during_initialization(const char* error, const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  vm_notify_during_shutdown(error, message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  vm_shutdown();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   566
JDK_Version JDK_Version::_current;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
void JDK_Version::initialize() {
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   569
  jdk_version_info info;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   570
  assert(!_current.is_valid(), "Don't initialize twice");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   571
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  void *lib_handle = os::native_java_library();
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   573
  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
   574
     os::dll_lookup(lib_handle, "JDK_GetVersionInfo0"));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  if (func == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    // JDK older than 1.6
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   578
    _current._partially_initialized = true;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   579
  } else {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   580
    (*func)(&info, sizeof(info));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   582
    int major = JDK_VERSION_MAJOR(info.jdk_version);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   583
    int minor = JDK_VERSION_MINOR(info.jdk_version);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   584
    int micro = JDK_VERSION_MICRO(info.jdk_version);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   585
    int build = JDK_VERSION_BUILD(info.jdk_version);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   586
    if (major == 1 && minor > 4) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   587
      // 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
   588
      major = minor;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   589
      minor = micro;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   590
      micro = 0;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   591
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   592
    _current = JDK_Version(major, minor, micro, info.update_version,
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   593
                           info.special_update_version, build,
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   594
                           info.thread_park_blocker == 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  }
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   596
}
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   597
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   598
void JDK_Version::fully_initialize(
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   599
    uint8_t major, uint8_t minor, uint8_t micro, uint8_t update) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   600
  // 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
   601
  // far enough in the initialization to determine the exact version.
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   602
  assert(major < 6, "not needed for JDK version >= 6");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   603
  assert(is_partially_initialized(), "must not initialize");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   604
  if (major < 5) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   605
    // 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
   606
    micro = minor;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   607
    minor = major;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   608
    major = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  }
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   610
  _current = JDK_Version(major, minor, micro, update);
1
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 JDK_Version_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  JDK_Version::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
}
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   616
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   617
static int64_t encode_jdk_version(const JDK_Version& v) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   618
  return
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   619
    ((int64_t)v.major_version()          << (BitsPerByte * 5)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   620
    ((int64_t)v.minor_version()          << (BitsPerByte * 4)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   621
    ((int64_t)v.micro_version()          << (BitsPerByte * 3)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   622
    ((int64_t)v.update_version()         << (BitsPerByte * 2)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   623
    ((int64_t)v.special_update_version() << (BitsPerByte * 1)) |
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   624
    ((int64_t)v.build_number()           << (BitsPerByte * 0));
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   625
}
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   626
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   627
int JDK_Version::compare(const JDK_Version& other) const {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   628
  assert(is_valid() && other.is_valid(), "Invalid version (uninitialized?)");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   629
  if (!is_partially_initialized() && other.is_partially_initialized()) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   630
    return -(other.compare(*this)); // flip the comparators
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   631
  }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   632
  assert(!other.is_partially_initialized(), "Not initialized yet");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   633
  if (is_partially_initialized()) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   634
    assert(other.major_version() >= 6,
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   635
           "Invalid JDK version comparison during initialization");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   636
    return -1;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   637
  } else {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   638
    uint64_t e = encode_jdk_version(*this);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   639
    uint64_t o = encode_jdk_version(other);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   640
    return (e > o) ? 1 : ((e == o) ? 0 : -1);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   641
  }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   642
}
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   643
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   644
void JDK_Version::to_string(char* buffer, size_t buflen) const {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   645
  size_t index = 0;
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   646
  if (!is_valid()) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   647
    jio_snprintf(buffer, buflen, "%s", "(uninitialized)");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   648
  } else if (is_partially_initialized()) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   649
    jio_snprintf(buffer, buflen, "%s", "(uninitialized) pre-1.6.0");
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   650
  } else {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   651
    index += jio_snprintf(
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   652
        &buffer[index], buflen - index, "%d.%d", _major, _minor);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   653
    if (_micro > 0) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   654
      index += jio_snprintf(&buffer[index], buflen - index, ".%d", _micro);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   655
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   656
    if (_update > 0) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   657
      index += jio_snprintf(&buffer[index], buflen - index, "_%02d", _update);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   658
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   659
    if (_special > 0) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   660
      index += jio_snprintf(&buffer[index], buflen - index, "%c", _special);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   661
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   662
    if (_build > 0) {
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   663
      index += jio_snprintf(&buffer[index], buflen - index, "-b%02d", _build);
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   664
    }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   665
  }
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 781
diff changeset
   666
}