src/hotspot/share/gc/epsilon/epsilonHeap.cpp
author shade
Sun, 20 May 2018 22:03:10 +0200
branchepsilon-gc-branch
changeset 56577 338a117fb65c
parent 56510 54c1aa06c1d8
child 56580 b6c934c3fda2
permissions -rw-r--r--
Elastic TLAB machinery should handle decays
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
     1
/*
56350
56014b46de69 Update copyrights
shade
parents: 56276
diff changeset
     2
 * Copyright (c) 2017, 2018, Red Hat, Inc. All rights reserved.
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
     3
 *
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
     6
 * published by the Free Software Foundation.
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
     7
 *
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
     8
 * This code is distributed in the hope that it will be useful, but WITHOUT
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
     9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    10
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    11
 * version 2 for more details (a copy is included in the LICENSE file that
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    12
 * accompanied this code).
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    13
 *
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License version
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    15
 * 2 along with this work; if not, write to the Free Software Foundation,
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    16
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    17
 *
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    18
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    19
 * or visit www.oracle.com if you need additional information or have any
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    20
 * questions.
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    21
 *
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    22
 */
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    23
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    24
#include "precompiled.hpp"
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
    25
#include "gc/epsilon/epsilonHeap.hpp"
55974
shade
parents: 55939
diff changeset
    26
#include "gc/epsilon/epsilonMemoryPool.hpp"
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
    27
#include "gc/epsilon/epsilonThreadLocalData.hpp"
56354
4b9449c330fb Fix non-PCH build
shade
parents: 56353
diff changeset
    28
#include "memory/allocation.hpp"
4b9449c330fb Fix non-PCH build
shade
parents: 56353
diff changeset
    29
#include "memory/allocation.inline.hpp"
4b9449c330fb Fix non-PCH build
shade
parents: 56353
diff changeset
    30
#include "memory/resourceArea.hpp"
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    31
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
    32
jint EpsilonHeap::initialize() {
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    33
  size_t init_byte_size = _policy->initial_heap_byte_size();
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    34
  size_t max_byte_size = _policy->max_heap_byte_size();
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    35
  size_t align = _policy->heap_alignment();
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    36
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    37
  ReservedSpace heap_rs = Universe::reserve_heap(max_byte_size,  align);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    38
  _virtual_space.initialize(heap_rs, init_byte_size);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    39
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    40
  MemRegion committed_region((HeapWord*)_virtual_space.low(), (HeapWord*)_virtual_space.high());
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    41
  MemRegion reserved_region((HeapWord*)_virtual_space.low_boundary(), (HeapWord*)_virtual_space.high_boundary());
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    42
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    43
  initialize_reserved_region(reserved_region.start(), reserved_region.end());
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    44
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    45
  _space = new ContiguousSpace();
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    46
  _space->initialize(committed_region, true, true);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    47
56449
a628f1855f4c Fix Epsilon after the merges
shade
parents: 56422
diff changeset
    48
  BarrierSet::set_barrier_set(new EpsilonBarrierSet());
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    49
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    50
  _max_tlab_size = MIN2(CollectedHeap::max_tlab_size(), EpsilonMaxTLABSize / HeapWordSize);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    51
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    52
  _monitoring_support = new EpsilonMonitoringSupport(this);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    53
  _last_counter_update = 0;
55979
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
    54
  _last_heap_print = 0;
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
    55
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
    56
  _step_counter_update = MIN2<size_t>(max_byte_size / 16, EpsilonUpdateCountersStep);
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
    57
  _step_heap_print = (EpsilonPrintHeapStep == 0) ? SIZE_MAX : (max_byte_size / EpsilonPrintHeapStep);
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    58
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    59
  _decay_time_ns = (int64_t) EpsilonTLABDecayTime * 1000 * 1000;
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    60
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    61
  if (init_byte_size != max_byte_size) {
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    62
    log_info(gc)("Initialized with " SIZE_FORMAT "M heap, resizeable to up to " SIZE_FORMAT "M heap with " SIZE_FORMAT "M steps",
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    63
                 init_byte_size / M, max_byte_size / M, EpsilonMinHeapExpand / M);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    64
  } else {
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    65
    log_info(gc)("Initialized with " SIZE_FORMAT "M non-resizeable heap", init_byte_size / M);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    66
  }
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    67
  if (UseTLAB) {
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    68
    log_info(gc)("Using TLAB allocation; max: " SIZE_FORMAT "K", _max_tlab_size * HeapWordSize / K);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    69
    if (EpsilonElasticTLAB) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    70
      log_info(gc)("Elastic TLABs with elasticity = %.2fx", EpsilonTLABElasticity);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    71
    }
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    72
    if (EpsilonElasticTLABDecay) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    73
      log_info(gc)("Elastic TLABs with decay = " INT64_FORMAT " ms", EpsilonTLABDecayTime);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
    74
    }
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    75
  } else {
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    76
    log_info(gc)("Not using TLAB allocation");
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    77
  }
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    78
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    79
  return JNI_OK;
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    80
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
    81
55974
shade
parents: 55939
diff changeset
    82
void EpsilonHeap::post_initialize() {
shade
parents: 55939
diff changeset
    83
  CollectedHeap::post_initialize();
shade
parents: 55939
diff changeset
    84
}
shade
parents: 55939
diff changeset
    85
shade
parents: 55939
diff changeset
    86
void EpsilonHeap::initialize_serviceability() {
55975
26d15be1c920 Fixup serviceability for Epsilon.
shade
parents: 55974
diff changeset
    87
  _pool = new EpsilonMemoryPool(this);
26d15be1c920 Fixup serviceability for Epsilon.
shade
parents: 55974
diff changeset
    88
  _memory_manager.add_pool(_pool);
55974
shade
parents: 55939
diff changeset
    89
}
shade
parents: 55939
diff changeset
    90
shade
parents: 55939
diff changeset
    91
GrowableArray<GCMemoryManager*> EpsilonHeap::memory_managers() {
55975
26d15be1c920 Fixup serviceability for Epsilon.
shade
parents: 55974
diff changeset
    92
  GrowableArray<GCMemoryManager*> memory_managers(1);
26d15be1c920 Fixup serviceability for Epsilon.
shade
parents: 55974
diff changeset
    93
  memory_managers.append(&_memory_manager);
55974
shade
parents: 55939
diff changeset
    94
  return memory_managers;
shade
parents: 55939
diff changeset
    95
}
shade
parents: 55939
diff changeset
    96
shade
parents: 55939
diff changeset
    97
GrowableArray<MemoryPool*> EpsilonHeap::memory_pools() {
56492
e1871d34a188 Small bugfixes and improvements
shade
parents: 56449
diff changeset
    98
  GrowableArray<MemoryPool*> memory_pools(1);
55975
26d15be1c920 Fixup serviceability for Epsilon.
shade
parents: 55974
diff changeset
    99
  memory_pools.append(_pool);
55974
shade
parents: 55939
diff changeset
   100
  return memory_pools;
shade
parents: 55939
diff changeset
   101
}
shade
parents: 55939
diff changeset
   102
56352
ebb84e128ed3 Whitespace, formatting, dead code elimination
shade
parents: 56350
diff changeset
   103
size_t EpsilonHeap::unsafe_max_tlab_alloc(Thread* thr) const {
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   104
  // Return max allocatable TLAB size, and let allocation path figure out
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   105
  // the actual TLAB allocation size.
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   106
  return _max_tlab_size;
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   107
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   108
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   109
EpsilonHeap* EpsilonHeap::heap() {
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   110
  CollectedHeap* heap = Universe::heap();
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   111
  assert(heap != NULL, "Uninitialized access to EpsilonHeap::heap()");
56492
e1871d34a188 Small bugfixes and improvements
shade
parents: 56449
diff changeset
   112
  assert(heap->kind() == CollectedHeap::Epsilon, "Not an Epsilon heap");
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   113
  return (EpsilonHeap*)heap;
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   114
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   115
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   116
HeapWord* EpsilonHeap::allocate_work(size_t size) {
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   117
  HeapWord* res = _space->par_allocate(size);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   118
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   119
  while (res == NULL) {
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   120
    // Allocation failed, attempt expansion, and retry:
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   121
    MutexLockerEx ml(Heap_lock);
55980
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   122
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   123
    size_t space_left = max_capacity() - capacity();
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   124
    size_t want_space = MAX2(size, EpsilonMinHeapExpand);
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   125
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   126
    if (want_space < space_left) {
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   127
      // Enough space to expand in bulk:
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   128
      bool expand = _virtual_space.expand_by(want_space);
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   129
      assert(expand, "Should be able to expand");
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   130
    } else if (size < space_left) {
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   131
      // No space to expand in bulk, and this allocation is still possible,
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   132
      // take all the space left:
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   133
      bool expand = _virtual_space.expand_by(space_left);
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   134
      assert(expand, "Should be able to expand");
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   135
    } else {
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   136
      // No space left:
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   137
      return NULL;
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   138
    }
55980
67d289ae67f5 Make sure Epsilon is able to use the last bit of expanded heap
shade
parents: 55979
diff changeset
   139
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   140
    _space->set_end((HeapWord *) _virtual_space.high());
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   141
    res = _space->par_allocate(size);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   142
  }
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   143
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   144
  size_t used = _space->used();
55979
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
   145
  if (used - _last_counter_update >= _step_counter_update) {
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   146
    _last_counter_update = used;
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   147
    _monitoring_support->update_counters();
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   148
  }
55979
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
   149
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
   150
  if (used - _last_heap_print >= _step_heap_print) {
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
   151
    log_info(gc)("Heap: " SIZE_FORMAT "M reserved, " SIZE_FORMAT "M committed, " SIZE_FORMAT "M used",
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
   152
                 max_capacity() / M, capacity() / M, used / M);
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
   153
    _last_heap_print = used;
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
   154
  }
669f8c047c9c Print heap counters occasionally
shade
parents: 55976
diff changeset
   155
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   156
  return res;
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   157
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   158
56508
shade
parents: 56492
diff changeset
   159
HeapWord* EpsilonHeap::allocate_new_tlab(size_t min_size,
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   160
                                         size_t requested_size,
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   161
                                         size_t* actual_size) {
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   162
  Thread* thread = Thread::current();
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   163
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   164
  // Defaults in case elastic paths are not taken
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   165
  bool fits = true;
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   166
  size_t size = requested_size;
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   167
  size_t ergo_tlab = requested_size;
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   168
  int64_t time = 0;
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   169
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   170
  if (EpsilonElasticTLAB) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   171
    ergo_tlab = EpsilonThreadLocalData::ergo_tlab_size(thread);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   172
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   173
    if (EpsilonElasticTLABDecay) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   174
      int64_t last_alloc = EpsilonThreadLocalData::last_alloc_time(thread);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   175
      time = (int64_t) os::javaTimeNanos();
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   176
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   177
      assert(last_alloc <= time, "time should be monotonic");
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   178
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   179
      // If the thread had not allocated recently, retract the ergonomic size.
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   180
      // This conserves memory when the thread had initial burst of allocations,
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   181
      // and then started allocating only sporadically.
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   182
      if (last_alloc != 0 && (time - last_alloc > _decay_time_ns)) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   183
        ergo_tlab = 0;
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   184
        EpsilonThreadLocalData::set_ergo_tlab_size(thread, 0);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   185
      }
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   186
    }
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   187
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   188
    // If we can fit the allocation under current TLAB size, do so.
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   189
    // Otherwise, we want to elastically increase the TLAB size.
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   190
    fits = (requested_size <= ergo_tlab);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   191
    if (!fits) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   192
      size = (size_t) (ergo_tlab * EpsilonTLABElasticity);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   193
    }
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   194
  }
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   195
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   196
  // Honor boundaries
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   197
  size = MAX2(min_size, MIN2(_max_tlab_size, size));
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   198
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   199
  if (log_is_enabled(Trace, gc)) {
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   200
    ResourceMark rm;
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   201
    log_trace(gc)("TLAB size for \"%s\" (Requested: " SIZE_FORMAT "K, Min: " SIZE_FORMAT
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   202
                          "K, Max: " SIZE_FORMAT "K, Ergo: " SIZE_FORMAT "K) -> " SIZE_FORMAT "K",
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   203
                  thread->name(),
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   204
                  requested_size * HeapWordSize / K,
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   205
                  min_size * HeapWordSize / K,
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   206
                  _max_tlab_size * HeapWordSize / K,
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   207
                  ergo_tlab * HeapWordSize / K,
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   208
                  size * HeapWordSize / K);
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   209
  }
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   210
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   211
  HeapWord* res = allocate_work(size);
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   212
  if (res != NULL) {
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   213
    // Allocation successful
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   214
    *actual_size = size;
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   215
    if (EpsilonElasticTLABDecay) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   216
      EpsilonThreadLocalData::set_last_alloc_time(thread, time);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   217
    }
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   218
    if (EpsilonElasticTLAB && !fits) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   219
      // If we requested expansion, this is our new ergonomic TLAB size
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   220
      EpsilonThreadLocalData::set_ergo_tlab_size(thread, size);
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   221
    }
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   222
  } else {
56577
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   223
    // Allocation failed, reset ergonomics to try and fit smaller TLABs
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   224
    if (EpsilonElasticTLAB) {
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   225
      EpsilonThreadLocalData::set_ergo_tlab_size(thread, 0);
338a117fb65c Elastic TLAB machinery should handle decays
shade
parents: 56510
diff changeset
   226
    }
56510
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   227
  }
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   228
54c1aa06c1d8 Epsilon should use Elastic TLABs facility to control sizes
shade
parents: 56508
diff changeset
   229
  return res;
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   230
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   231
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   232
HeapWord* EpsilonHeap::mem_allocate(size_t size, bool *gc_overhead_limit_was_exceeded) {
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   233
  *gc_overhead_limit_was_exceeded = false;
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   234
  return allocate_work(size);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   235
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   236
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   237
void EpsilonHeap::collect(GCCause::Cause cause) {
56353
eb96d40953f1 Rehash messages printed by Epsilon
shade
parents: 56352
diff changeset
   238
  log_info(gc)("GC request for \"%s\" is ignored", GCCause::to_string(cause));
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   239
  _monitoring_support->update_counters();
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   240
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   241
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   242
void EpsilonHeap::do_full_collection(bool clear_all_soft_refs) {
56353
eb96d40953f1 Rehash messages printed by Epsilon
shade
parents: 56352
diff changeset
   243
  log_info(gc)("Full GC request for \"%s\" is ignored", GCCause::to_string(gc_cause()));
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   244
  _monitoring_support->update_counters();
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   245
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   246
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   247
void EpsilonHeap::safe_object_iterate(ObjectClosure *cl) {
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   248
  _space->safe_object_iterate(cl);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   249
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   250
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   251
void EpsilonHeap::print_on(outputStream *st) const {
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   252
  st->print_cr("Epsilon Heap");
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   253
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   254
  // Cast away constness:
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   255
  ((VirtualSpace)_virtual_space).print_on(st);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   256
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   257
  st->print_cr("Allocation space:");
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   258
  _space->print_on(st);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   259
}
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   260
55939
c5c3e1a5c3f0 Rename EpsilonCollectedHeap to EpsilonHeap.
shade
parents: 55767
diff changeset
   261
void EpsilonHeap::print_tracing_info() const {
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   262
  Log(gc) log;
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   263
  size_t allocated_kb = used() / K;
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   264
  log.info("Total allocated: " SIZE_FORMAT " KB",
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   265
           allocated_kb);
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   266
  log.info("Average allocation rate: " SIZE_FORMAT " KB/sec",
55976
be6a0c9587da Fix implicit conversion out of size_t.
shade
parents: 55975
diff changeset
   267
           (size_t)(allocated_kb * NANOSECS_PER_SEC / os::elapsed_counter()));
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents:
diff changeset
   268
}