hotspot/src/share/vm/memory/threadLocalAllocBuffer.hpp
author goetz
Fri, 04 Jul 2014 11:46:01 +0200
changeset 25715 d5a8dbdc5150
parent 22552 a29022212180
child 28511 3de39f0478f8
permissions -rw-r--r--
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Summary: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Reviewed-by: lfoltan, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 22552
diff changeset
     2
 * Copyright (c) 1999, 2014, 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: 5251
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5251
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: 5251
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
#ifndef SHARE_VM_MEMORY_THREADLOCALALLOCBUFFER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_MEMORY_THREADLOCALALLOCBUFFER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "gc_implementation/shared/gcUtil.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/typeArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/perfData.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 22552
diff changeset
    31
#include "runtime/vm_version.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class GlobalTLABStats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// ThreadLocalAllocBuffer: a descriptor for thread-local storage used by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// the threads for allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//            It is thread-private at any time, but maybe multiplexed over
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//            time across multiple threads. The park()/unpark() pair is
13925
37f75ba502b1 8000351: Tenuring threshold should be unsigned
jwilhelm
parents: 13195
diff changeset
    39
//            used to make it available for such multiplexing.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10267
diff changeset
    40
class ThreadLocalAllocBuffer: public CHeapObj<mtThread> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  HeapWord* _start;                              // address of TLAB
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  HeapWord* _top;                                // address after last allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  HeapWord* _pf_top;                             // allocation prefetch watermark
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  HeapWord* _end;                                // allocation end (excluding alignment_reserve)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  size_t    _desired_size;                       // desired size   (including alignment_reserve)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  size_t    _refill_waste_limit;                 // hold onto tlab if free() is larger than this
22552
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 13963
diff changeset
    49
  size_t    _allocated_before_last_gc;           // total bytes allocated up until the last gc
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
22552
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 13963
diff changeset
    51
  static size_t   _max_size;                     // maximum size of any TLAB
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static unsigned _target_refills;               // expected number of refills between GCs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  unsigned  _number_of_refills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  unsigned  _fast_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  unsigned  _slow_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  unsigned  _gc_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  unsigned  _slow_allocations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  AdaptiveWeightedAverage _allocation_fraction;  // fraction of eden allocated in tlabs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  void accumulate_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  void initialize_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  void set_start(HeapWord* start)                { _start = start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  void set_end(HeapWord* end)                    { _end = end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  void set_top(HeapWord* top)                    { _top = top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  void set_pf_top(HeapWord* pf_top)              { _pf_top = pf_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  void set_desired_size(size_t desired_size)     { _desired_size = desired_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  void set_refill_waste_limit(size_t waste)      { _refill_waste_limit = waste;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  size_t initial_refill_waste_limit()            { return desired_size() / TLABRefillWasteFraction; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static int    target_refills()                 { return _target_refills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  size_t initial_desired_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  size_t remaining() const                       { return end() == NULL ? 0 : pointer_delta(hard_end(), top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Make parsable and release it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Resize based on amount of allocation, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  void resize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  void invariants() const { assert(top() >= start() && top() <= end(), "invalid tlab"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void initialize(HeapWord* start, HeapWord* top, HeapWord* end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  void print_stats(const char* tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  Thread* myThread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  int number_of_refills() const { return _number_of_refills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  int fast_refill_waste() const { return _fast_refill_waste; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  int slow_refill_waste() const { return _slow_refill_waste; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  int gc_waste() const          { return _gc_waste; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  int slow_allocations() const  { return _slow_allocations; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static GlobalTLABStats* _global_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  static GlobalTLABStats* global_stats() { return _global_stats; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
public:
22552
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 13963
diff changeset
   105
  ThreadLocalAllocBuffer() : _allocation_fraction(TLABAllocationWeight), _allocated_before_last_gc(0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    // do nothing.  tlabs must be inited by initialize() calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static const size_t min_size()                 { return align_object_size(MinTLABSize / HeapWordSize); }
22552
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 13963
diff changeset
   110
  static const size_t max_size()                 { assert(_max_size != 0, "max_size not set up"); return _max_size; }
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 13963
diff changeset
   111
  static void set_max_size(size_t max_size)      { _max_size = max_size; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  HeapWord* start() const                        { return _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  HeapWord* end() const                          { return _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  HeapWord* hard_end() const                     { return _end + alignment_reserve(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  HeapWord* top() const                          { return _top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  HeapWord* pf_top() const                       { return _pf_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  size_t desired_size() const                    { return _desired_size; }
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
   119
  size_t used() const                            { return pointer_delta(top(), start()); }
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
   120
  size_t used_bytes() const                      { return pointer_delta(top(), start(), 1); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  size_t free() const                            { return pointer_delta(end(), top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Don't discard tlab if remaining space is larger than this.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  size_t refill_waste_limit() const              { return _refill_waste_limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Allocate size HeapWords. The memory is NOT initialized to zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  inline HeapWord* allocate(size_t size);
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   127
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   128
  // Reserve space at the end of TLAB
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   129
  static size_t end_reserve() {
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   130
    int reserve_size = typeArrayOopDesc::header_size(T_INT);
10267
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 7724
diff changeset
   131
    return MAX2(reserve_size, VM_Version::reserve_for_allocation_prefetch());
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   132
  }
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   133
  static size_t alignment_reserve()              { return align_object_size(end_reserve()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  static size_t alignment_reserve_in_bytes()     { return alignment_reserve() * HeapWordSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Return tlab size or remaining space in eden such that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // space is large enough to hold obj_size and necessary fill space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Otherwise return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  inline size_t compute_size(size_t obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Record slow allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  inline void record_slow_allocation(size_t obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Initialization at startup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  static void startup_initialization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Make an in-use tlab parsable, optionally also retiring it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  void make_parsable(bool retire);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Retire in-use tlab before allocation of a new tlab
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  void clear_before_allocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Accumulate statistics across all tlabs before gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static void accumulate_statistics_before_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Resize tlabs for all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  static void resize_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  void fill(HeapWord* start, HeapWord* top, size_t new_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  static size_t refill_waste_limit_increment()   { return TLABWasteIncrement; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  static ByteSize start_offset()                 { return byte_offset_of(ThreadLocalAllocBuffer, _start); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  static ByteSize end_offset()                   { return byte_offset_of(ThreadLocalAllocBuffer, _end  ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  static ByteSize top_offset()                   { return byte_offset_of(ThreadLocalAllocBuffer, _top  ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  static ByteSize pf_top_offset()                { return byte_offset_of(ThreadLocalAllocBuffer, _pf_top  ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  static ByteSize size_offset()                  { return byte_offset_of(ThreadLocalAllocBuffer, _desired_size ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  static ByteSize refill_waste_limit_offset()    { return byte_offset_of(ThreadLocalAllocBuffer, _refill_waste_limit ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  static ByteSize number_of_refills_offset()     { return byte_offset_of(ThreadLocalAllocBuffer, _number_of_refills ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  static ByteSize fast_refill_waste_offset()     { return byte_offset_of(ThreadLocalAllocBuffer, _fast_refill_waste ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  static ByteSize slow_allocations_offset()      { return byte_offset_of(ThreadLocalAllocBuffer, _slow_allocations ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10267
diff changeset
   179
class GlobalTLABStats: public CHeapObj<mtThread> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // Accumulate perfdata in private variables because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // PerfData should be write-only for security reasons
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // (see perfData.hpp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  unsigned _allocating_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  unsigned _total_refills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  unsigned _max_refills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  size_t   _total_allocation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  size_t   _total_gc_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  size_t   _max_gc_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  size_t   _total_slow_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  size_t   _max_slow_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  size_t   _total_fast_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  size_t   _max_fast_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  unsigned _total_slow_allocations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  unsigned _max_slow_allocations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  PerfVariable* _perf_allocating_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  PerfVariable* _perf_total_refills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  PerfVariable* _perf_max_refills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  PerfVariable* _perf_allocation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  PerfVariable* _perf_gc_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  PerfVariable* _perf_max_gc_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  PerfVariable* _perf_slow_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  PerfVariable* _perf_max_slow_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  PerfVariable* _perf_fast_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  PerfVariable* _perf_max_fast_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  PerfVariable* _perf_slow_allocations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  PerfVariable* _perf_max_slow_allocations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  AdaptiveWeightedAverage _allocating_threads_avg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  GlobalTLABStats();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // Initialize all counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Write all perf counters to the perf_counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void publish();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  unsigned allocating_threads_avg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    return MAX2((unsigned)(_allocating_threads_avg.average() + 0.5), 1U);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  size_t allocation() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    return _total_allocation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Update methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  void update_allocating_threads() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    _allocating_threads++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  void update_number_of_refills(unsigned value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    _total_refills += value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    _max_refills    = MAX2(_max_refills, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void update_allocation(size_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    _total_allocation += value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void update_gc_waste(size_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    _total_gc_waste += value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    _max_gc_waste    = MAX2(_max_gc_waste, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  void update_fast_refill_waste(size_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    _total_fast_refill_waste += value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    _max_fast_refill_waste    = MAX2(_max_fast_refill_waste, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  void update_slow_refill_waste(size_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    _total_slow_refill_waste += value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    _max_slow_refill_waste    = MAX2(_max_slow_refill_waste, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  void update_slow_allocations(unsigned value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    _total_slow_allocations += value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    _max_slow_allocations    = MAX2(_max_slow_allocations, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   262
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   263
#endif // SHARE_VM_MEMORY_THREADLOCALALLOCBUFFER_HPP