src/hotspot/share/gc/g1/satbMarkQueue.cpp
author kbarrett
Tue, 14 Aug 2018 00:15:56 -0400
changeset 51393 cc8d309cd05a
parent 51368 adcb0bb3d1e9
child 51401 58113ce90caf
permissions -rw-r--r--
8209345: Merge SATBMarkQueueFilter into SATBMarkQueueSet Summary: Move filter extension protocol to SATBMarkQueueSet. Reviewed-by: shade, tschatzl, rkennke
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
/*
49007
82d9d5744e5f 8197994: Move JavaThread::initialize_queues() logic to G1SATBCardTableLoggingModRefBS
pliden
parents: 48105
diff changeset
     2
 * Copyright (c) 2001, 2018, 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"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
    26
#include "jvm.h"
33792
2bae5bf9e431 8077571: ObjPtrQueue is poorly named
kbarrett
parents: 33786
diff changeset
    27
#include "gc/g1/satbMarkQueue.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    28
#include "gc/shared/collectedHeap.hpp"
51393
cc8d309cd05a 8209345: Merge SATBMarkQueueFilter into SATBMarkQueueSet
kbarrett
parents: 51368
diff changeset
    29
#include "logging/log.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/allocation.inline.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    31
#include "oops/oop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/mutexLocker.hpp"
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
    33
#include "runtime/safepoint.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/thread.hpp"
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
    35
#include "runtime/threadSMR.hpp"
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 7920
diff changeset
    36
#include "runtime/vmThread.hpp"
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    37
33792
2bae5bf9e431 8077571: ObjPtrQueue is poorly named
kbarrett
parents: 33786
diff changeset
    38
SATBMarkQueue::SATBMarkQueue(SATBMarkQueueSet* qset, bool permanent) :
33761
329db4b51480 6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents: 33105
diff changeset
    39
  // SATB queues are only active during marking cycles. We create
329db4b51480 6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents: 33105
diff changeset
    40
  // them with their active field set to false. If a thread is
329db4b51480 6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents: 33105
diff changeset
    41
  // created during a cycle and its SATB queue needs to be activated
329db4b51480 6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents: 33105
diff changeset
    42
  // before the thread starts running, we'll need to set its active
49347
edb65305d3ac 8195148: Collapse G1SATBCardTableModRefBS and G1SATBCardTableLoggingModRefBS into a single G1BarrierSet
eosterlund
parents: 49007
diff changeset
    43
  // field to true. This is done in G1SBarrierSet::on_thread_attach().
33761
329db4b51480 6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents: 33105
diff changeset
    44
  PtrQueue(qset, permanent, false /* active */)
329db4b51480 6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents: 33105
diff changeset
    45
{ }
329db4b51480 6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents: 33105
diff changeset
    46
33792
2bae5bf9e431 8077571: ObjPtrQueue is poorly named
kbarrett
parents: 33786
diff changeset
    47
void SATBMarkQueue::flush() {
30255
f43e306ec51e 8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents: 30154
diff changeset
    48
  // 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
    49
  // 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
    50
  filter();
28507
354ef83ee258 8048949: Requeue queue implementation
tschatzl
parents: 27251
diff changeset
    51
  flush_impl();
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    52
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    53
51278
d56dd9798d54 8208611: Refactor SATBMarkQueue filtering to allow GC-specific filters
kbarrett
parents: 49752
diff changeset
    54
// This method will first apply filtering to the buffer. If filtering
d56dd9798d54 8208611: Refactor SATBMarkQueue filtering to allow GC-specific filters
kbarrett
parents: 49752
diff changeset
    55
// retains a small enough collection in the buffer, we can continue to
d56dd9798d54 8208611: Refactor SATBMarkQueue filtering to allow GC-specific filters
kbarrett
parents: 49752
diff changeset
    56
// use the buffer as-is, instead of enqueueing and replacing it.
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    57
33792
2bae5bf9e431 8077571: ObjPtrQueue is poorly named
kbarrett
parents: 33786
diff changeset
    58
bool SATBMarkQueue::should_enqueue_buffer() {
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    59
  assert(_lock == NULL || _lock->owned_by_self(),
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    60
         "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
    61
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
    62
  // 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
    63
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    64
  // 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
    65
  // that is full.
46443
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    66
  assert(index() == 0, "pre-condition");
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    67
  assert(_buf != NULL, "pre-condition");
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    68
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    69
  filter();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    70
46443
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    71
  size_t cap = capacity();
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    72
  size_t percent_used = ((cap - index()) * 100) / cap;
33761
329db4b51480 6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents: 33105
diff changeset
    73
  bool should_enqueue = percent_used > G1SATBBufferEnqueueingThresholdPercent;
7920
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    74
  return should_enqueue;
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    75
}
298df61588a2 7011379: G1: overly long concurrent marking cycles
tonyp
parents: 7397
diff changeset
    76
33792
2bae5bf9e431 8077571: ObjPtrQueue is poorly named
kbarrett
parents: 33786
diff changeset
    77
void SATBMarkQueue::apply_closure_and_empty(SATBBufferClosure* cl) {
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
    78
  assert(SafepointSynchronize::is_at_safepoint(),
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
    79
         "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
    80
  if (_buf != NULL) {
46443
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    81
    cl->do_buffer(&_buf[index()], size());
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    82
    reset();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    83
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    84
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    85
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    86
#ifndef PRODUCT
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    87
// Helpful for debugging
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    88
46443
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    89
static void print_satb_buffer(const char* name,
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    90
                              void** buf,
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    91
                              size_t index,
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    92
                              size_t capacity) {
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    93
  tty->print_cr("  SATB BUFFER [%s] buf: " PTR_FORMAT " index: " SIZE_FORMAT
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    94
                " capacity: " SIZE_FORMAT,
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    95
                name, p2i(buf), index, capacity);
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    96
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
    97
46443
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    98
void SATBMarkQueue::print(const char* name) {
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
    99
  print_satb_buffer(name, _buf, index(), capacity());
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   100
}
46443
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
   101
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   102
#endif // PRODUCT
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   103
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   104
SATBMarkQueueSet::SATBMarkQueueSet() :
30268
d28a9aa10804 8078021: SATB apply_closure_to_completed_buffer should have closure argument
kbarrett
parents: 30255
diff changeset
   105
  PtrQueueSet(),
51393
cc8d309cd05a 8209345: Merge SATBMarkQueueFilter into SATBMarkQueueSet
kbarrett
parents: 51368
diff changeset
   106
  _shared_satb_queue(this, true /* permanent */)
51278
d56dd9798d54 8208611: Refactor SATBMarkQueue filtering to allow GC-specific filters
kbarrett
parents: 49752
diff changeset
   107
{}
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   108
51393
cc8d309cd05a 8209345: Merge SATBMarkQueueFilter into SATBMarkQueueSet
kbarrett
parents: 51368
diff changeset
   109
void SATBMarkQueueSet::initialize(Monitor* cbl_mon, Mutex* fl_lock,
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   110
                                  int process_completed_threshold,
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   111
                                  Mutex* lock) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   112
  PtrQueueSet::initialize(cbl_mon, fl_lock, process_completed_threshold, -1);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   113
  _shared_satb_queue.set_lock(lock);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   114
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   115
5082
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   116
#ifdef ASSERT
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   117
void SATBMarkQueueSet::dump_active_states(bool expected_active) {
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35061
diff changeset
   118
  log_error(gc, verify)("Expected SATB active state: %s", expected_active ? "ACTIVE" : "INACTIVE");
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35061
diff changeset
   119
  log_error(gc, verify)("Actual SATB active states:");
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35061
diff changeset
   120
  log_error(gc, verify)("  Queue set: %s", is_active() ? "ACTIVE" : "INACTIVE");
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
   121
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) {
51368
adcb0bb3d1e9 8209118: Abstract SATBMarkQueueSet's ThreadLocalData access
rkennke
parents: 51278
diff changeset
   122
    log_error(gc, verify)("  Thread \"%s\" queue: %s", t->name(), satb_queue_for_thread(t).is_active() ? "ACTIVE" : "INACTIVE");
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   123
  }
36090
cffc1dd98258 8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents: 35061
diff changeset
   124
  log_error(gc, verify)("  Shared queue: %s", shared_satb_queue()->is_active() ? "ACTIVE" : "INACTIVE");
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   125
}
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   126
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   127
void SATBMarkQueueSet::verify_active_states(bool expected_active) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   128
  // Verify queue set state
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   129
  if (is_active() != expected_active) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   130
    dump_active_states(expected_active);
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   131
    guarantee(false, "SATB queue set has an unexpected active state");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   132
  }
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   133
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   134
  // Verify thread queue states
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
   135
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) {
51368
adcb0bb3d1e9 8209118: Abstract SATBMarkQueueSet's ThreadLocalData access
rkennke
parents: 51278
diff changeset
   136
    if (satb_queue_for_thread(t).is_active() != expected_active) {
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   137
      dump_active_states(expected_active);
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   138
      guarantee(false, "Thread SATB queue has an unexpected active state");
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   139
    }
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   140
  }
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   141
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   142
  // Verify shared queue state
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   143
  if (shared_satb_queue()->is_active() != expected_active) {
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   144
    dump_active_states(expected_active);
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   145
    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
   146
  }
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   147
}
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   148
#endif // ASSERT
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   149
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   150
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
   151
  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
   152
#ifdef ASSERT
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   153
  verify_active_states(expected_active);
5082
19e725a3d2eb 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 4481
diff changeset
   154
#endif // ASSERT
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   155
  _all_active = active;
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
   156
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) {
51368
adcb0bb3d1e9 8209118: Abstract SATBMarkQueueSet's ThreadLocalData access
rkennke
parents: 51278
diff changeset
   157
    satb_queue_for_thread(t).set_active(active);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   158
  }
22497
b2e1896e9616 8029162: G1: Shared SATB queue never enabled
pliden
parents: 13728
diff changeset
   159
  shared_satb_queue()->set_active(active);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   160
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   161
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   162
void SATBMarkQueueSet::filter_thread_buffers() {
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
   163
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) {
51368
adcb0bb3d1e9 8209118: Abstract SATBMarkQueueSet's ThreadLocalData access
rkennke
parents: 51278
diff changeset
   164
    satb_queue_for_thread(t).filter();
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
  shared_satb_queue()->filter();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   167
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   168
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30279
diff changeset
   169
bool SATBMarkQueueSet::apply_closure_to_completed_buffer(SATBBufferClosure* cl) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   170
  BufferNode* nd = NULL;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   171
  {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   172
    MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   173
    if (_completed_buffers_head != NULL) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   174
      nd = _completed_buffers_head;
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   175
      _completed_buffers_head = nd->next();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   176
      if (_completed_buffers_head == NULL) _completed_buffers_tail = NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   177
      _n_completed_buffers--;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   178
      if (_n_completed_buffers == 0) _process_completed = false;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   179
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   180
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   181
  if (nd != NULL) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   182
    void **buf = BufferNode::make_buffer_from_node(nd);
46443
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
   183
    size_t index = nd->index();
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
   184
    size_t size = buffer_size();
37065
c00d1c2ffb7c 8150676: Use BufferNode index
kbarrett
parents: 36090
diff changeset
   185
    assert(index <= size, "invariant");
c00d1c2ffb7c 8150676: Use BufferNode index
kbarrett
parents: 36090
diff changeset
   186
    cl->do_buffer(buf + index, size - index);
c00d1c2ffb7c 8150676: Use BufferNode index
kbarrett
parents: 36090
diff changeset
   187
    deallocate_buffer(nd);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   188
    return true;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   189
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   190
    return false;
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
#define SATB_PRINTER_BUFFER_SIZE 256
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   198
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   199
void SATBMarkQueueSet::print_all(const char* msg) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   200
  char buffer[SATB_PRINTER_BUFFER_SIZE];
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   201
  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
   202
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33792
diff changeset
   203
  tty->cr();
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33792
diff changeset
   204
  tty->print_cr("SATB BUFFERS [%s]", msg);
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   205
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   206
  BufferNode* nd = _completed_buffers_head;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   207
  int i = 0;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   208
  while (nd != NULL) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   209
    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
   210
    jio_snprintf(buffer, SATB_PRINTER_BUFFER_SIZE, "Enqueued: %d", i);
46443
cdb638b5ec53 8178836: Improve PtrQueue index abstraction
kbarrett
parents: 37065
diff changeset
   211
    print_satb_buffer(buffer, buf, nd->index(), buffer_size());
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   212
    nd = nd->next();
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   213
    i += 1;
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   214
  }
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   215
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
   216
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) {
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   217
    jio_snprintf(buffer, SATB_PRINTER_BUFFER_SIZE, "Thread: %s", t->name());
51368
adcb0bb3d1e9 8209118: Abstract SATBMarkQueueSet's ThreadLocalData access
rkennke
parents: 51278
diff changeset
   218
    satb_queue_for_thread(t).print(buffer);
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   219
  }
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   220
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   221
  shared_satb_queue()->print("Shared");
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   222
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33792
diff changeset
   223
  tty->cr();
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   224
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   225
#endif // PRODUCT
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 10670
diff changeset
   226
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   227
void SATBMarkQueueSet::abandon_partial_marking() {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   228
  BufferNode* buffers_to_delete = NULL;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   229
  {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   230
    MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   231
    while (_completed_buffers_head != NULL) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   232
      BufferNode* nd = _completed_buffers_head;
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   233
      _completed_buffers_head = nd->next();
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   234
      nd->set_next(buffers_to_delete);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   235
      buffers_to_delete = nd;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   236
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   237
    _completed_buffers_tail = NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   238
    _n_completed_buffers = 0;
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
   239
    DEBUG_ONLY(assert_completed_buffer_list_len_correct_locked());
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   240
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   241
  while (buffers_to_delete != NULL) {
4481
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   242
    BufferNode* nd = buffers_to_delete;
de92ec484f5e 6862387: tune concurrent refinement further
iveresov
parents: 3262
diff changeset
   243
    buffers_to_delete = nd->next();
37065
c00d1c2ffb7c 8150676: Use BufferNode index
kbarrett
parents: 36090
diff changeset
   244
    deallocate_buffer(nd);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   245
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   246
  assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   247
  // So we can safely manipulate these queues.
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
   248
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) {
51368
adcb0bb3d1e9 8209118: Abstract SATBMarkQueueSet's ThreadLocalData access
rkennke
parents: 51278
diff changeset
   249
    satb_queue_for_thread(t).reset();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   250
  }
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47765
diff changeset
   251
  shared_satb_queue()->reset();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   252
}