src/share/vm/gc_implementation/parallelScavenge/pcTasks.cpp

Fri, 31 May 2013 14:32:44 +0200

author
stefank
date
Fri, 31 May 2013 14:32:44 +0200
changeset 5515
9766f73e770d
parent 5237
f2110083203d
child 6680
78bbf4d43a14
permissions
-rw-r--r--

8022880: False sharing between PSPromotionManager instances
Summary: Pad the PSPromotionManager instances in the manager array.
Reviewed-by: brutisso, jmasa

duke@435 1 /*
minqi@5097 2 * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 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.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/systemDictionary.hpp"
stefank@2314 27 #include "code/codeCache.hpp"
stefank@2314 28 #include "gc_implementation/parallelScavenge/pcTasks.hpp"
stefank@2314 29 #include "gc_implementation/parallelScavenge/psParallelCompact.hpp"
sla@5237 30 #include "gc_implementation/shared/gcTimer.hpp"
sla@5237 31 #include "gc_implementation/shared/gcTraceTime.hpp"
stefank@2314 32 #include "gc_interface/collectedHeap.hpp"
stefank@2314 33 #include "memory/universe.hpp"
stefank@2314 34 #include "oops/objArrayKlass.inline.hpp"
stefank@2314 35 #include "oops/oop.inline.hpp"
stefank@2314 36 #include "oops/oop.pcgc.inline.hpp"
stefank@2314 37 #include "prims/jvmtiExport.hpp"
stefank@2314 38 #include "runtime/fprofiler.hpp"
stefank@2314 39 #include "runtime/jniHandles.hpp"
stefank@2314 40 #include "runtime/thread.hpp"
stefank@2314 41 #include "runtime/vmThread.hpp"
stefank@2314 42 #include "services/management.hpp"
duke@435 43
duke@435 44 //
duke@435 45 // ThreadRootsMarkingTask
duke@435 46 //
duke@435 47
duke@435 48 void ThreadRootsMarkingTask::do_it(GCTaskManager* manager, uint which) {
duke@435 49 assert(Universe::heap()->is_gc_active(), "called outside gc");
duke@435 50
duke@435 51 ResourceMark rm;
duke@435 52
sla@5237 53 NOT_PRODUCT(GCTraceTime tm("ThreadRootsMarkingTask",
sla@5237 54 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
duke@435 55 ParCompactionManager* cm =
duke@435 56 ParCompactionManager::gc_thread_compaction_manager(which);
stefank@4298 57
duke@435 58 PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
stefank@4298 59 CLDToOopClosure mark_and_push_from_clds(&mark_and_push_closure, true);
jrose@1424 60 CodeBlobToOopClosure mark_and_push_in_blobs(&mark_and_push_closure, /*do_marking=*/ true);
duke@435 61
duke@435 62 if (_java_thread != NULL)
stefank@4298 63 _java_thread->oops_do(
stefank@4298 64 &mark_and_push_closure,
stefank@4298 65 &mark_and_push_from_clds,
stefank@4298 66 &mark_and_push_in_blobs);
duke@435 67
duke@435 68 if (_vm_thread != NULL)
stefank@4298 69 _vm_thread->oops_do(
stefank@4298 70 &mark_and_push_closure,
stefank@4298 71 &mark_and_push_from_clds,
stefank@4298 72 &mark_and_push_in_blobs);
duke@435 73
duke@435 74 // Do the real work
jcoomes@1746 75 cm->follow_marking_stacks();
duke@435 76 }
duke@435 77
duke@435 78
duke@435 79 void MarkFromRootsTask::do_it(GCTaskManager* manager, uint which) {
duke@435 80 assert(Universe::heap()->is_gc_active(), "called outside gc");
duke@435 81
sla@5237 82 NOT_PRODUCT(GCTraceTime tm("MarkFromRootsTask",
sla@5237 83 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
duke@435 84 ParCompactionManager* cm =
duke@435 85 ParCompactionManager::gc_thread_compaction_manager(which);
duke@435 86 PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
coleenp@4037 87 PSParallelCompact::FollowKlassClosure follow_klass_closure(&mark_and_push_closure);
duke@435 88
duke@435 89 switch (_root_type) {
duke@435 90 case universe:
duke@435 91 Universe::oops_do(&mark_and_push_closure);
duke@435 92 break;
duke@435 93
duke@435 94 case jni_handles:
duke@435 95 JNIHandles::oops_do(&mark_and_push_closure);
duke@435 96 break;
duke@435 97
duke@435 98 case threads:
duke@435 99 {
duke@435 100 ResourceMark rm;
jrose@1424 101 CodeBlobToOopClosure each_active_code_blob(&mark_and_push_closure, /*do_marking=*/ true);
stefank@4298 102 CLDToOopClosure mark_and_push_from_cld(&mark_and_push_closure);
stefank@4298 103 Threads::oops_do(&mark_and_push_closure, &mark_and_push_from_cld, &each_active_code_blob);
duke@435 104 }
duke@435 105 break;
duke@435 106
duke@435 107 case object_synchronizer:
duke@435 108 ObjectSynchronizer::oops_do(&mark_and_push_closure);
duke@435 109 break;
duke@435 110
duke@435 111 case flat_profiler:
duke@435 112 FlatProfiler::oops_do(&mark_and_push_closure);
duke@435 113 break;
duke@435 114
duke@435 115 case management:
duke@435 116 Management::oops_do(&mark_and_push_closure);
duke@435 117 break;
duke@435 118
duke@435 119 case jvmti:
duke@435 120 JvmtiExport::oops_do(&mark_and_push_closure);
duke@435 121 break;
duke@435 122
duke@435 123 case system_dictionary:
duke@435 124 SystemDictionary::always_strong_oops_do(&mark_and_push_closure);
stefank@5194 125 break;
stefank@5194 126
stefank@5194 127 case class_loader_data:
coleenp@4037 128 ClassLoaderDataGraph::always_strong_oops_do(&mark_and_push_closure, &follow_klass_closure, true);
duke@435 129 break;
duke@435 130
jrose@1424 131 case code_cache:
jrose@1424 132 // Do not treat nmethods as strong roots for mark/sweep, since we can unload them.
jrose@1424 133 //CodeCache::scavenge_root_nmethods_do(CodeBlobToOopClosure(&mark_and_push_closure));
jrose@1424 134 break;
jrose@1424 135
duke@435 136 default:
duke@435 137 fatal("Unknown root type");
duke@435 138 }
duke@435 139
duke@435 140 // Do the real work
jcoomes@1746 141 cm->follow_marking_stacks();
duke@435 142 }
duke@435 143
duke@435 144
duke@435 145 //
duke@435 146 // RefProcTaskProxy
duke@435 147 //
duke@435 148
duke@435 149 void RefProcTaskProxy::do_it(GCTaskManager* manager, uint which)
duke@435 150 {
duke@435 151 assert(Universe::heap()->is_gc_active(), "called outside gc");
duke@435 152
sla@5237 153 NOT_PRODUCT(GCTraceTime tm("RefProcTask",
sla@5237 154 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
duke@435 155 ParCompactionManager* cm =
duke@435 156 ParCompactionManager::gc_thread_compaction_manager(which);
duke@435 157 PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
duke@435 158 PSParallelCompact::FollowStackClosure follow_stack_closure(cm);
duke@435 159 _rp_task.work(_work_id, *PSParallelCompact::is_alive_closure(),
duke@435 160 mark_and_push_closure, follow_stack_closure);
duke@435 161 }
duke@435 162
duke@435 163 //
duke@435 164 // RefProcTaskExecutor
duke@435 165 //
duke@435 166
duke@435 167 void RefProcTaskExecutor::execute(ProcessTask& task)
duke@435 168 {
duke@435 169 ParallelScavengeHeap* heap = PSParallelCompact::gc_heap();
duke@435 170 uint parallel_gc_threads = heap->gc_task_manager()->workers();
jmasa@3294 171 uint active_gc_threads = heap->gc_task_manager()->active_workers();
jcoomes@810 172 RegionTaskQueueSet* qset = ParCompactionManager::region_array();
jmasa@3294 173 ParallelTaskTerminator terminator(active_gc_threads, qset);
duke@435 174 GCTaskQueue* q = GCTaskQueue::create();
duke@435 175 for(uint i=0; i<parallel_gc_threads; i++) {
duke@435 176 q->enqueue(new RefProcTaskProxy(task, i));
duke@435 177 }
duke@435 178 if (task.marks_oops_alive()) {
duke@435 179 if (parallel_gc_threads>1) {
jmasa@3294 180 for (uint j=0; j<active_gc_threads; j++) {
duke@435 181 q->enqueue(new StealMarkingTask(&terminator));
duke@435 182 }
duke@435 183 }
duke@435 184 }
duke@435 185 PSParallelCompact::gc_task_manager()->execute_and_wait(q);
duke@435 186 }
duke@435 187
duke@435 188 void RefProcTaskExecutor::execute(EnqueueTask& task)
duke@435 189 {
duke@435 190 ParallelScavengeHeap* heap = PSParallelCompact::gc_heap();
duke@435 191 uint parallel_gc_threads = heap->gc_task_manager()->workers();
duke@435 192 GCTaskQueue* q = GCTaskQueue::create();
duke@435 193 for(uint i=0; i<parallel_gc_threads; i++) {
duke@435 194 q->enqueue(new RefEnqueueTaskProxy(task, i));
duke@435 195 }
duke@435 196 PSParallelCompact::gc_task_manager()->execute_and_wait(q);
duke@435 197 }
duke@435 198
duke@435 199 //
duke@435 200 // StealMarkingTask
duke@435 201 //
duke@435 202
duke@435 203 StealMarkingTask::StealMarkingTask(ParallelTaskTerminator* t) :
duke@435 204 _terminator(t) {}
duke@435 205
duke@435 206 void StealMarkingTask::do_it(GCTaskManager* manager, uint which) {
duke@435 207 assert(Universe::heap()->is_gc_active(), "called outside gc");
duke@435 208
sla@5237 209 NOT_PRODUCT(GCTraceTime tm("StealMarkingTask",
sla@5237 210 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
duke@435 211
duke@435 212 ParCompactionManager* cm =
duke@435 213 ParCompactionManager::gc_thread_compaction_manager(which);
duke@435 214 PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
duke@435 215
duke@435 216 oop obj = NULL;
jcoomes@1746 217 ObjArrayTask task;
duke@435 218 int random_seed = 17;
jcoomes@1746 219 do {
jcoomes@1746 220 while (ParCompactionManager::steal_objarray(which, &random_seed, task)) {
minqi@5097 221 ObjArrayKlass* k = (ObjArrayKlass*)task.obj()->klass();
jcoomes@1746 222 k->oop_follow_contents(cm, task.obj(), task.index());
jcoomes@1746 223 cm->follow_marking_stacks();
jcoomes@1746 224 }
jcoomes@1746 225 while (ParCompactionManager::steal(which, &random_seed, obj)) {
duke@435 226 obj->follow_contents(cm);
jcoomes@1746 227 cm->follow_marking_stacks();
duke@435 228 }
jcoomes@1746 229 } while (!terminator()->offer_termination());
duke@435 230 }
duke@435 231
duke@435 232 //
jcoomes@810 233 // StealRegionCompactionTask
duke@435 234 //
duke@435 235
jcoomes@810 236 StealRegionCompactionTask::StealRegionCompactionTask(ParallelTaskTerminator* t):
jcoomes@810 237 _terminator(t) {}
duke@435 238
jcoomes@810 239 void StealRegionCompactionTask::do_it(GCTaskManager* manager, uint which) {
duke@435 240 assert(Universe::heap()->is_gc_active(), "called outside gc");
duke@435 241
sla@5237 242 NOT_PRODUCT(GCTraceTime tm("StealRegionCompactionTask",
sla@5237 243 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
duke@435 244
duke@435 245 ParCompactionManager* cm =
duke@435 246 ParCompactionManager::gc_thread_compaction_manager(which);
duke@435 247
jmasa@3294 248
jmasa@3294 249 // If not all threads are active, get a draining stack
jmasa@3294 250 // from the list. Else, just use this threads draining stack.
jmasa@3294 251 uint which_stack_index;
jmasa@3294 252 bool use_all_workers = manager->all_workers_active();
jmasa@3294 253 if (use_all_workers) {
jmasa@3294 254 which_stack_index = which;
jmasa@3294 255 assert(manager->active_workers() == ParallelGCThreads,
jmasa@3294 256 err_msg("all_workers_active has been incorrectly set: "
jmasa@3294 257 " active %d ParallelGCThreads %d", manager->active_workers(),
jmasa@3294 258 ParallelGCThreads));
jmasa@3294 259 } else {
jmasa@3294 260 which_stack_index = ParCompactionManager::pop_recycled_stack_index();
jmasa@3294 261 }
jmasa@3294 262
jmasa@3294 263 cm->set_region_stack_index(which_stack_index);
jmasa@3294 264 cm->set_region_stack(ParCompactionManager::region_list(which_stack_index));
jmasa@3294 265 if (TraceDynamicGCThreads) {
jmasa@3294 266 gclog_or_tty->print_cr("StealRegionCompactionTask::do_it "
jmasa@3294 267 "region_stack_index %d region_stack = 0x%x "
jmasa@3294 268 " empty (%d) use all workers %d",
jmasa@3294 269 which_stack_index, ParCompactionManager::region_list(which_stack_index),
jmasa@3294 270 cm->region_stack()->is_empty(),
jmasa@3294 271 use_all_workers);
jmasa@3294 272 }
jmasa@3294 273
jcoomes@810 274 // Has to drain stacks first because there may be regions on
duke@435 275 // preloaded onto the stack and this thread may never have
duke@435 276 // done a draining task. Are the draining tasks needed?
duke@435 277
jcoomes@810 278 cm->drain_region_stacks();
duke@435 279
jcoomes@810 280 size_t region_index = 0;
duke@435 281 int random_seed = 17;
duke@435 282
duke@435 283 // If we're the termination task, try 10 rounds of stealing before
duke@435 284 // setting the termination flag
duke@435 285
duke@435 286 while(true) {
jcoomes@810 287 if (ParCompactionManager::steal(which, &random_seed, region_index)) {
jcoomes@810 288 PSParallelCompact::fill_and_update_region(cm, region_index);
jcoomes@810 289 cm->drain_region_stacks();
duke@435 290 } else {
duke@435 291 if (terminator()->offer_termination()) {
duke@435 292 break;
duke@435 293 }
duke@435 294 // Go around again.
duke@435 295 }
duke@435 296 }
duke@435 297 return;
duke@435 298 }
duke@435 299
duke@435 300 UpdateDensePrefixTask::UpdateDensePrefixTask(
duke@435 301 PSParallelCompact::SpaceId space_id,
jcoomes@810 302 size_t region_index_start,
jcoomes@810 303 size_t region_index_end) :
jcoomes@810 304 _space_id(space_id), _region_index_start(region_index_start),
jcoomes@810 305 _region_index_end(region_index_end) {}
duke@435 306
duke@435 307 void UpdateDensePrefixTask::do_it(GCTaskManager* manager, uint which) {
duke@435 308
sla@5237 309 NOT_PRODUCT(GCTraceTime tm("UpdateDensePrefixTask",
sla@5237 310 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
duke@435 311
duke@435 312 ParCompactionManager* cm =
duke@435 313 ParCompactionManager::gc_thread_compaction_manager(which);
duke@435 314
duke@435 315 PSParallelCompact::update_and_deadwood_in_dense_prefix(cm,
duke@435 316 _space_id,
jcoomes@810 317 _region_index_start,
jcoomes@810 318 _region_index_end);
duke@435 319 }
duke@435 320
duke@435 321 void DrainStacksCompactionTask::do_it(GCTaskManager* manager, uint which) {
duke@435 322 assert(Universe::heap()->is_gc_active(), "called outside gc");
duke@435 323
sla@5237 324 NOT_PRODUCT(GCTraceTime tm("DrainStacksCompactionTask",
sla@5237 325 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
duke@435 326
duke@435 327 ParCompactionManager* cm =
duke@435 328 ParCompactionManager::gc_thread_compaction_manager(which);
duke@435 329
jmasa@3294 330 uint which_stack_index;
jmasa@3294 331 bool use_all_workers = manager->all_workers_active();
jmasa@3294 332 if (use_all_workers) {
jmasa@3294 333 which_stack_index = which;
jmasa@3294 334 assert(manager->active_workers() == ParallelGCThreads,
jmasa@3294 335 err_msg("all_workers_active has been incorrectly set: "
jmasa@3294 336 " active %d ParallelGCThreads %d", manager->active_workers(),
jmasa@3294 337 ParallelGCThreads));
jmasa@3294 338 } else {
jmasa@3294 339 which_stack_index = stack_index();
jmasa@3294 340 }
jmasa@3294 341
jmasa@3294 342 cm->set_region_stack(ParCompactionManager::region_list(which_stack_index));
jmasa@3294 343 if (TraceDynamicGCThreads) {
jmasa@3294 344 gclog_or_tty->print_cr("DrainStacksCompactionTask::do_it which = %d "
jmasa@3294 345 "which_stack_index = %d/empty(%d) "
jmasa@3294 346 "use all workers %d",
jmasa@3294 347 which, which_stack_index,
jmasa@3294 348 cm->region_stack()->is_empty(),
jmasa@3294 349 use_all_workers);
jmasa@3294 350 }
jmasa@3294 351
jmasa@3294 352 cm->set_region_stack_index(which_stack_index);
jmasa@3294 353
jcoomes@810 354 // Process any regions already in the compaction managers stacks.
jcoomes@810 355 cm->drain_region_stacks();
jmasa@3294 356
jmasa@3294 357 assert(cm->region_stack()->is_empty(), "Not empty");
jmasa@3294 358
jmasa@3294 359 if (!use_all_workers) {
jmasa@3294 360 // Always give up the region stack.
jmasa@3294 361 assert(cm->region_stack() ==
jmasa@3294 362 ParCompactionManager::region_list(cm->region_stack_index()),
jmasa@3294 363 "region_stack and region_stack_index are inconsistent");
jmasa@3294 364 ParCompactionManager::push_recycled_stack_index(cm->region_stack_index());
jmasa@3294 365
jmasa@3294 366 if (TraceDynamicGCThreads) {
jmasa@3294 367 void* old_region_stack = (void*) cm->region_stack();
jmasa@3294 368 int old_region_stack_index = cm->region_stack_index();
jmasa@3294 369 gclog_or_tty->print_cr("Pushing region stack 0x%x/%d",
jmasa@3294 370 old_region_stack, old_region_stack_index);
jmasa@3294 371 }
jmasa@3294 372
jmasa@3294 373 cm->set_region_stack(NULL);
jmasa@3294 374 cm->set_region_stack_index((uint)max_uintx);
jmasa@3294 375 }
duke@435 376 }

mercurial