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

Mon, 12 Mar 2012 14:59:00 -0700

author
johnc
date
Mon, 12 Mar 2012 14:59:00 -0700
changeset 3666
64bf7c8270cb
parent 3466
b4ebad3520bb
child 4037
da91efe96a93
permissions
-rw-r--r--

7147724: G1: hang in SurrogateLockerThread::manipulatePLL
Summary: Attempting to initiate a marking cycle when allocating a humongous object can, if a marking cycle is successfully initiated by another thread, result in the allocating thread spinning until the marking cycle is complete. Eliminate a deadlock between the main ConcurrentMarkThread, the SurrogateLocker thread, the VM thread, and a mutator thread waiting on the SecondaryFreeList_lock (while free regions are going to become available) by not manipulating the pending list lock during the prologue and epilogue of the cleanup pause.
Reviewed-by: brutisso, jcoomes, tonyp

ysr@777 1 /*
johnc@3466 2 * Copyright (c) 2001, 2012, 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_G1_SPECIALIZED_OOP_CLOSURES_HPP
stefank@2314 26 #define SHARE_VM_GC_IMPLEMENTATION_G1_G1_SPECIALIZED_OOP_CLOSURES_HPP
stefank@2314 27
ysr@777 28 // The following OopClosure types get specialized versions of
ysr@777 29 // "oop_oop_iterate" that invoke the closures' do_oop methods
ysr@777 30 // non-virtually, using a mechanism defined in this file. Extend these
ysr@777 31 // macros in the obvious way to add specializations for new closures.
ysr@777 32
ysr@777 33 // Forward declarations.
ysr@777 34 enum G1Barrier {
johnc@3466 35 G1BarrierNone,
johnc@3466 36 G1BarrierRS,
johnc@3466 37 G1BarrierEvac
ysr@777 38 };
ysr@777 39
johnc@3466 40 template<bool do_gen_barrier, G1Barrier barrier, bool do_mark_object>
ysr@777 41 class G1ParCopyClosure;
johnc@3466 42
ysr@777 43 class G1ParScanClosure;
iveresov@1696 44 class G1ParPushHeapRSClosure;
ysr@777 45
iveresov@1696 46 typedef G1ParCopyClosure<false, G1BarrierEvac, false> G1ParScanHeapEvacClosure;
ysr@777 47
ysr@777 48 class FilterIntoCSClosure;
ysr@777 49 class FilterOutOfRegionClosure;
tonyp@2968 50 class G1CMOopClosure;
johnc@3466 51 class G1RootRegionScanClosure;
johnc@3466 52
johnc@3466 53 // Specialized oop closures from g1RemSet.cpp
johnc@3466 54 class G1Mux2Closure;
johnc@3466 55 class G1TriggerClosure;
johnc@3466 56 class G1InvokeIfNotTriggeredClosure;
johnc@3466 57 class G1UpdateRSOrPushRefOopClosure;
ysr@777 58
ysr@777 59 #ifdef FURTHER_SPECIALIZED_OOP_OOP_ITERATE_CLOSURES
ysr@777 60 #error "FURTHER_SPECIALIZED_OOP_OOP_ITERATE_CLOSURES already defined."
ysr@777 61 #endif
ysr@777 62
ysr@777 63 #define FURTHER_SPECIALIZED_OOP_OOP_ITERATE_CLOSURES(f) \
ysr@777 64 f(G1ParScanHeapEvacClosure,_nv) \
ysr@777 65 f(G1ParScanClosure,_nv) \
iveresov@1696 66 f(G1ParPushHeapRSClosure,_nv) \
ysr@777 67 f(FilterIntoCSClosure,_nv) \
tonyp@2968 68 f(FilterOutOfRegionClosure,_nv) \
johnc@3466 69 f(G1CMOopClosure,_nv) \
johnc@3466 70 f(G1RootRegionScanClosure,_nv) \
johnc@3466 71 f(G1Mux2Closure,_nv) \
johnc@3466 72 f(G1TriggerClosure,_nv) \
johnc@3466 73 f(G1InvokeIfNotTriggeredClosure,_nv) \
johnc@3466 74 f(G1UpdateRSOrPushRefOopClosure,_nv)
ysr@777 75
ysr@777 76 #ifdef FURTHER_SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES
ysr@777 77 #error "FURTHER_SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES already defined."
ysr@777 78 #endif
ysr@777 79
ysr@777 80 #define FURTHER_SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f)
stefank@2314 81
stefank@2314 82 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1_SPECIALIZED_OOP_CLOSURES_HPP

mercurial