hotspot/src/share/vm/gc/g1/satbQueue.cpp
author david
Tue, 29 Sep 2015 11:02:08 +0200
changeset 33105 294e48b4f704
parent 31592 43f48e165466
child 33761 329db4b51480
child 33759 8a0e9139a9c5
permissions -rw-r--r--
8080775: Better argument formatting for assert() and friends Reviewed-by: kbarrett, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     1
/*
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
     2
 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     4
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     8
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    13
 * accompanied this code).
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    14
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5082
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5082
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: 5082
diff changeset
    21
 * questions.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    22
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    23
 */
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    26
#include "gc/g1/g1CollectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    27
#include "gc/g1/satbQueue.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    28
#include "gc/shared/collectedHeap.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/allocation.inline.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    30
#include "oops/oop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/mutexLocker.hpp"
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
    32
#include "runtime/safepoint.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/thread.hpp"
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 7920
diff changeset
    34
#include "runtime/vmThread.hpp"
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    35
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    36
void ObjPtrQueue::flush() {
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    37
  // Filter now to possibly save work later.  If filtering empties the
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    38
  // buffer then flush_impl can deallocate the buffer.
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    39
  filter();
28507
354ef83ee258 8048949: Requeue queue implementation
tschatzl
parents: 27251
diff changeset
    40
  flush_impl();
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    41
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    42
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    43
// Return true if a SATB buffer entry refers to an object that
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    44
// requires marking.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    45
//
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    46
// The entry must point into the G1 heap.  In particular, it must not
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    47
// be a NULL pointer.  NULL pointers are pre-filtered and never
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    48
// inserted into a SATB buffer.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    49
//
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    50
// An entry that is below the NTAMS pointer for the containing heap
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    51
// region requires marking. Such an entry must point to a valid object.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    52
//
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    53
// An entry that is at least the NTAMS pointer for the containing heap
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    54
// region might be any of the following, none of which should be marked.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    55
//
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    56
// * A reference to an object allocated since marking started.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    57
//   According to SATB, such objects are implicitly kept live and do
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    58
//   not need to be dealt with via SATB buffer processing.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    59
//
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    60
// * A reference to a young generation object. Young objects are
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    61
//   handled separately and are not marked by concurrent marking.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    62
//
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    63
// * A stale reference to a young generation object. If a young
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    64
//   generation object reference is recorded and not filtered out
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    65
//   before being moved by a young collection, the reference becomes
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    66
//   stale.
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    67
//
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    68
// * A stale reference to an eagerly reclaimed humongous object.  If a
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    69
//   humongous object is recorded and then reclaimed, the reference
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    70
//   becomes stale.
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    71
//
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    72
// The stale reference cases are implicitly handled by the NTAMS
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    73
// comparison. Because of the possibility of stale references, buffer
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    74
// processing must be somewhat circumspect and not assume entries
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    75
// in an unfiltered buffer refer to valid objects.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    76
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    77
inline bool requires_marking(const void* entry, G1CollectedHeap* heap) {
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    78
  // Includes rejection of NULL pointers.
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    79
  assert(heap->is_in_reserved(entry),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    80
         "Non-heap pointer in SATB buffer: " PTR_FORMAT, p2i(entry));
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    81
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    82
  HeapRegion* region = heap->heap_region_containing_raw(entry);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    83
  assert(region != NULL, "No region for " PTR_FORMAT, p2i(entry));
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    84
  if (entry >= region->next_top_at_mark_start()) {
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    85
    return false;
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    86
  }
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    87
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    88
  assert(((oop)entry)->is_oop(true /* ignore mark word */),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    89
         "Invalid oop in SATB buffer: " PTR_FORMAT, p2i(entry));
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    90
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    91
  return true;
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    92
}
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    93
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    94
// This method removes entries from a SATB buffer that will not be
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    95
// useful to the concurrent marking threads.  Entries are retained if
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    96
// they require marking and are not already marked. Retained entries
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    97
// are compacted toward the top of the buffer.
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    98
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    99
void ObjPtrQueue::filter() {
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   100
  G1CollectedHeap* g1h = G1CollectedHeap::heap();
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   101
  void** buf = _buf;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   102
  size_t sz = _sz;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   103
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   104
  if (buf == NULL) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   105
    // nothing to do
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   106
    return;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   107
  }
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   108
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   109
  // Used for sanity checking at the end of the loop.
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   110
  debug_only(size_t entries = 0; size_t retained = 0;)
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   111
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   112
  size_t i = sz;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   113
  size_t new_index = sz;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   114
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   115
  while (i > _index) {
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   116
    assert(i > 0, "we should have at least one more entry to process");
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   117
    i -= oopSize;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   118
    debug_only(entries += 1;)
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
   119
    void** p = &buf[byte_index_to_index((int) i)];
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
   120
    void* entry = *p;
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   121
    // NULL the entry so that unused parts of the buffer contain NULLs
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   122
    // at the end. If we are going to retain it we will copy it to its
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   123
    // final place. If we have retained all entries we have visited so
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   124
    // far, we'll just end up copying it to the same place.
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   125
    *p = NULL;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   126
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
   127
    if (requires_marking(entry, g1h) && !g1h->isMarkedNext((oop)entry)) {
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   128
      assert(new_index > 0, "we should not have already filled up the buffer");
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   129
      new_index -= oopSize;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   130
      assert(new_index >= i,
22775
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22497
diff changeset
   131
             "new_index should never be below i, as we always compact 'up'");
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
   132
      void** new_p = &buf[byte_index_to_index((int) new_index)];
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   133
      assert(new_p >= p, "the destination location should never be below "
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   134
             "the source as we always compact 'up'");
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   135
      assert(*new_p == NULL,
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   136
             "we should have already cleared the destination location");
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
   137
      *new_p = entry;
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   138
      debug_only(retained += 1;)
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   139
    }
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   140
  }
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   141
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   142
#ifdef ASSERT
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   143
  size_t entries_calc = (sz - _index) / oopSize;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   144
  assert(entries == entries_calc, "the number of entries we counted "
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   145
         "should match the number of entries we calculated");
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   146
  size_t retained_calc = (sz - new_index) / oopSize;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   147
  assert(retained == retained_calc, "the number of retained entries we counted "
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   148
         "should match the number of retained entries we calculated");
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   149
#endif // ASSERT
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   150
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   151
  _index = new_index;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   152
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   153
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   154
// This method will first apply the above filtering to the buffer. If
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   155
// post-filtering a large enough chunk of the buffer has been cleared
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   156
// we can re-use the buffer (instead of enqueueing it) and we can just
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   157
// allow the mutator to carry on executing using the same buffer
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   158
// instead of replacing it.
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   159
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   160
bool ObjPtrQueue::should_enqueue_buffer() {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   161
  assert(_lock == NULL || _lock->owned_by_self(),
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   162
         "we should have taken the lock before calling this");
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   163
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   164
  // If G1SATBBufferEnqueueingThresholdPercent == 0 we could skip filtering.
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   165
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   166
  // This method should only be called if there is a non-NULL buffer
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   167
  // that is full.
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   168
  assert(_index == 0, "pre-condition");
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   169
  assert(_buf != NULL, "pre-condition");
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   170
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   171
  filter();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   172
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   173
  size_t sz = _sz;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   174
  size_t all_entries = sz / oopSize;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   175
  size_t retained_entries = (sz - _index) / oopSize;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   176
  size_t perc = retained_entries * 100 / all_entries;
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   177
  bool should_enqueue = perc > (size_t) G1SATBBufferEnqueueingThresholdPercent;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   178
  return should_enqueue;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   179
}
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
   180
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   181
void ObjPtrQueue::apply_closure_and_empty(SATBBufferClosure* cl) {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   182
  assert(SafepointSynchronize::is_at_safepoint(),
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   183
         "SATB queues must only be processed at safepoints");
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   184
  if (_buf != NULL) {
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   185
    assert(_index % sizeof(void*) == 0, "invariant");
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   186
    assert(_sz % sizeof(void*) == 0, "invariant");
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   187
    assert(_index <= _sz, "invariant");
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   188
    cl->do_buffer(_buf + byte_index_to_index((int)_index),
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   189
                  byte_index_to_index((int)(_sz - _index)));
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   190
    _index = _sz;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   191
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   192
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   193
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   194
#ifndef PRODUCT
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   195
// Helpful for debugging
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   196
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   197
void ObjPtrQueue::print(const char* name) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   198
  print(name, _buf, _index, _sz);
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   199
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   200
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   201
void ObjPtrQueue::print(const char* name,
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   202
                        void** buf, size_t index, size_t sz) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 30764
diff changeset
   203
  gclog_or_tty->print_cr("  SATB BUFFER [%s] buf: " PTR_FORMAT " "
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 30764
diff changeset
   204
                         "index: " SIZE_FORMAT " sz: " SIZE_FORMAT,
29796
7a04e5c250d1 8076054: g1: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 28507
diff changeset
   205
                         name, p2i(buf), index, sz);
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   206
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   207
#endif // PRODUCT
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   208
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   209
#ifdef _MSC_VER // the use of 'this' below gets a warning, make it go away
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   210
#pragma warning( disable:4355 ) // 'this' : used in base member initializer list
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   211
#endif // _MSC_VER
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   212
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   213
SATBMarkQueueSet::SATBMarkQueueSet() :
30268
d28a9aa10804 8078021: SATB apply_closure_to_completed_buffer should have closure argument
kbarrett
parents: 30255
diff changeset
   214
  PtrQueueSet(),
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   215
  _shared_satb_queue(this, true /*perm*/) { }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   216
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   217
void SATBMarkQueueSet::initialize(Monitor* cbl_mon, Mutex* fl_lock,
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   218
                                  int process_completed_threshold,
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   219
                                  Mutex* lock) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   220
  PtrQueueSet::initialize(cbl_mon, fl_lock, process_completed_threshold, -1);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   221
  _shared_satb_queue.set_lock(lock);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   222
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   223
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   224
void SATBMarkQueueSet::handle_zero_index_for_thread(JavaThread* t) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   225
  t->satb_mark_queue().handle_zero_index();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   226
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   227
5082
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   228
#ifdef ASSERT
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   229
void SATBMarkQueueSet::dump_active_states(bool expected_active) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   230
  gclog_or_tty->print_cr("Expected SATB active state: %s",
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   231
                         expected_active ? "ACTIVE" : "INACTIVE");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   232
  gclog_or_tty->print_cr("Actual SATB active states:");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   233
  gclog_or_tty->print_cr("  Queue set: %s", is_active() ? "ACTIVE" : "INACTIVE");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   234
  for (JavaThread* t = Threads::first(); t; t = t->next()) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   235
    gclog_or_tty->print_cr("  Thread \"%s\" queue: %s", t->name(),
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   236
                           t->satb_mark_queue().is_active() ? "ACTIVE" : "INACTIVE");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   237
  }
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   238
  gclog_or_tty->print_cr("  Shared queue: %s",
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   239
                         shared_satb_queue()->is_active() ? "ACTIVE" : "INACTIVE");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   240
}
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   241
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   242
void SATBMarkQueueSet::verify_active_states(bool expected_active) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   243
  // Verify queue set state
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   244
  if (is_active() != expected_active) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   245
    dump_active_states(expected_active);
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   246
    guarantee(false, "SATB queue set has an unexpected active state");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   247
  }
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   248
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   249
  // Verify thread queue states
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   250
  for (JavaThread* t = Threads::first(); t; t = t->next()) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   251
    if (t->satb_mark_queue().is_active() != expected_active) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   252
      dump_active_states(expected_active);
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   253
      guarantee(false, "Thread SATB queue has an unexpected active state");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   254
    }
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   255
  }
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   256
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   257
  // Verify shared queue state
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   258
  if (shared_satb_queue()->is_active() != expected_active) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   259
    dump_active_states(expected_active);
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   260
    guarantee(false, "Shared SATB queue has an unexpected active state");
5082
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   261
  }
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   262
}
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   263
#endif // ASSERT
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   264
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   265
void SATBMarkQueueSet::set_active_all_threads(bool active, bool expected_active) {
5082
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   266
  assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint.");
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   267
#ifdef ASSERT
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   268
  verify_active_states(expected_active);
5082
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   269
#endif // ASSERT
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   270
  _all_active = active;
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   271
  for (JavaThread* t = Threads::first(); t; t = t->next()) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   272
    t->satb_mark_queue().set_active(active);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   273
  }
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   274
  shared_satb_queue()->set_active(active);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   275
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   276
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   277
void SATBMarkQueueSet::filter_thread_buffers() {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   278
  for(JavaThread* t = Threads::first(); t; t = t->next()) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   279
    t->satb_mark_queue().filter();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   280
  }
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   281
  shared_satb_queue()->filter();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   282
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   283
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   284
bool SATBMarkQueueSet::apply_closure_to_completed_buffer(SATBBufferClosure* cl) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   285
  BufferNode* nd = NULL;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   286
  {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   287
    MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   288
    if (_completed_buffers_head != NULL) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   289
      nd = _completed_buffers_head;
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   290
      _completed_buffers_head = nd->next();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   291
      if (_completed_buffers_head == NULL) _completed_buffers_tail = NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   292
      _n_completed_buffers--;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   293
      if (_n_completed_buffers == 0) _process_completed = false;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   294
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   295
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   296
  if (nd != NULL) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   297
    void **buf = BufferNode::make_buffer_from_node(nd);
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   298
    // Skip over NULL entries at beginning (e.g. push end) of buffer.
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   299
    // Filtering can result in non-full completed buffers; see
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   300
    // should_enqueue_buffer.
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   301
    assert(_sz % sizeof(void*) == 0, "invariant");
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   302
    size_t limit = ObjPtrQueue::byte_index_to_index((int)_sz);
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   303
    for (size_t i = 0; i < limit; ++i) {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   304
      if (buf[i] != NULL) {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   305
        // Found the end of the block of NULLs; process the remainder.
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   306
        cl->do_buffer(buf + i, limit - i);
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   307
        break;
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   308
      }
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   309
    }
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   310
    deallocate_buffer(buf);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   311
    return true;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   312
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   313
    return false;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   314
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   315
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   316
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   317
#ifndef PRODUCT
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   318
// Helpful for debugging
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   319
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   320
#define SATB_PRINTER_BUFFER_SIZE 256
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   321
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   322
void SATBMarkQueueSet::print_all(const char* msg) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   323
  char buffer[SATB_PRINTER_BUFFER_SIZE];
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   324
  assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint.");
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   325
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   326
  gclog_or_tty->cr();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   327
  gclog_or_tty->print_cr("SATB BUFFERS [%s]", msg);
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   328
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   329
  BufferNode* nd = _completed_buffers_head;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   330
  int i = 0;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   331
  while (nd != NULL) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   332
    void** buf = BufferNode::make_buffer_from_node(nd);
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   333
    jio_snprintf(buffer, SATB_PRINTER_BUFFER_SIZE, "Enqueued: %d", i);
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   334
    ObjPtrQueue::print(buffer, buf, 0, _sz);
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   335
    nd = nd->next();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   336
    i += 1;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   337
  }
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   338
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   339
  for (JavaThread* t = Threads::first(); t; t = t->next()) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   340
    jio_snprintf(buffer, SATB_PRINTER_BUFFER_SIZE, "Thread: %s", t->name());
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   341
    t->satb_mark_queue().print(buffer);
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   342
  }
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   343
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   344
  shared_satb_queue()->print("Shared");
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   345
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   346
  gclog_or_tty->cr();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   347
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   348
#endif // PRODUCT
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   349
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   350
void SATBMarkQueueSet::abandon_partial_marking() {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   351
  BufferNode* buffers_to_delete = NULL;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   352
  {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   353
    MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   354
    while (_completed_buffers_head != NULL) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   355
      BufferNode* nd = _completed_buffers_head;
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   356
      _completed_buffers_head = nd->next();
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   357
      nd->set_next(buffers_to_delete);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   358
      buffers_to_delete = nd;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   359
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   360
    _completed_buffers_tail = NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   361
    _n_completed_buffers = 0;
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
   362
    DEBUG_ONLY(assert_completed_buffer_list_len_correct_locked());
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   363
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   364
  while (buffers_to_delete != NULL) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   365
    BufferNode* nd = buffers_to_delete;
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   366
    buffers_to_delete = nd->next();
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   367
    deallocate_buffer(BufferNode::make_buffer_from_node(nd));
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   368
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   369
  assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   370
  // So we can safely manipulate these queues.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   371
  for (JavaThread* t = Threads::first(); t; t = t->next()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   372
    t->satb_mark_queue().reset();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   373
  }
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   374
 shared_satb_queue()->reset();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   375
}