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

Fri, 17 May 2013 11:57:05 +0200

author
ehelin
date
Fri, 17 May 2013 11:57:05 +0200
changeset 5159
001ec9515f84
parent 5078
194f52aa2f23
child 5204
e72f7eecc96d
permissions
-rw-r--r--

8014277: Remove ObjectClosure as base class for BoolObjectClosure
Reviewed-by: brutisso, tschatzl

ysr@777 1 /*
johnc@5078 2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
ysr@777 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ysr@777 4 *
ysr@777 5 * This code is free software; you can redistribute it and/or modify it
ysr@777 6 * under the terms of the GNU General Public License version 2 only, as
ysr@777 7 * published by the Free Software Foundation.
ysr@777 8 *
ysr@777 9 * This code is distributed in the hope that it will be useful, but WITHOUT
ysr@777 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ysr@777 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ysr@777 12 * version 2 for more details (a copy is included in the LICENSE file that
ysr@777 13 * accompanied this code).
ysr@777 14 *
ysr@777 15 * You should have received a copy of the GNU General Public License version
ysr@777 16 * 2 along with this work; if not, write to the Free Software Foundation,
ysr@777 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ysr@777 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
ysr@777 22 *
ysr@777 23 */
ysr@777 24
stefank@2314 25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTG1REFINE_HPP
stefank@2314 26 #define SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTG1REFINE_HPP
stefank@2314 27
johnc@5078 28 #include "gc_implementation/g1/g1HotCardCache.hpp"
stefank@2314 29 #include "memory/allocation.hpp"
stefank@2314 30 #include "runtime/thread.hpp"
stefank@2314 31 #include "utilities/globalDefinitions.hpp"
stefank@2314 32
ysr@777 33 // Forward decl
ysr@777 34 class ConcurrentG1RefineThread;
johnc@5078 35 class G1CollectedHeap;
johnc@5078 36 class G1HotCardCache;
ysr@777 37 class G1RemSet;
ysr@777 38
zgu@3900 39 class ConcurrentG1Refine: public CHeapObj<mtGC> {
iveresov@1229 40 ConcurrentG1RefineThread** _threads;
iveresov@1229 41 int _n_threads;
iveresov@1546 42 int _n_worker_threads;
iveresov@1546 43 /*
iveresov@1546 44 * The value of the update buffer queue length falls into one of 3 zones:
iveresov@1546 45 * green, yellow, red. If the value is in [0, green) nothing is
iveresov@1546 46 * done, the buffers are left unprocessed to enable the caching effect of the
iveresov@1546 47 * dirtied cards. In the yellow zone [green, yellow) the concurrent refinement
iveresov@1546 48 * threads are gradually activated. In [yellow, red) all threads are
iveresov@1546 49 * running. If the length becomes red (max queue length) the mutators start
iveresov@1546 50 * processing the buffers.
iveresov@1546 51 *
tonyp@1717 52 * There are some interesting cases (when G1UseAdaptiveConcRefinement
tonyp@1717 53 * is turned off):
iveresov@1546 54 * 1) green = yellow = red = 0. In this case the mutator will process all
iveresov@1546 55 * buffers. Except for those that are created by the deferred updates
iveresov@1546 56 * machinery during a collection.
iveresov@1546 57 * 2) green = 0. Means no caching. Can be a good way to minimize the
iveresov@1546 58 * amount of time spent updating rsets during a collection.
iveresov@1546 59 */
iveresov@1546 60 int _green_zone;
iveresov@1546 61 int _yellow_zone;
iveresov@1546 62 int _red_zone;
iveresov@1546 63
iveresov@1546 64 int _thread_threshold_step;
iveresov@1546 65
johnc@5078 66 // We delay the refinement of 'hot' cards using the hot card cache.
johnc@5078 67 G1HotCardCache _hot_card_cache;
johnc@5078 68
iveresov@1546 69 // Reset the threshold step value based of the current zone boundaries.
iveresov@1546 70 void reset_threshold_step();
johnc@1325 71
ysr@777 72 public:
johnc@5078 73 ConcurrentG1Refine(G1CollectedHeap* g1h);
ysr@777 74 ~ConcurrentG1Refine();
ysr@777 75
ysr@777 76 void init(); // Accomplish some initialization that has to wait.
iveresov@1229 77 void stop();
ysr@777 78
iveresov@1546 79 void reinitialize_threads();
iveresov@1546 80
iveresov@1229 81 // Iterate over the conc refine threads
iveresov@1229 82 void threads_do(ThreadClosure *tc);
ysr@777 83
iveresov@1546 84 static int thread_num();
tonyp@1454 85
tonyp@1454 86 void print_worker_threads_on(outputStream* st) const;
iveresov@1546 87
iveresov@1546 88 void set_green_zone(int x) { _green_zone = x; }
iveresov@1546 89 void set_yellow_zone(int x) { _yellow_zone = x; }
iveresov@1546 90 void set_red_zone(int x) { _red_zone = x; }
iveresov@1546 91
iveresov@1546 92 int green_zone() const { return _green_zone; }
iveresov@1546 93 int yellow_zone() const { return _yellow_zone; }
iveresov@1546 94 int red_zone() const { return _red_zone; }
iveresov@1546 95
iveresov@1546 96 int total_thread_num() const { return _n_threads; }
iveresov@1546 97 int worker_thread_num() const { return _n_worker_threads; }
iveresov@1546 98
iveresov@1546 99 int thread_threshold_step() const { return _thread_threshold_step; }
johnc@5078 100
johnc@5078 101 G1HotCardCache* hot_card_cache() { return &_hot_card_cache; }
ysr@777 102 };
stefank@2314 103
stefank@2314 104 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTG1REFINE_HPP

mercurial