hotspot/src/share/vm/runtime/perfMemory.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 1553 fc10c169d15d
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2001-2006 Sun Microsystems, Inc.  All Rights Reserved.
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/_perfMemory.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
char*                    PerfMemory::_start = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
char*                    PerfMemory::_end = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
char*                    PerfMemory::_top = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
size_t                   PerfMemory::_capacity = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
jint                     PerfMemory::_initialized = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
PerfDataPrologue*        PerfMemory::_prologue = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
void perfMemory_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  if (!UsePerfData) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  PerfMemory::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
void perfMemory_exit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  if (!UsePerfData) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  if (!PerfMemory::is_initialized()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // if the StatSampler is active, then we don't want to remove
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // resources it may be dependent on. Typically, the StatSampler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // is disengaged from the watcher thread when this method is called,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // but it is not disengaged if this method is invoked during a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // VM abort.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  if (!StatSampler::is_active())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    PerfDataManager::destroy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // remove the persistent external resources, if any. this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // does not unmap or invalidate any virtual memory allocated during
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  PerfMemory::destroy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
void PerfMemory::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  if (_prologue != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    // initialization already performed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  size_t capacity = align_size_up(PerfDataMemorySize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                  os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (PerfTraceMemOps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    tty->print("PerfDataMemorySize = " SIZE_FORMAT ","
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
               " os::vm_allocation_granularity = " SIZE_FORMAT ","
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
               " adjusted size = " SIZE_FORMAT "\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
               PerfDataMemorySize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
               os::vm_allocation_granularity(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
               capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // allocate PerfData memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  create_memory_region(capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  if (_start == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    // the PerfMemory region could not be created as desired. Rather
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    // than terminating the JVM, we revert to creating the instrumentation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // on the C heap. When running in this mode, external monitoring
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // clients cannot attach to and monitor this JVM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    // the warning is issued only in debug mode in order to avoid
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // additional output to the stdout or stderr output streams.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      warning("Could not create PerfData Memory region, reverting to malloc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    _prologue = NEW_C_HEAP_OBJ(PerfDataPrologue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    // the PerfMemory region was created as expected.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    if (PerfTraceMemOps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
      tty->print("PerfMemory created: address = " INTPTR_FORMAT ","
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                 " size = " SIZE_FORMAT "\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                 (void*)_start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                 _capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    _prologue = (PerfDataPrologue *)_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    _end = _start + _capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    _top = _start + sizeof(PerfDataPrologue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  assert(_prologue != NULL, "prologue pointer must be initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
#ifdef VM_LITTLE_ENDIAN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  _prologue->magic = (jint)0xc0c0feca;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  _prologue->byte_order = PERFDATA_LITTLE_ENDIAN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  _prologue->magic = (jint)0xcafec0c0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  _prologue->byte_order = PERFDATA_BIG_ENDIAN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  _prologue->major_version = PERFDATA_MAJOR_VERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _prologue->minor_version = PERFDATA_MINOR_VERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  _prologue->accessible = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  _prologue->entry_offset = sizeof(PerfDataPrologue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  _prologue->num_entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  _prologue->used = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  _prologue->overflow = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  _prologue->mod_time_stamp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  OrderAccess::release_store(&_initialized, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
void PerfMemory::destroy() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  assert(_prologue != NULL, "prologue pointer must be initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  if (_start != NULL && _prologue->overflow != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    // This state indicates that the contiguous memory region exists and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    // that it wasn't large enough to hold all the counters. In this case,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // we output a warning message to the user on exit if the -XX:+Verbose
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    // flag is set (a debug only flag). External monitoring tools can detect
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    // this condition by monitoring the _prologue->overflow word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    // There are two tunables that can help resolve this issue:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    //   - increase the size of the PerfMemory with -XX:PerfDataMemorySize=<n>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    //   - decrease the maximum string constant length with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    //     -XX:PerfMaxStringConstLength=<n>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
      warning("PerfMemory Overflow Occurred.\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
              "\tCapacity = " SIZE_FORMAT " bytes"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
              "  Used = " SIZE_FORMAT " bytes"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
              "  Overflow = " INT32_FORMAT " bytes"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
              "\n\tUse -XX:PerfDataMemorySize=<size> to specify larger size.",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
              PerfMemory::capacity(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
              PerfMemory::used(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
              _prologue->overflow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  if (_start != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // this state indicates that the contiguous memory region was successfully
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // and that persistent resources may need to be cleaned up. This is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // expected to be the typical condition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    delete_memory_region();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  _start = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  _end = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  _top = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  _prologue = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  _capacity = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// allocate an aligned block of memory from the PerfData memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
// region. This method assumes that the PerfData memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// was aligned on a double word boundary when created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
char* PerfMemory::alloc(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  if (!UsePerfData) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  MutexLocker ml(PerfDataMemAlloc_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  assert(_prologue != NULL, "called before initialization");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // check that there is enough memory for this request
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  if ((_top + size) >= _end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    _prologue->overflow += (jint)size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  char* result = _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  _top += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  assert(contains(result), "PerfData memory pointer out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  _prologue->used = (jint)used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  _prologue->num_entries = _prologue->num_entries + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
void PerfMemory::mark_updated() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  if (!UsePerfData) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  _prologue->mod_time_stamp = os::elapsed_counter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// Returns the complete path including the file name of performance data file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// Caller is expected to release the allocated memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
char* PerfMemory::get_perfdata_file_path() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  char* dest_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  if (PerfDataSaveFile != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // dest_file_name stores the validated file name if file_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    // contains %p which will be replaced by pid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    dest_file = NEW_C_HEAP_ARRAY(char, JVM_MAXPATHLEN);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    if(!Arguments::copy_expand_pid(PerfDataSaveFile, strlen(PerfDataSaveFile),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
                                   dest_file, JVM_MAXPATHLEN)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
      FREE_C_HEAP_ARRAY(char, dest_file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
        warning("Invalid performance data file path name specified, "\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
                "fall back to a default name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      return dest_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // create the name of the file for retaining the instrumentation memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  dest_file = NEW_C_HEAP_ARRAY(char, PERFDATA_FILENAME_LEN);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  jio_snprintf(dest_file, PERFDATA_FILENAME_LEN,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
               "%s_%d", PERFDATA_NAME, os::current_process_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  return dest_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}