hotspot/src/share/vm/memory/threadLocalAllocBuffer.cpp
author brutisso
Mon, 21 Nov 2011 07:47:34 +0100
changeset 11170 7663e46f3a54
parent 10565 dc90c239f4ec
child 14583 d70ee55535f4
permissions -rw-r--r--
7110718: -XX:MarkSweepAlwaysCompactCount=0 crashes the JVM Summary: Interpret MarkSweepAlwaysCompactCount < 1 as never do full compaction Reviewed-by: ysr, tonyp, jmasa, johnc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
     2
 * Copyright (c) 1999, 2011, 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: 4636
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4636
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: 4636
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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "memory/genCollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/threadLocalAllocBuffer.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
# include "thread_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
# include "thread_solaris.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
# include "thread_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 7724
diff changeset
    41
#ifdef TARGET_OS_FAMILY_bsd
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 7724
diff changeset
    42
# include "thread_bsd.inline.hpp"
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 7724
diff changeset
    43
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
// Thread-Local Edens support
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// static member initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
unsigned         ThreadLocalAllocBuffer::_target_refills = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
GlobalTLABStats* ThreadLocalAllocBuffer::_global_stats   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
void ThreadLocalAllocBuffer::clear_before_allocation() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _slow_refill_waste += (unsigned)remaining();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  make_parsable(true);   // also retire the TLAB
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
void ThreadLocalAllocBuffer::accumulate_statistics_before_gc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  global_stats()->initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    thread->tlab().accumulate_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    thread->tlab().initialize_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Publish new stats if some allocation occurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  if (global_stats()->allocation() != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    global_stats()->publish();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    if (PrintTLAB) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      global_stats()->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
void ThreadLocalAllocBuffer::accumulate_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  size_t capacity = Universe::heap()->tlab_capacity(myThread()) / HeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  size_t unused   = Universe::heap()->unsafe_max_tlab_alloc(myThread()) / HeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  size_t used     = capacity - unused;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Update allocation history if a reasonable amount of eden was allocated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  bool update_allocation_history = used > 0.5 * capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _gc_waste += (unsigned)remaining();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  if (PrintTLAB && (_number_of_refills > 0 || Verbose)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    print_stats("gc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  if (_number_of_refills > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    if (update_allocation_history) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
      // Average the fraction of eden allocated in a tlab by this
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      // thread for use in the next resize operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
      // _gc_waste is not subtracted because it's included in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      // "used".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      size_t allocation = _number_of_refills * desired_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      double alloc_frac = allocation / (double) used;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      _allocation_fraction.sample(alloc_frac);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    global_stats()->update_allocating_threads();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    global_stats()->update_number_of_refills(_number_of_refills);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    global_stats()->update_allocation(_number_of_refills * desired_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    global_stats()->update_gc_waste(_gc_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    global_stats()->update_slow_refill_waste(_slow_refill_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    global_stats()->update_fast_refill_waste(_fast_refill_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    assert(_number_of_refills == 0 && _fast_refill_waste == 0 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
           _slow_refill_waste == 0 && _gc_waste          == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
           "tlab stats == 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  global_stats()->update_slow_allocations(_slow_allocations);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// Fills the current tlab with a dummy filler array to create
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// an illusion of a contiguous Eden and optionally retires the tlab.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// Waste accounting should be done in caller as appropriate; see,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// for example, clear_before_allocation().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
void ThreadLocalAllocBuffer::make_parsable(bool retire) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  if (end() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    invariants();
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
   120
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
   121
    if (retire) {
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
   122
      myThread()->incr_allocated_bytes(used_bytes());
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
   123
    }
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
   124
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 2105
diff changeset
   125
    CollectedHeap::fill_with_object(top(), hard_end(), retire);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    if (retire || ZeroTLAB) {  // "Reset" the TLAB
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      set_start(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      set_top(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      set_pf_top(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      set_end(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  assert(!(retire || ZeroTLAB)  ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
         (start() == NULL && end() == NULL && top() == NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
         "TLAB must be reset");
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 ThreadLocalAllocBuffer::resize_all_tlabs() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    thread->tlab().resize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
void ThreadLocalAllocBuffer::resize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  if (ResizeTLAB) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    // Compute the next tlab size using expected allocation amount
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    size_t alloc = (size_t)(_allocation_fraction.average() *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                            (Universe::heap()->tlab_capacity(myThread()) / HeapWordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    size_t new_size = alloc / _target_refills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    new_size = MIN2(MAX2(new_size, min_size()), max_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    size_t aligned_new_size = align_object_size(new_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    if (PrintTLAB && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
      gclog_or_tty->print("TLAB new size: thread: " INTPTR_FORMAT " [id: %2d]"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                          " refills %d  alloc: %8.6f desired_size: " SIZE_FORMAT " -> " SIZE_FORMAT "\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
                          myThread(), myThread()->osthread()->thread_id(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                          _target_refills, _allocation_fraction.average(), desired_size(), aligned_new_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    set_desired_size(aligned_new_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    set_refill_waste_limit(initial_refill_waste_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
void ThreadLocalAllocBuffer::initialize_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    _number_of_refills = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    _fast_refill_waste = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    _slow_refill_waste = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    _gc_waste          = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    _slow_allocations  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
void ThreadLocalAllocBuffer::fill(HeapWord* start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
                                  HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
                                  size_t    new_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  _number_of_refills++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (PrintTLAB && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    print_stats("fill");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  assert(top <= start + new_size - alignment_reserve(), "size too small");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  initialize(start, top, start + new_size - alignment_reserve());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // Reset amount of internal fragmentation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  set_refill_waste_limit(initial_refill_waste_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
void ThreadLocalAllocBuffer::initialize(HeapWord* start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
                                        HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                                        HeapWord* end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  set_start(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  set_top(top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  set_pf_top(top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  set_end(end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  invariants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
void ThreadLocalAllocBuffer::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  initialize(NULL,                    // start
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
             NULL,                    // top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
             NULL);                   // end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  set_desired_size(initial_desired_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // Following check is needed because at startup the main (primordial)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // thread is initialized before the heap is.  The initialization for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // this thread is redone in startup_initialization below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  if (Universe::heap() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    size_t capacity   = Universe::heap()->tlab_capacity(myThread()) / HeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    double alloc_frac = desired_size() * target_refills() / (double) capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    _allocation_fraction.sample(alloc_frac);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  set_refill_waste_limit(initial_refill_waste_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  initialize_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
void ThreadLocalAllocBuffer::startup_initialization() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // Assuming each thread's active tlab is, on average,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // 1/2 full at a GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  _target_refills = 100 / (2 * TLABWasteTargetPercent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  _target_refills = MAX2(_target_refills, (unsigned)1U);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  _global_stats = new GlobalTLABStats();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // During jvm startup, the main (primordial) thread is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // before the heap is initialized.  So reinitialize it now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  guarantee(Thread::current()->is_Java_thread(), "tlab initialization thread not Java thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  Thread::current()->tlab().initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  if (PrintTLAB && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    gclog_or_tty->print("TLAB min: " SIZE_FORMAT " initial: " SIZE_FORMAT " max: " SIZE_FORMAT "\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
                        min_size(), Thread::current()->tlab().initial_desired_size(), max_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
size_t ThreadLocalAllocBuffer::initial_desired_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  size_t init_sz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  if (TLABSize > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    init_sz = MIN2(TLABSize / HeapWordSize, max_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  } else if (global_stats() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    // Startup issue - main thread initialized before heap initialized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    init_sz = min_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    // Initial size is a function of the average number of allocating threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    unsigned nof_threads = global_stats()->allocating_threads_avg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    init_sz  = (Universe::heap()->tlab_capacity(myThread()) / HeapWordSize) /
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                      (nof_threads * target_refills());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    init_sz = align_object_size(init_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    init_sz = MIN2(MAX2(init_sz, min_size()), max_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  return init_sz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
const size_t ThreadLocalAllocBuffer::max_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // TLABs can't be bigger than we can fill with a int[Integer.MAX_VALUE].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // This restriction could be removed by enabling filling with multiple arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // If we compute that the reasonable way as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  //    header_size + ((sizeof(jint) * max_jint) / HeapWordSize)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // we'll overflow on the multiply, so we do the divide first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // We actually lose a little by dividing first,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // but that just makes the TLAB  somewhat smaller than the biggest array,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // which is fine, since we'll be able to fill that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  size_t unaligned_max_size = typeArrayOopDesc::header_size(T_INT) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
                              sizeof(jint) *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
                              ((juint) max_jint / (size_t) HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  return align_size_down(unaligned_max_size, MinObjAlignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
void ThreadLocalAllocBuffer::print_stats(const char* tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  Thread* thrd = myThread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  size_t waste = _gc_waste + _slow_refill_waste + _fast_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  size_t alloc = _number_of_refills * _desired_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  double waste_percent = alloc == 0 ? 0.0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                      100.0 * waste / alloc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  size_t tlab_used  = Universe::heap()->tlab_capacity(thrd) -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
                      Universe::heap()->unsafe_max_tlab_alloc(thrd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  gclog_or_tty->print("TLAB: %s thread: " INTPTR_FORMAT " [id: %2d]"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                      " desired_size: " SIZE_FORMAT "KB"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
                      " slow allocs: %d  refill waste: " SIZE_FORMAT "B"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
                      " alloc:%8.5f %8.0fKB refills: %d waste %4.1f%% gc: %dB"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
                      " slow: %dB fast: %dB\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
                      tag, thrd, thrd->osthread()->thread_id(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                      _desired_size / (K / HeapWordSize),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
                      _slow_allocations, _refill_waste_limit * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
                      _allocation_fraction.average(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
                      _allocation_fraction.average() * tlab_used / K,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
                      _number_of_refills, waste_percent,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
                      _gc_waste * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
                      _slow_refill_waste * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
                      _fast_refill_waste * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
void ThreadLocalAllocBuffer::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  HeapWord* p = start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  HeapWord* t = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  HeapWord* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  while (p < t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    oop(p)->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    prev_p = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    p += oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  guarantee(p == top(), "end of last object must match end of space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
Thread* ThreadLocalAllocBuffer::myThread() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  return (Thread*)(((char *)this) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
                   in_bytes(start_offset()) -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
                   in_bytes(Thread::tlab_start_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
GlobalTLABStats::GlobalTLABStats() :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  _allocating_threads_avg(TLABAllocationWeight) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  _allocating_threads_avg.sample(1); // One allocating thread at startup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    char* cname = PerfDataManager::counter_name("tlab", "allocThreads");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    _perf_allocating_threads =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    cname = PerfDataManager::counter_name("tlab", "fills");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    _perf_total_refills =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    cname = PerfDataManager::counter_name("tlab", "maxFills");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    _perf_max_refills =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    cname = PerfDataManager::counter_name("tlab", "alloc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    _perf_allocation =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    cname = PerfDataManager::counter_name("tlab", "gcWaste");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    _perf_gc_waste =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    cname = PerfDataManager::counter_name("tlab", "maxGcWaste");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    _perf_max_gc_waste =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    cname = PerfDataManager::counter_name("tlab", "slowWaste");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    _perf_slow_refill_waste =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    cname = PerfDataManager::counter_name("tlab", "maxSlowWaste");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    _perf_max_slow_refill_waste =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    cname = PerfDataManager::counter_name("tlab", "fastWaste");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    _perf_fast_refill_waste =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    cname = PerfDataManager::counter_name("tlab", "maxFastWaste");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    _perf_max_fast_refill_waste =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    cname = PerfDataManager::counter_name("tlab", "slowAlloc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    _perf_slow_allocations =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    cname = PerfDataManager::counter_name("tlab", "maxSlowAlloc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    _perf_max_slow_allocations =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
      PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
void GlobalTLABStats::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // Clear counters summarizing info from all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  _allocating_threads      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  _total_refills           = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  _max_refills             = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  _total_allocation        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  _total_gc_waste          = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  _max_gc_waste            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  _total_slow_refill_waste = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  _max_slow_refill_waste   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  _total_fast_refill_waste = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  _max_fast_refill_waste   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  _total_slow_allocations  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  _max_slow_allocations    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
void GlobalTLABStats::publish() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  _allocating_threads_avg.sample(_allocating_threads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    _perf_allocating_threads   ->set_value(_allocating_threads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    _perf_total_refills        ->set_value(_total_refills);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    _perf_max_refills          ->set_value(_max_refills);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    _perf_allocation           ->set_value(_total_allocation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    _perf_gc_waste             ->set_value(_total_gc_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    _perf_max_gc_waste         ->set_value(_max_gc_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    _perf_slow_refill_waste    ->set_value(_total_slow_refill_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    _perf_max_slow_refill_waste->set_value(_max_slow_refill_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    _perf_fast_refill_waste    ->set_value(_total_fast_refill_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    _perf_max_fast_refill_waste->set_value(_max_fast_refill_waste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    _perf_slow_allocations     ->set_value(_total_slow_allocations);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    _perf_max_slow_allocations ->set_value(_max_slow_allocations);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
void GlobalTLABStats::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  size_t waste = _total_gc_waste + _total_slow_refill_waste + _total_fast_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  double waste_percent = _total_allocation == 0 ? 0.0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
                         100.0 * waste / _total_allocation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  gclog_or_tty->print("TLAB totals: thrds: %d  refills: %d max: %d"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
                      " slow allocs: %d max %d waste: %4.1f%%"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
                      " gc: " SIZE_FORMAT "B max: " SIZE_FORMAT "B"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
                      " slow: " SIZE_FORMAT "B max: " SIZE_FORMAT "B"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
                      " fast: " SIZE_FORMAT "B max: " SIZE_FORMAT "B\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
                      _allocating_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
                      _total_refills, _max_refills,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
                      _total_slow_allocations, _max_slow_allocations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
                      waste_percent,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
                      _total_gc_waste * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
                      _max_gc_waste * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
                      _total_slow_refill_waste * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
                      _max_slow_refill_waste * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
                      _total_fast_refill_waste * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
                      _max_fast_refill_waste * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
}