annotate src/share/vm/runtime/objectMonitor.inline.hpp @ 3979:4dfb2df418f2

6484982: G1: process references during evacuation pauses Summary: G1 now uses two reference processors - one is used by concurrent marking and the other is used by STW GCs (both full and incremental evacuation pauses). In an evacuation pause, the reference processor is embedded into the closures used to scan objects. Doing so causes causes reference objects to be 'discovered' by the reference processor. At the end of the evacuation pause, these discovered reference objects are processed - preserving (and copying) referent objects (and their reachable graphs) as appropriate. Reviewed-by: ysr, jwilhelm, brutisso, stefank, tonyp
author johnc
date Thu, 22 Sep 2011 10:57:37 -0700
parents f95d63e2154a
children 22ba8c8ce6a6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1878
diff changeset
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1878
diff changeset
25 #ifndef SHARE_VM_RUNTIME_OBJECTMONITOR_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1878
diff changeset
26 #define SHARE_VM_RUNTIME_OBJECTMONITOR_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1878
diff changeset
27
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 inline intptr_t ObjectMonitor::is_entered(TRAPS) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 if (THREAD == _owner || THREAD->is_lock_owned((address) _owner)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 }
a61af66fc99e Initial load
duke
parents:
diff changeset
32 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 }
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 inline markOop ObjectMonitor::header() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 return _header;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 }
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 inline void ObjectMonitor::set_header(markOop hdr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _header = hdr;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 }
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 inline intptr_t ObjectMonitor::count() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return _count;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 inline void ObjectMonitor::set_count(intptr_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 _count= count;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 inline intptr_t ObjectMonitor::waiters() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 return _waiters;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 inline void* ObjectMonitor::owner() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 return _owner;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 inline void ObjectMonitor::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 assert(_header, "Fatal logic error in ObjectMonitor header!");
a61af66fc99e Initial load
duke
parents:
diff changeset
61 assert(_count == 0, "Fatal logic error in ObjectMonitor count!");
a61af66fc99e Initial load
duke
parents:
diff changeset
62 assert(_waiters == 0, "Fatal logic error in ObjectMonitor waiters!");
a61af66fc99e Initial load
duke
parents:
diff changeset
63 assert(_recursions == 0, "Fatal logic error in ObjectMonitor recursions!");
a61af66fc99e Initial load
duke
parents:
diff changeset
64 assert(_object, "Fatal logic error in ObjectMonitor object!");
a61af66fc99e Initial load
duke
parents:
diff changeset
65 assert(_owner == 0, "Fatal logic error in ObjectMonitor owner!");
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 _header = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _object = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 inline void* ObjectMonitor::object() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 return _object;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 inline void* ObjectMonitor::object_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return (void *)(&_object);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 inline void ObjectMonitor::set_object(void* obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _object = obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 inline bool ObjectMonitor::check(TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (THREAD != _owner) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 if (THREAD->is_lock_owned((address) _owner)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 _owner = THREAD; // regain ownership of inflated monitor
a61af66fc99e Initial load
duke
parents:
diff changeset
88 OwnerIsThread = 1 ;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 assert (_recursions == 0, "invariant") ;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 check_slow(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // return number of threads contending for this monitor
a61af66fc99e Initial load
duke
parents:
diff changeset
100 inline intptr_t ObjectMonitor::contentions() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 return _count;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 inline void ObjectMonitor::set_owner(void* owner) {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 _owner = owner;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _recursions = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 _count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1878
diff changeset
110
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1878
diff changeset
111 #endif // SHARE_VM_RUNTIME_OBJECTMONITOR_INLINE_HPP