src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 52854 eb4f89bce401
child 54659 62d6baca22fc
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52854
diff changeset
     2
 * Copyright (c) 1999, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52854
diff changeset
    25
#ifndef SHARE_GC_SHARED_THREADLOCALALLOCBUFFER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52854
diff changeset
    26
#define SHARE_GC_SHARED_THREADLOCALALLOCBUFFER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 28511
diff changeset
    28
#include "gc/shared/gcUtil.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#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
    30
#include "runtime/vm_version.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
    32
class ThreadLocalAllocStats;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// ThreadLocalAllocBuffer: a descriptor for thread-local storage used by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// the threads for allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//            It is thread-private at any time, but maybe multiplexed over
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//            time across multiple threads. The park()/unpark() pair is
13925
37f75ba502b1 8000351: Tenuring threshold should be unsigned
jwilhelm
parents: 13195
diff changeset
    38
//            used to make it available for such multiplexing.
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    39
//
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    40
//            Heap sampling is performed via the end and allocation_end
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    41
//            fields.
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    42
//            allocation_end contains the real end of the tlab allocation,
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    43
//            whereas end can be set to an arbitrary spot in the tlab to
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    44
//            trip the return and sample the allocation.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10267
diff changeset
    45
class ThreadLocalAllocBuffer: public CHeapObj<mtThread> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 30764
diff changeset
    47
  friend class JVMCIVMStructs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  HeapWord* _start;                              // address of TLAB
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  HeapWord* _top;                                // address after last allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  HeapWord* _pf_top;                             // allocation prefetch watermark
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    52
  HeapWord* _end;                                // allocation end (can be the sampling end point or _allocation_end)
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    53
  HeapWord* _allocation_end;                     // end for allocations (actual TLAB end, excluding alignment_reserve)
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    54
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  size_t    _desired_size;                       // desired size   (including alignment_reserve)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  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
    57
  size_t    _allocated_before_last_gc;           // total bytes allocated up until the last gc
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    58
  size_t    _bytes_since_last_sample_point;      // bytes since last sample point.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
38220
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 35548
diff changeset
    60
  static size_t   _max_size;                          // maximum size of any TLAB
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 35548
diff changeset
    61
  static int      _reserve_for_allocation_prefetch;   // Reserve at the end of the TLAB
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 35548
diff changeset
    62
  static unsigned _target_refills;                    // expected number of refills between GCs
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  unsigned  _number_of_refills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  unsigned  _fast_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  unsigned  _slow_refill_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  unsigned  _gc_waste;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  unsigned  _slow_allocations;
49946
2143feab681a 8202140: TLAB logging is not correct for G1
sjohanss
parents: 49945
diff changeset
    69
  size_t    _allocated_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  AdaptiveWeightedAverage _allocation_fraction;  // fraction of eden allocated in tlabs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
    73
  void reset_statistics();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void set_start(HeapWord* start)                { _start = start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void set_end(HeapWord* end)                    { _end = end; }
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    77
  void set_allocation_end(HeapWord* ptr)         { _allocation_end = ptr; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  void set_top(HeapWord* top)                    { _top = top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  void set_pf_top(HeapWord* pf_top)              { _pf_top = pf_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void set_desired_size(size_t desired_size)     { _desired_size = desired_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  void set_refill_waste_limit(size_t waste)      { _refill_waste_limit = waste;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  size_t initial_refill_waste_limit()            { return desired_size() / TLABRefillWasteFraction; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static int    target_refills()                 { return _target_refills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  size_t initial_desired_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
    88
  size_t remaining();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Make parsable and release it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  void reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void invariants() const { assert(top() >= start() && top() <= end(), "invalid tlab"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void initialize(HeapWord* start, HeapWord* top, HeapWord* end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
    97
  void insert_filler();
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
    98
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
    99
  void accumulate_and_reset_statistics(ThreadLocalAllocStats* stats);
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   100
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  void print_stats(const char* tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
51742
3dd95a83791b 8210710: Rename ThreadLocalAllocBuffer::myThread() to thread()
pliden
parents: 51332
diff changeset
   103
  Thread* thread();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  int number_of_refills() const { return _number_of_refills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  int fast_refill_waste() const { return _fast_refill_waste; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  int slow_refill_waste() const { return _slow_refill_waste; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  int gc_waste() const          { return _gc_waste; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  int slow_allocations() const  { return _slow_allocations; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
public:
51332
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 50882
diff changeset
   114
  ThreadLocalAllocBuffer() : _allocated_before_last_gc(0), _allocation_fraction(TLABAllocationWeight) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    // do nothing.  tlabs must be inited by initialize() calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
39278
f3f298ae1023 8159045: Remove const from methods returning size_t in threadLocalAllocBuffer.hpp
ehelin
parents: 39220
diff changeset
   118
  static size_t min_size()                       { return align_object_size(MinTLABSize / HeapWordSize) + alignment_reserve(); }
f3f298ae1023 8159045: Remove const from methods returning size_t in threadLocalAllocBuffer.hpp
ehelin
parents: 39220
diff changeset
   119
  static size_t max_size()                       { assert(_max_size != 0, "max_size not set up"); return _max_size; }
f3f298ae1023 8159045: Remove const from methods returning size_t in threadLocalAllocBuffer.hpp
ehelin
parents: 39220
diff changeset
   120
  static size_t max_size_in_bytes()              { return max_size() * BytesPerWord; }
22552
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 13963
diff changeset
   121
  static void set_max_size(size_t max_size)      { _max_size = max_size; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  HeapWord* start() const                        { return _start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  HeapWord* end() const                          { return _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  HeapWord* top() const                          { return _top; }
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
   126
  HeapWord* hard_end();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  HeapWord* pf_top() const                       { return _pf_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  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
   129
  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
   130
  size_t used_bytes() const                      { return pointer_delta(top(), start(), 1); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  size_t free() const                            { return pointer_delta(end(), top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // Don't discard tlab if remaining space is larger than this.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  size_t refill_waste_limit() const              { return _refill_waste_limit; }
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
   134
  size_t bytes_since_last_sample_point() const   { return _bytes_since_last_sample_point; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Allocate size HeapWords. The memory is NOT initialized to zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  inline HeapWord* allocate(size_t size);
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   138
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   139
  // Reserve space at the end of TLAB
52124
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 51817
diff changeset
   140
  static size_t end_reserve();
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1
diff changeset
   141
  static size_t alignment_reserve()              { return align_object_size(end_reserve()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  static size_t alignment_reserve_in_bytes()     { return alignment_reserve() * HeapWordSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Return tlab size or remaining space in eden such that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // space is large enough to hold obj_size and necessary fill space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Otherwise return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  inline size_t compute_size(size_t obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
49945
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49829
diff changeset
   149
  // Compute the minimal needed tlab size for the given object size.
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49829
diff changeset
   150
  static inline size_t compute_min_size(size_t obj_size);
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49829
diff changeset
   151
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // Record slow allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  inline void record_slow_allocation(size_t obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Initialization at startup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  static void startup_initialization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   158
  // Make an in-use tlab parsable.
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   159
  void make_parsable();
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   160
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   161
  // Retire an in-use tlab and optionally collect statistics.
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   162
  void retire(ThreadLocalAllocStats* stats = NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Retire in-use tlab before allocation of a new tlab
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   165
  void retire_before_allocation();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
51794
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51743
diff changeset
   167
  // Resize based on amount of allocation, etc.
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51743
diff changeset
   168
  void resize();
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51743
diff changeset
   169
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  void fill(HeapWord* start, HeapWord* top, size_t new_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
   173
  void set_back_allocation_end();
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
   174
  void set_sample_end();
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
   175
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  static size_t refill_waste_limit_increment()   { return TLABWasteIncrement; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
49829
19b137cb2d42 8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents: 47216
diff changeset
   178
  template <typename T> void addresses_do(T f) {
19b137cb2d42 8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents: 47216
diff changeset
   179
    f(&_start);
19b137cb2d42 8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents: 47216
diff changeset
   180
    f(&_top);
19b137cb2d42 8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents: 47216
diff changeset
   181
    f(&_pf_top);
19b137cb2d42 8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents: 47216
diff changeset
   182
    f(&_end);
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50101
diff changeset
   183
    f(&_allocation_end);
49829
19b137cb2d42 8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents: 47216
diff changeset
   184
  }
19b137cb2d42 8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents: 47216
diff changeset
   185
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  static ByteSize start_offset()                 { return byte_offset_of(ThreadLocalAllocBuffer, _start); }
51743
47466ac8dcf0 8210711: Remove unused offset getters in ThreadLocalAllocBuffer
pliden
parents: 51742
diff changeset
   188
  static ByteSize end_offset()                   { return byte_offset_of(ThreadLocalAllocBuffer, _end); }
47466ac8dcf0 8210711: Remove unused offset getters in ThreadLocalAllocBuffer
pliden
parents: 51742
diff changeset
   189
  static ByteSize top_offset()                   { return byte_offset_of(ThreadLocalAllocBuffer, _top); }
47466ac8dcf0 8210711: Remove unused offset getters in ThreadLocalAllocBuffer
pliden
parents: 51742
diff changeset
   190
  static ByteSize pf_top_offset()                { return byte_offset_of(ThreadLocalAllocBuffer, _pf_top); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   193
class ThreadLocalAllocStats : public StackObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
private:
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   195
  static PerfVariable* _perf_allocating_threads;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   196
  static PerfVariable* _perf_total_refills;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   197
  static PerfVariable* _perf_max_refills;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   198
  static PerfVariable* _perf_total_allocations;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   199
  static PerfVariable* _perf_total_gc_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   200
  static PerfVariable* _perf_max_gc_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   201
  static PerfVariable* _perf_total_slow_refill_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   202
  static PerfVariable* _perf_max_slow_refill_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   203
  static PerfVariable* _perf_total_fast_refill_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   204
  static PerfVariable* _perf_max_fast_refill_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   205
  static PerfVariable* _perf_total_slow_allocations;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   206
  static PerfVariable* _perf_max_slow_allocations;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   208
  static AdaptiveWeightedAverage _allocating_threads_avg;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   210
  unsigned int _allocating_threads;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   211
  unsigned int _total_refills;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   212
  unsigned int _max_refills;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   213
  size_t       _total_allocations;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   214
  size_t       _total_gc_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   215
  size_t       _max_gc_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   216
  size_t       _total_fast_refill_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   217
  size_t       _max_fast_refill_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   218
  size_t       _total_slow_refill_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   219
  size_t       _max_slow_refill_waste;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   220
  unsigned int _total_slow_allocations;
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   221
  unsigned int _max_slow_allocations;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
public:
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   224
  static void initialize();
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   225
  static unsigned int allocating_threads_avg();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   227
  ThreadLocalAllocStats();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   229
  void update_fast_allocations(unsigned int refills,
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   230
                               size_t allocations,
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   231
                               size_t gc_waste,
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   232
                               size_t fast_refill_waste,
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   233
                               size_t slow_refill_waste);
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   234
  void update_slow_allocations(unsigned int allocations);
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   235
  void update(const ThreadLocalAllocStats& other);
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   236
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   237
  void reset();
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51794
diff changeset
   238
  void publish();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   240
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52854
diff changeset
   241
#endif // SHARE_GC_SHARED_THREADLOCALALLOCBUFFER_HPP