dirtyCardQueue.cpp 10.7 KB
Newer Older
1
/*
J
johnc 已提交
2
 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
22 23 24
 *
 */

25 26
#include "precompiled.hpp"
#include "gc_implementation/g1/dirtyCardQueue.hpp"
27
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
28 29 30 31
#include "gc_implementation/g1/heapRegionRemSet.hpp"
#include "runtime/atomic.hpp"
#include "runtime/mutexLocker.hpp"
#include "runtime/safepoint.hpp"
32
#include "runtime/thread.inline.hpp"
33
#include "utilities/workgroup.hpp"
34 35 36

bool DirtyCardQueue::apply_closure(CardTableEntryClosure* cl,
                                   bool consume,
37
                                   uint worker_i) {
38 39 40 41
  bool res = true;
  if (_buf != NULL) {
    res = apply_closure_to_buffer(cl, _buf, _index, _sz,
                                  consume,
42
                                  worker_i);
43 44 45 46 47 48 49 50 51
    if (res && consume) _index = _sz;
  }
  return res;
}

bool DirtyCardQueue::apply_closure_to_buffer(CardTableEntryClosure* cl,
                                             void** buf,
                                             size_t index, size_t sz,
                                             bool consume,
52
                                             uint worker_i) {
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
  if (cl == NULL) return true;
  for (size_t i = index; i < sz; i += oopSize) {
    int ind = byte_index_to_index((int)i);
    jbyte* card_ptr = (jbyte*)buf[ind];
    if (card_ptr != NULL) {
      // Set the entry to null, so we don't do it again (via the test
      // above) if we reconsider this buffer.
      if (consume) buf[ind] = NULL;
      if (!cl->do_card_ptr(card_ptr, worker_i)) return false;
    }
  }
  return true;
}

#ifdef _MSC_VER // the use of 'this' below gets a warning, make it go away
#pragma warning( disable:4355 ) // 'this' : used in base member initializer list
#endif // _MSC_VER

71 72
DirtyCardQueueSet::DirtyCardQueueSet(bool notify_when_complete) :
  PtrQueueSet(notify_when_complete),
73 74 75 76 77 78 79 80
  _closure(NULL),
  _shared_dirty_card_queue(this, true /*perm*/),
  _free_ids(NULL),
  _processed_buffers_mut(0), _processed_buffers_rs_thread(0)
{
  _all_active = true;
}

81
// Determines how many mutator threads can process the buffers in parallel.
82 83
uint DirtyCardQueueSet::num_par_ids() {
  return (uint)os::processor_count();
84 85 86
}

void DirtyCardQueueSet::initialize(Monitor* cbl_mon, Mutex* fl_lock,
87
                                   int process_completed_threshold,
88
                                   int max_completed_queue,
89
                                   Mutex* lock, PtrQueueSet* fl_owner) {
90 91
  PtrQueueSet::initialize(cbl_mon, fl_lock, process_completed_threshold,
                          max_completed_queue, fl_owner);
92
  set_buffer_size(G1UpdateBufferSize);
93 94 95 96 97 98 99 100 101 102 103 104 105
  _shared_dirty_card_queue.set_lock(lock);
  _free_ids = new FreeIdSet((int) num_par_ids(), _cbl_mon);
}

void DirtyCardQueueSet::handle_zero_index_for_thread(JavaThread* t) {
  t->dirty_card_queue().handle_zero_index();
}

void DirtyCardQueueSet::set_closure(CardTableEntryClosure* closure) {
  _closure = closure;
}

void DirtyCardQueueSet::iterate_closure_all_threads(bool consume,
106
                                                    uint worker_i) {
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
  assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint.");
  for(JavaThread* t = Threads::first(); t; t = t->next()) {
    bool b = t->dirty_card_queue().apply_closure(_closure, consume);
    guarantee(b, "Should not be interrupted.");
  }
  bool b = shared_dirty_card_queue()->apply_closure(_closure,
                                                    consume,
                                                    worker_i);
  guarantee(b, "Should not be interrupted.");
}

bool DirtyCardQueueSet::mut_process_buffer(void** buf) {

  // Used to determine if we had already claimed a par_id
  // before entering this method.
  bool already_claimed = false;

  // We grab the current JavaThread.
  JavaThread* thread = JavaThread::current();

  // We get the the number of any par_id that this thread
  // might have already claimed.
129
  uint worker_i = thread->get_claimed_par_id();
130

131
  // If worker_i is not UINT_MAX then the thread has already claimed
132
  // a par_id. We make note of it using the already_claimed value
133
  if (worker_i != UINT_MAX) {
134 135 136 137 138 139 140 141 142 143 144
    already_claimed = true;
  } else {

    // Otherwise we need to claim a par id
    worker_i = _free_ids->claim_par_id();

    // And store the par_id value in the thread
    thread->set_claimed_par_id(worker_i);
  }

  bool b = false;
145
  if (worker_i != UINT_MAX) {
146 147 148 149 150 151 152 153 154 155 156
    b = DirtyCardQueue::apply_closure_to_buffer(_closure, buf, 0,
                                                _sz, true, worker_i);
    if (b) Atomic::inc(&_processed_buffers_mut);

    // If we had not claimed an id before entering the method
    // then we must release the id.
    if (!already_claimed) {

      // we release the id
      _free_ids->release_par_id(worker_i);

157 158
      // and set the claimed_id in the thread to UINT_MAX
      thread->set_claimed_par_id(UINT_MAX);
159 160 161 162 163
    }
  }
  return b;
}

164 165

BufferNode*
166
DirtyCardQueueSet::get_completed_buffer(int stop_at) {
167
  BufferNode* nd = NULL;
168 169 170 171 172 173 174 175 176
  MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag);

  if ((int)_n_completed_buffers <= stop_at) {
    _process_completed = false;
    return NULL;
  }

  if (_completed_buffers_head != NULL) {
    nd = _completed_buffers_head;
177
    _completed_buffers_head = nd->next();
178 179 180
    if (_completed_buffers_head == NULL)
      _completed_buffers_tail = NULL;
    _n_completed_buffers--;
181
    assert(_n_completed_buffers >= 0, "Invariant");
182 183 184 185 186 187
  }
  debug_only(assert_completed_buffer_list_len_correct_locked());
  return nd;
}

bool DirtyCardQueueSet::
J
johnc 已提交
188
apply_closure_to_completed_buffer_helper(CardTableEntryClosure* cl,
189
                                         uint worker_i,
190
                                         BufferNode* nd) {
191
  if (nd != NULL) {
192 193
    void **buf = BufferNode::make_buffer_from_node(nd);
    size_t index = nd->index();
194
    bool b =
J
johnc 已提交
195
      DirtyCardQueue::apply_closure_to_buffer(cl, buf,
196
                                              index, _sz,
197 198 199 200 201
                                              true, worker_i);
    if (b) {
      deallocate_buffer(buf);
      return true;  // In normal case, go on to next buffer.
    } else {
202
      enqueue_complete_buffer(buf, index);
203 204 205 206 207 208 209
      return false;
    }
  } else {
    return false;
  }
}

J
johnc 已提交
210
bool DirtyCardQueueSet::apply_closure_to_completed_buffer(CardTableEntryClosure* cl,
211
                                                          uint worker_i,
212
                                                          int stop_at,
J
johnc 已提交
213
                                                          bool during_pause) {
214
  assert(!during_pause || stop_at == 0, "Should not leave any completed buffers during a pause");
215
  BufferNode* nd = get_completed_buffer(stop_at);
J
johnc 已提交
216
  bool res = apply_closure_to_completed_buffer_helper(cl, worker_i, nd);
217
  if (res) Atomic::inc(&_processed_buffers_rs_thread);
218 219 220
  return res;
}

221
bool DirtyCardQueueSet::apply_closure_to_completed_buffer(uint worker_i,
J
johnc 已提交
222 223 224 225 226 227
                                                          int stop_at,
                                                          bool during_pause) {
  return apply_closure_to_completed_buffer(_closure, worker_i,
                                           stop_at, during_pause);
}

228
void DirtyCardQueueSet::apply_closure_to_all_completed_buffers() {
229
  BufferNode* nd = _completed_buffers_head;
230 231
  while (nd != NULL) {
    bool b =
232 233 234
      DirtyCardQueue::apply_closure_to_buffer(_closure,
                                              BufferNode::make_buffer_from_node(nd),
                                              0, _sz, false);
235
    guarantee(b, "Should not stop early.");
236
    nd = nd->next();
237 238 239
  }
}

J
johnc 已提交
240 241
// Deallocates any completed log buffers
void DirtyCardQueueSet::clear() {
242
  BufferNode* buffers_to_delete = NULL;
243 244 245
  {
    MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag);
    while (_completed_buffers_head != NULL) {
246 247 248
      BufferNode* nd = _completed_buffers_head;
      _completed_buffers_head = nd->next();
      nd->set_next(buffers_to_delete);
249 250 251 252 253 254 255
      buffers_to_delete = nd;
    }
    _n_completed_buffers = 0;
    _completed_buffers_tail = NULL;
    debug_only(assert_completed_buffer_list_len_correct_locked());
  }
  while (buffers_to_delete != NULL) {
256 257 258
    BufferNode* nd = buffers_to_delete;
    buffers_to_delete = nd->next();
    deallocate_buffer(BufferNode::make_buffer_from_node(nd));
259
  }
J
johnc 已提交
260 261 262 263 264 265

}

void DirtyCardQueueSet::abandon_logs() {
  assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint.");
  clear();
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
  // Since abandon is done only at safepoints, we can safely manipulate
  // these queues.
  for (JavaThread* t = Threads::first(); t; t = t->next()) {
    t->dirty_card_queue().reset();
  }
  shared_dirty_card_queue()->reset();
}


void DirtyCardQueueSet::concatenate_logs() {
  // Iterate over all the threads, if we find a partial log add it to
  // the global list of logs.  Temporarily turn off the limit on the number
  // of outstanding buffers.
  int save_max_completed_queue = _max_completed_queue;
  _max_completed_queue = max_jint;
  assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint.");
  for (JavaThread* t = Threads::first(); t; t = t->next()) {
    DirtyCardQueue& dcq = t->dirty_card_queue();
    if (dcq.size() != 0) {
      void **buf = t->dirty_card_queue().get_buf();
      // We must NULL out the unused entries, then enqueue.
      for (size_t i = 0; i < t->dirty_card_queue().get_index(); i += oopSize) {
        buf[PtrQueue::byte_index_to_index((int)i)] = NULL;
      }
      enqueue_complete_buffer(dcq.get_buf(), dcq.get_index());
      dcq.reinitialize();
    }
  }
  if (_shared_dirty_card_queue.size() != 0) {
    enqueue_complete_buffer(_shared_dirty_card_queue.get_buf(),
                            _shared_dirty_card_queue.get_index());
    _shared_dirty_card_queue.reinitialize();
  }
  // Restore the completed buffer queue limit.
  _max_completed_queue = save_max_completed_queue;
}