src/share/vm/gc_implementation/g1/dirtyCardQueue.hpp

Wed, 27 Apr 2016 01:25:04 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:25:04 +0800
changeset 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/
changeset: 6782:28b50d07f6f8
tag: jdk8u25-b17

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP
aoqi@0 26 #define SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP
aoqi@0 27
aoqi@0 28 #include "gc_implementation/g1/ptrQueue.hpp"
aoqi@0 29 #include "memory/allocation.hpp"
aoqi@0 30
aoqi@0 31 class FreeIdSet;
aoqi@0 32
aoqi@0 33 // A closure class for processing card table entries. Note that we don't
aoqi@0 34 // require these closure objects to be stack-allocated.
aoqi@0 35 class CardTableEntryClosure: public CHeapObj<mtGC> {
aoqi@0 36 public:
aoqi@0 37 // Process the card whose card table entry is "card_ptr". If returns
aoqi@0 38 // "false", terminate the iteration early.
aoqi@0 39 virtual bool do_card_ptr(jbyte* card_ptr, uint worker_i = 0) = 0;
aoqi@0 40 };
aoqi@0 41
aoqi@0 42 // A ptrQueue whose elements are "oops", pointers to object heads.
aoqi@0 43 class DirtyCardQueue: public PtrQueue {
aoqi@0 44 public:
aoqi@0 45 DirtyCardQueue(PtrQueueSet* qset_, bool perm = false) :
aoqi@0 46 // Dirty card queues are always active, so we create them with their
aoqi@0 47 // active field set to true.
aoqi@0 48 PtrQueue(qset_, perm, true /* active */) { }
aoqi@0 49
aoqi@0 50 // Apply the closure to all elements, and reset the index to make the
aoqi@0 51 // buffer empty. If a closure application returns "false", return
aoqi@0 52 // "false" immediately, halting the iteration. If "consume" is true,
aoqi@0 53 // deletes processed entries from logs.
aoqi@0 54 bool apply_closure(CardTableEntryClosure* cl,
aoqi@0 55 bool consume = true,
aoqi@0 56 uint worker_i = 0);
aoqi@0 57
aoqi@0 58 // Apply the closure to all elements of "buf", down to "index"
aoqi@0 59 // (inclusive.) If returns "false", then a closure application returned
aoqi@0 60 // "false", and we return immediately. If "consume" is true, entries are
aoqi@0 61 // set to NULL as they are processed, so they will not be processed again
aoqi@0 62 // later.
aoqi@0 63 static bool apply_closure_to_buffer(CardTableEntryClosure* cl,
aoqi@0 64 void** buf, size_t index, size_t sz,
aoqi@0 65 bool consume = true,
aoqi@0 66 uint worker_i = 0);
aoqi@0 67 void **get_buf() { return _buf;}
aoqi@0 68 void set_buf(void **buf) {_buf = buf;}
aoqi@0 69 size_t get_index() { return _index;}
aoqi@0 70 void reinitialize() { _buf = 0; _sz = 0; _index = 0;}
aoqi@0 71 };
aoqi@0 72
aoqi@0 73
aoqi@0 74
aoqi@0 75 class DirtyCardQueueSet: public PtrQueueSet {
aoqi@0 76 CardTableEntryClosure* _closure;
aoqi@0 77
aoqi@0 78 DirtyCardQueue _shared_dirty_card_queue;
aoqi@0 79
aoqi@0 80 // Override.
aoqi@0 81 bool mut_process_buffer(void** buf);
aoqi@0 82
aoqi@0 83 // Protected by the _cbl_mon.
aoqi@0 84 FreeIdSet* _free_ids;
aoqi@0 85
aoqi@0 86 // The number of completed buffers processed by mutator and rs thread,
aoqi@0 87 // respectively.
aoqi@0 88 jint _processed_buffers_mut;
aoqi@0 89 jint _processed_buffers_rs_thread;
aoqi@0 90
aoqi@0 91 public:
aoqi@0 92 DirtyCardQueueSet(bool notify_when_complete = true);
aoqi@0 93
aoqi@0 94 void initialize(Monitor* cbl_mon, Mutex* fl_lock,
aoqi@0 95 int process_completed_threshold,
aoqi@0 96 int max_completed_queue,
aoqi@0 97 Mutex* lock, PtrQueueSet* fl_owner = NULL);
aoqi@0 98
aoqi@0 99 // The number of parallel ids that can be claimed to allow collector or
aoqi@0 100 // mutator threads to do card-processing work.
aoqi@0 101 static uint num_par_ids();
aoqi@0 102
aoqi@0 103 static void handle_zero_index_for_thread(JavaThread* t);
aoqi@0 104
aoqi@0 105 // Register "blk" as "the closure" for all queues. Only one such closure
aoqi@0 106 // is allowed. The "apply_closure_to_completed_buffer" method will apply
aoqi@0 107 // this closure to a completed buffer, and "iterate_closure_all_threads"
aoqi@0 108 // applies it to partially-filled buffers (the latter should only be done
aoqi@0 109 // with the world stopped).
aoqi@0 110 void set_closure(CardTableEntryClosure* closure);
aoqi@0 111
aoqi@0 112 // If there is a registered closure for buffers, apply it to all entries
aoqi@0 113 // in all currently-active buffers. This should only be applied at a
aoqi@0 114 // safepoint. (Currently must not be called in parallel; this should
aoqi@0 115 // change in the future.) If "consume" is true, processed entries are
aoqi@0 116 // discarded.
aoqi@0 117 void iterate_closure_all_threads(bool consume = true,
aoqi@0 118 uint worker_i = 0);
aoqi@0 119
aoqi@0 120 // If there exists some completed buffer, pop it, then apply the
aoqi@0 121 // registered closure to all its elements, nulling out those elements
aoqi@0 122 // processed. If all elements are processed, returns "true". If no
aoqi@0 123 // completed buffers exist, returns false. If a completed buffer exists,
aoqi@0 124 // but is only partially completed before a "yield" happens, the
aoqi@0 125 // partially completed buffer (with its processed elements set to NULL)
aoqi@0 126 // is returned to the completed buffer set, and this call returns false.
aoqi@0 127 bool apply_closure_to_completed_buffer(uint worker_i = 0,
aoqi@0 128 int stop_at = 0,
aoqi@0 129 bool during_pause = false);
aoqi@0 130
aoqi@0 131 // If there exists some completed buffer, pop it, then apply the
aoqi@0 132 // specified closure to all its elements, nulling out those elements
aoqi@0 133 // processed. If all elements are processed, returns "true". If no
aoqi@0 134 // completed buffers exist, returns false. If a completed buffer exists,
aoqi@0 135 // but is only partially completed before a "yield" happens, the
aoqi@0 136 // partially completed buffer (with its processed elements set to NULL)
aoqi@0 137 // is returned to the completed buffer set, and this call returns false.
aoqi@0 138 bool apply_closure_to_completed_buffer(CardTableEntryClosure* cl,
aoqi@0 139 uint worker_i = 0,
aoqi@0 140 int stop_at = 0,
aoqi@0 141 bool during_pause = false);
aoqi@0 142
aoqi@0 143 // Helper routine for the above.
aoqi@0 144 bool apply_closure_to_completed_buffer_helper(CardTableEntryClosure* cl,
aoqi@0 145 uint worker_i,
aoqi@0 146 BufferNode* nd);
aoqi@0 147
aoqi@0 148 BufferNode* get_completed_buffer(int stop_at);
aoqi@0 149
aoqi@0 150 // Applies the current closure to all completed buffers,
aoqi@0 151 // non-consumptively.
aoqi@0 152 void apply_closure_to_all_completed_buffers();
aoqi@0 153
aoqi@0 154 DirtyCardQueue* shared_dirty_card_queue() {
aoqi@0 155 return &_shared_dirty_card_queue;
aoqi@0 156 }
aoqi@0 157
aoqi@0 158 // Deallocate any completed log buffers
aoqi@0 159 void clear();
aoqi@0 160
aoqi@0 161 // If a full collection is happening, reset partial logs, and ignore
aoqi@0 162 // completed ones: the full collection will make them all irrelevant.
aoqi@0 163 void abandon_logs();
aoqi@0 164
aoqi@0 165 // If any threads have partial logs, add them to the global list of logs.
aoqi@0 166 void concatenate_logs();
aoqi@0 167 void clear_n_completed_buffers() { _n_completed_buffers = 0;}
aoqi@0 168
aoqi@0 169 jint processed_buffers_mut() {
aoqi@0 170 return _processed_buffers_mut;
aoqi@0 171 }
aoqi@0 172 jint processed_buffers_rs_thread() {
aoqi@0 173 return _processed_buffers_rs_thread;
aoqi@0 174 }
aoqi@0 175
aoqi@0 176 };
aoqi@0 177
aoqi@0 178 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP

mercurial