src/hotspot/share/runtime/perfMemory.cpp
author stefank
Tue, 26 Nov 2019 10:47:46 +0100
changeset 59290 97d13893ec3c
parent 59247 56bf71d64d51
permissions -rw-r--r--
8234748: Clean up atomic and orderAccess includes Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
50080
6fd9fbefd2b4 8202889: Remove trailing LF from perf log
ysuenaga
parents: 47765
diff changeset
     2
 * Copyright (c) 2001, 2018, 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: 1623
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1623
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: 1623
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: 5547
diff changeset
    25
#include "precompiled.hpp"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47669
diff changeset
    26
#include "jvm.h"
46405
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
    27
#include "logging/log.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/arguments.hpp"
59290
97d13893ec3c 8234748: Clean up atomic and orderAccess includes
stefank
parents: 59247
diff changeset
    30
#include "runtime/atomic.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/mutex.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/perfData.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "runtime/perfMemory.hpp"
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    37
#include "runtime/safepoint.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/statSampler.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    39
#include "utilities/align.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "utilities/globalDefinitions.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
1553
fc10c169d15d 6772413: code cleanup
kvn
parents: 1
diff changeset
    42
// Prefix of performance data file.
fc10c169d15d 6772413: code cleanup
kvn
parents: 1
diff changeset
    43
const char               PERFDATA_NAME[] = "hsperfdata";
fc10c169d15d 6772413: code cleanup
kvn
parents: 1
diff changeset
    44
fc10c169d15d 6772413: code cleanup
kvn
parents: 1
diff changeset
    45
// Add 1 for the '_' character between PERFDATA_NAME and pid. The '\0' terminating
fc10c169d15d 6772413: code cleanup
kvn
parents: 1
diff changeset
    46
// character will be included in the sizeof(PERFDATA_NAME) operation.
fc10c169d15d 6772413: code cleanup
kvn
parents: 1
diff changeset
    47
static const size_t PERFDATA_FILENAME_LEN = sizeof(PERFDATA_NAME) +
fc10c169d15d 6772413: code cleanup
kvn
parents: 1
diff changeset
    48
                                            UINT_CHARS + 1;
fc10c169d15d 6772413: code cleanup
kvn
parents: 1
diff changeset
    49
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
char*                    PerfMemory::_start = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
char*                    PerfMemory::_end = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
char*                    PerfMemory::_top = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
size_t                   PerfMemory::_capacity = 0;
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47669
diff changeset
    54
int                      PerfMemory::_initialized = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
PerfDataPrologue*        PerfMemory::_prologue = NULL;
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
    56
bool                     PerfMemory::_destroyed = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void perfMemory_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  if (!UsePerfData) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  PerfMemory::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
void perfMemory_exit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if (!UsePerfData) return;
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
    68
  if (!PerfMemory::is_usable()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    70
  // Only destroy PerfData objects if we're at a safepoint and the
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    71
  // StatSampler is not active. Otherwise, we risk removing PerfData
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    72
  // objects that are currently being used by running JavaThreads
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    73
  // or the StatSampler. This method is invoked while we are not at
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    74
  // a safepoint during a VM abort so leaving the PerfData objects
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    75
  // around may also help diagnose the failure. In rare cases,
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    76
  // PerfData objects are used in parallel with a safepoint. See
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    77
  // the work around in PerfDataManager::destroy().
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  //
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    79
  if (SafepointSynchronize::is_at_safepoint() && !StatSampler::is_active()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    PerfDataManager::destroy();
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    81
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 27880
diff changeset
    83
  // Remove the persistent external resources, if any. This method
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // does not unmap or invalidate any virtual memory allocated during
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  PerfMemory::destroy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
void PerfMemory::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
    92
  if (is_initialized())
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    // initialization already performed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46560
diff changeset
    96
  size_t capacity = align_up(PerfDataMemorySize,
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46560
diff changeset
    97
                             os::vm_allocation_granularity());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
46405
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
    99
  log_debug(perf, memops)("PerfDataMemorySize = " SIZE_FORMAT ","
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
   100
                          " os::vm_allocation_granularity = %d,"
50080
6fd9fbefd2b4 8202889: Remove trailing LF from perf log
ysuenaga
parents: 47765
diff changeset
   101
                          " adjusted size = " SIZE_FORMAT,
46405
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
   102
                          PerfDataMemorySize,
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
   103
                          os::vm_allocation_granularity(),
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
   104
                          capacity);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // allocate PerfData memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  create_memory_region(capacity);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  if (_start == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    // the PerfMemory region could not be created as desired. Rather
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    // than terminating the JVM, we revert to creating the instrumentation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // on the C heap. When running in this mode, external monitoring
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    // clients cannot attach to and monitor this JVM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    // the warning is issued only in debug mode in order to avoid
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    // additional output to the stdout or stderr output streams.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      warning("Could not create PerfData Memory region, reverting to malloc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   123
    _prologue = NEW_C_HEAP_OBJ(PerfDataPrologue, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    // the PerfMemory region was created as expected.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
46405
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
   129
    log_debug(perf, memops)("PerfMemory created: address = " INTPTR_FORMAT ","
50080
6fd9fbefd2b4 8202889: Remove trailing LF from perf log
ysuenaga
parents: 47765
diff changeset
   130
                            " size = " SIZE_FORMAT,
46405
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
   131
                            p2i(_start),
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 33148
diff changeset
   132
                            _capacity);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    _prologue = (PerfDataPrologue *)_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    _end = _start + _capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    _top = _start + sizeof(PerfDataPrologue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  assert(_prologue != NULL, "prologue pointer must be initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
#ifdef VM_LITTLE_ENDIAN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  _prologue->magic = (jint)0xc0c0feca;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  _prologue->byte_order = PERFDATA_LITTLE_ENDIAN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  _prologue->magic = (jint)0xcafec0c0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  _prologue->byte_order = PERFDATA_BIG_ENDIAN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  _prologue->major_version = PERFDATA_MAJOR_VERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  _prologue->minor_version = PERFDATA_MINOR_VERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  _prologue->accessible = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  _prologue->entry_offset = sizeof(PerfDataPrologue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  _prologue->num_entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  _prologue->used = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  _prologue->overflow = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  _prologue->mod_time_stamp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 50429
diff changeset
   159
  Atomic::release_store(&_initialized, 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
void PerfMemory::destroy() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
   164
  if (!is_usable()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  if (_start != NULL && _prologue->overflow != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    // This state indicates that the contiguous memory region exists and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // that it wasn't large enough to hold all the counters. In this case,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // we output a warning message to the user on exit if the -XX:+Verbose
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // flag is set (a debug only flag). External monitoring tools can detect
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // this condition by monitoring the _prologue->overflow word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    // There are two tunables that can help resolve this issue:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    //   - increase the size of the PerfMemory with -XX:PerfDataMemorySize=<n>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    //   - decrease the maximum string constant length with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    //     -XX:PerfMaxStringConstLength=<n>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      warning("PerfMemory Overflow Occurred.\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
              "\tCapacity = " SIZE_FORMAT " bytes"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
              "  Used = " SIZE_FORMAT " bytes"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
              "  Overflow = " INT32_FORMAT " bytes"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
              "\n\tUse -XX:PerfDataMemorySize=<size> to specify larger size.",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
              PerfMemory::capacity(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
              PerfMemory::used(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
              _prologue->overflow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  if (_start != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    // this state indicates that the contiguous memory region was successfully
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    // and that persistent resources may need to be cleaned up. This is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    // expected to be the typical condition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    delete_memory_region();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
   200
  _destroyed = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
// allocate an aligned block of memory from the PerfData memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
// region. This method assumes that the PerfData memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
// was aligned on a double word boundary when created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
char* PerfMemory::alloc(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  if (!UsePerfData) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  MutexLocker ml(PerfDataMemAlloc_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
   213
  assert(is_usable(), "called before init or after destroy");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // check that there is enough memory for this request
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if ((_top + size) >= _end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    _prologue->overflow += (jint)size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  char* result = _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  _top += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  assert(contains(result), "PerfData memory pointer out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  _prologue->used = (jint)used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  _prologue->num_entries = _prologue->num_entries + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
void PerfMemory::mark_updated() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  if (!UsePerfData) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
   238
  assert(is_usable(), "called before init or after destroy");
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
   239
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  _prologue->mod_time_stamp = os::elapsed_counter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// Returns the complete path including the file name of performance data file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// Caller is expected to release the allocated memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
char* PerfMemory::get_perfdata_file_path() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  char* dest_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  if (PerfDataSaveFile != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    // dest_file_name stores the validated file name if file_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    // contains %p which will be replaced by pid.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   251
    dest_file = NEW_C_HEAP_ARRAY(char, JVM_MAXPATHLEN, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    if(!Arguments::copy_expand_pid(PerfDataSaveFile, strlen(PerfDataSaveFile),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
                                   dest_file, JVM_MAXPATHLEN)) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 24424
diff changeset
   254
      FREE_C_HEAP_ARRAY(char, dest_file);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
        warning("Invalid performance data file path name specified, "\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
                "fall back to a default name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      return dest_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // create the name of the file for retaining the instrumentation memory.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   264
  dest_file = NEW_C_HEAP_ARRAY(char, PERFDATA_FILENAME_LEN, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  jio_snprintf(dest_file, PERFDATA_FILENAME_LEN,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
               "%s_%d", PERFDATA_NAME, os::current_process_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  return dest_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
   270
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
   271
bool PerfMemory::is_initialized() {
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 50429
diff changeset
   272
  return Atomic::load_acquire(&_initialized) != 0;
47669
e362049c1cb8 8151815: Could not parse core image with JSnap.
ysuenaga
parents: 47216
diff changeset
   273
}