-
Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy pathlocknode.cpp
223 lines (201 loc) · 8.09 KB
/
locknode.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/*
* Copyright (c) 1999, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#include "opto/locknode.hpp"
#include "opto/parse.hpp"
#include "opto/rootnode.hpp"
#include "opto/runtime.hpp"
//=============================================================================
const RegMask &BoxLockNode::in_RegMask(uint i) const {
return _inmask;
}
const RegMask &BoxLockNode::out_RegMask() const {
return *Matcher::idealreg2regmask[Op_RegP];
}
uint BoxLockNode::size_of() const { return sizeof(*this); }
BoxLockNode::BoxLockNode( int slot ) : Node( Compile::current()->root() ),
_slot(slot), _kind(BoxLockNode::Regular) {
init_class_id(Class_BoxLock);
init_flags(Flag_rematerialize);
OptoReg::Name reg = OptoReg::stack2reg(_slot);
if (!RegMask::can_represent(reg, Compile::current()->sync_stack_slots())) {
Compile::current()->record_method_not_compilable("must be able to represent all monitor slots in reg mask");
return;
}
_inmask.Insert(reg);
}
uint BoxLockNode::hash() const {
if (EliminateNestedLocks) {
return NO_HASH; // Each locked region has own BoxLock node
}
return Node::hash() + _slot + (is_eliminated() ? Compile::current()->fixed_slots() : 0);
}
bool BoxLockNode::cmp( const Node &n ) const {
if (EliminateNestedLocks) {
return (&n == this); // Always fail except on self
}
const BoxLockNode &bn = (const BoxLockNode &)n;
return (bn._slot == _slot) && (bn.is_eliminated() == is_eliminated());
}
Node* BoxLockNode::Identity(PhaseGVN* phase) {
if (!EliminateNestedLocks && !this->is_eliminated()) {
Node* n = phase->hash_find(this);
if (n == nullptr || n == this) {
return this;
}
BoxLockNode* old_box = n->as_BoxLock();
// Set corresponding status (_kind) when commoning BoxLock nodes.
if (this->_kind != old_box->_kind) {
if (this->is_unbalanced()) {
old_box->set_unbalanced();
}
if (!old_box->is_unbalanced()) {
// Only Regular or Coarsened status should be here:
// Nested and Local are set only when EliminateNestedLocks is on.
if (old_box->is_regular()) {
assert(this->is_coarsened(),"unexpected kind: %s", _kind_name[(int)this->_kind]);
old_box->set_coarsened();
} else {
assert(this->is_regular(),"unexpected kind: %s", _kind_name[(int)this->_kind]);
assert(old_box->is_coarsened(),"unexpected kind: %s", _kind_name[(int)old_box->_kind]);
}
}
}
return old_box;
}
return this;
}
BoxLockNode* BoxLockNode::box_node(Node* box) {
// Chase down the BoxNode after RA which may spill box nodes.
while (!box->is_BoxLock()) {
// if (box_node->is_SpillCopy()) {
// Node *m = box_node->in(1);
// if (m->is_Mach() && m->as_Mach()->ideal_Opcode() == Op_StoreP) {
// box_node = m->in(m->as_Mach()->operand_index(2));
// continue;
// }
// }
assert(box->is_SpillCopy() || box->is_Phi(), "Bad spill of Lock.");
// Only BoxLock nodes with the same stack slot are merged.
// So it is enough to trace one path to find the slot value.
box = box->in(1);
}
return box->as_BoxLock();
}
OptoReg::Name BoxLockNode::reg(Node* box) {
return box_node(box)->in_RegMask(0).find_first_elem();
}
// Is BoxLock node used for one simple lock region (same box and obj)?
bool BoxLockNode::is_simple_lock_region(LockNode** unique_lock, Node* obj, Node** bad_lock) {
if (is_unbalanced()) {
return false;
}
LockNode* lock = nullptr;
bool has_one_lock = false;
for (uint i = 0; i < this->outcnt(); i++) {
Node* n = this->raw_out(i);
assert(!n->is_Phi(), "should not merge BoxLock nodes");
if (n->is_AbstractLock()) {
AbstractLockNode* alock = n->as_AbstractLock();
// Check lock's box since box could be referenced by Lock's debug info.
if (alock->box_node() == this) {
if (alock->obj_node()->eqv_uncast(obj)) {
if ((unique_lock != nullptr) && alock->is_Lock()) {
if (lock == nullptr) {
lock = alock->as_Lock();
has_one_lock = true;
} else if (lock != alock->as_Lock()) {
has_one_lock = false;
if (bad_lock != nullptr) {
*bad_lock = alock;
}
}
}
} else {
if (bad_lock != nullptr) {
*bad_lock = alock;
}
return false; // Different objects
}
}
}
}
#ifdef ASSERT
// Verify that FastLock and Safepoint reference only this lock region.
for (uint i = 0; i < this->outcnt(); i++) {
Node* n = this->raw_out(i);
if (n->is_FastLock()) {
FastLockNode* flock = n->as_FastLock();
assert((flock->box_node() == this) && flock->obj_node()->eqv_uncast(obj),"");
}
// Don't check monitor info in safepoints since the referenced object could
// be different from the locked object. It could be Phi node of different
// cast nodes which point to this locked object.
// We assume that no other objects could be referenced in monitor info
// associated with this BoxLock node because all associated locks and
// unlocks are reference only this one object.
}
#endif
if (unique_lock != nullptr && has_one_lock) {
*unique_lock = lock;
}
return true;
}
//=============================================================================
//-----------------------------hash--------------------------------------------
uint FastLockNode::hash() const { return NO_HASH; }
uint FastLockNode::size_of() const { return sizeof(*this); }
//------------------------------cmp--------------------------------------------
bool FastLockNode::cmp( const Node &n ) const {
return (&n == this); // Always fail except on self
}
//=============================================================================
//-----------------------------hash--------------------------------------------
uint FastUnlockNode::hash() const { return NO_HASH; }
//------------------------------cmp--------------------------------------------
bool FastUnlockNode::cmp( const Node &n ) const {
return (&n == this); // Always fail except on self
}
//=============================================================================
//------------------------------do_monitor_enter-------------------------------
void Parse::do_monitor_enter() {
kill_dead_locals();
// Null check; get casted pointer.
Node* obj = null_check(peek());
// Check for locking null object
if (stopped()) return;
// the monitor object is not part of debug info expression stack
pop();
// Insert a FastLockNode which takes as arguments the current thread pointer,
// the obj pointer & the address of the stack slot pair used for the lock.
shared_lock(obj);
}
//------------------------------do_monitor_exit--------------------------------
void Parse::do_monitor_exit() {
kill_dead_locals();
pop(); // Pop oop to unlock
// Because monitors are guaranteed paired (else we bail out), we know
// the matching Lock for this Unlock. Hence we know there is no need
// for a null check on Unlock.
shared_unlock(map()->peek_monitor_box(), map()->peek_monitor_obj());
}