Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/gc_implementation/g1/dirtyCardQueue.hpp
38920 views
/*1* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP25#define SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP2627#include "gc_implementation/g1/ptrQueue.hpp"28#include "memory/allocation.hpp"2930class FreeIdSet;3132// A closure class for processing card table entries. Note that we don't33// require these closure objects to be stack-allocated.34class CardTableEntryClosure: public CHeapObj<mtGC> {35public:36// Process the card whose card table entry is "card_ptr". If returns37// "false", terminate the iteration early.38virtual bool do_card_ptr(jbyte* card_ptr, uint worker_i = 0) = 0;39};4041// A ptrQueue whose elements are "oops", pointers to object heads.42class DirtyCardQueue: public PtrQueue {43public:44DirtyCardQueue(PtrQueueSet* qset_, bool perm = false) :45// Dirty card queues are always active, so we create them with their46// active field set to true.47PtrQueue(qset_, perm, true /* active */) { }4849// Flush before destroying; queue may be used to capture pending work while50// doing something else, with auto-flush on completion.51~DirtyCardQueue() { if (!is_permanent()) flush(); }5253// Process queue entries and release resources.54void flush() { flush_impl(); }5556// Apply the closure to all elements, and reset the index to make the57// buffer empty. If a closure application returns "false", return58// "false" immediately, halting the iteration. If "consume" is true,59// deletes processed entries from logs.60bool apply_closure(CardTableEntryClosure* cl,61bool consume = true,62uint worker_i = 0);6364// Apply the closure to all elements of "buf", down to "index"65// (inclusive.) If returns "false", then a closure application returned66// "false", and we return immediately. If "consume" is true, entries are67// set to NULL as they are processed, so they will not be processed again68// later.69static bool apply_closure_to_buffer(CardTableEntryClosure* cl,70void** buf, size_t index, size_t sz,71bool consume = true,72uint worker_i = 0);73void **get_buf() { return _buf;}74void set_buf(void **buf) {_buf = buf;}75size_t get_index() { return _index;}76void reinitialize() { _buf = 0; _sz = 0; _index = 0;}77};78798081class DirtyCardQueueSet: public PtrQueueSet {82// The closure used in mut_process_buffer().83CardTableEntryClosure* _mut_process_closure;8485DirtyCardQueue _shared_dirty_card_queue;8687// Override.88bool mut_process_buffer(void** buf);8990// Protected by the _cbl_mon.91FreeIdSet* _free_ids;9293// The number of completed buffers processed by mutator and rs thread,94// respectively.95jint _processed_buffers_mut;96jint _processed_buffers_rs_thread;9798// Current buffer node used for parallel iteration.99BufferNode* volatile _cur_par_buffer_node;100public:101DirtyCardQueueSet(bool notify_when_complete = true);102103void initialize(CardTableEntryClosure* cl, Monitor* cbl_mon, Mutex* fl_lock,104int process_completed_threshold,105int max_completed_queue,106Mutex* lock, PtrQueueSet* fl_owner = NULL);107108// The number of parallel ids that can be claimed to allow collector or109// mutator threads to do card-processing work.110static uint num_par_ids();111112static void handle_zero_index_for_thread(JavaThread* t);113114// Apply the given closure to all entries in all currently-active buffers.115// This should only be applied at a safepoint. (Currently must not be called116// in parallel; this should change in the future.) If "consume" is true,117// processed entries are discarded.118void iterate_closure_all_threads(CardTableEntryClosure* cl,119bool consume = true,120uint worker_i = 0);121122// If there exists some completed buffer, pop it, then apply the123// specified closure to all its elements, nulling out those elements124// processed. If all elements are processed, returns "true". If no125// completed buffers exist, returns false. If a completed buffer exists,126// but is only partially completed before a "yield" happens, the127// partially completed buffer (with its processed elements set to NULL)128// is returned to the completed buffer set, and this call returns false.129bool apply_closure_to_completed_buffer(CardTableEntryClosure* cl,130uint worker_i = 0,131int stop_at = 0,132bool during_pause = false);133134// Helper routine for the above.135bool apply_closure_to_completed_buffer_helper(CardTableEntryClosure* cl,136uint worker_i,137BufferNode* nd);138139BufferNode* get_completed_buffer(int stop_at);140141// Applies the current closure to all completed buffers,142// non-consumptively.143void apply_closure_to_all_completed_buffers(CardTableEntryClosure* cl);144145void reset_for_par_iteration() { _cur_par_buffer_node = _completed_buffers_head; }146// Applies the current closure to all completed buffers, non-consumptively.147// Parallel version.148void par_apply_closure_to_all_completed_buffers(CardTableEntryClosure* cl);149150DirtyCardQueue* shared_dirty_card_queue() {151return &_shared_dirty_card_queue;152}153154// Deallocate any completed log buffers155void clear();156157// If a full collection is happening, reset partial logs, and ignore158// completed ones: the full collection will make them all irrelevant.159void abandon_logs();160161// If any threads have partial logs, add them to the global list of logs.162void concatenate_logs();163void clear_n_completed_buffers() { _n_completed_buffers = 0;}164165jint processed_buffers_mut() {166return _processed_buffers_mut;167}168jint processed_buffers_rs_thread() {169return _processed_buffers_rs_thread;170}171172};173174#endif // SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP175176177