1 /*
2 * Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved.
3 * Copyright (c) 2019, 2022, Red Hat, Inc. All rights reserved.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation.
9 *
10 * This code is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * version 2 for more details (a copy is included in the LICENSE file that
14 * accompanied this code).
15 *
16 * You should have received a copy of the GNU General Public License version
17 * 2 along with this work; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21 * or visit www.oracle.com if you need additional information or have any
22 * questions.
23 *
24 */
25
26
27 #include "gc/shenandoah/shenandoahClosures.inline.hpp"
28 #include "gc/shenandoah/shenandoahHeap.inline.hpp"
29 #include "gc/shenandoah/shenandoahNMethod.inline.hpp"
30 #include "memory/resourceArea.hpp"
31 #include "runtime/continuation.hpp"
32 #include "runtime/safepointVerifiers.hpp"
33
34 ShenandoahNMethod::ShenandoahNMethod(nmethod* nm, GrowableArray<oop*>& oops, bool non_immediate_oops) :
35 _nm(nm), _oops(nullptr), _oops_count(0), _unregistered(false), _lock(), _ic_lock() {
36
37 if (!oops.is_empty()) {
38 _oops_count = oops.length();
39 _oops = NEW_C_HEAP_ARRAY(oop*, _oops_count, mtGC);
40 for (int c = 0; c < _oops_count; c++) {
41 _oops[c] = oops.at(c);
42 }
43 }
44 _has_non_immed_oops = non_immediate_oops;
45
46 assert_same_oops();
47 }
48
49 ShenandoahNMethod::~ShenandoahNMethod() {
50 if (_oops != nullptr) {
51 FREE_C_HEAP_ARRAY(_oops);
52 }
53 }
54
55 void ShenandoahNMethod::update() {
56 ResourceMark rm;
57 bool non_immediate_oops = false;
58 GrowableArray<oop*> oops;
59
60 detect_reloc_oops(nm(), oops, non_immediate_oops);
61 if (oops.length() != _oops_count) {
62 if (_oops != nullptr) {
63 FREE_C_HEAP_ARRAY(_oops);
64 _oops = nullptr;
65 }
66
67 _oops_count = oops.length();
68 if (_oops_count > 0) {
69 _oops = NEW_C_HEAP_ARRAY(oop*, _oops_count, mtGC);
70 }
71 }
72
73 for (int index = 0; index < _oops_count; index ++) {
74 _oops[index] = oops.at(index);
75 }
76 _has_non_immed_oops = non_immediate_oops;
77
78 assert_same_oops();
79 }
80
81 void ShenandoahNMethod::detect_reloc_oops(nmethod* nm, GrowableArray<oop*>& oops, bool& has_non_immed_oops) {
82 has_non_immed_oops = false;
83 // Find all oops relocations
84 RelocIterator iter(nm);
85 while (iter.next()) {
86 if (iter.type() != relocInfo::oop_type) {
87 // Not an oop
88 continue;
89 }
90
91 oop_Relocation* r = iter.oop_reloc();
92 if (!r->oop_is_immediate()) {
93 // Non-immediate oop found
94 has_non_immed_oops = true;
95 continue;
96 }
97
98 oop value = r->oop_value();
99 if (value != nullptr) {
100 oop* addr = r->oop_addr();
101 shenandoah_assert_correct(addr, value);
102 shenandoah_assert_not_in_cset_except(addr, value, ShenandoahHeap::heap()->cancelled_gc());
103 shenandoah_assert_not_forwarded(addr, value);
104 // Non-null immediate oop found. null oops can safely be
105 // ignored since the method will be re-registered if they
106 // are later patched to be non-null.
107 oops.push(addr);
108 }
109 }
110 }
111
112 ShenandoahNMethod* ShenandoahNMethod::for_nmethod(nmethod* nm) {
113 ResourceMark rm;
114 bool non_immediate_oops = false;
115 GrowableArray<oop*> oops;
116
117 detect_reloc_oops(nm, oops, non_immediate_oops);
118 return new ShenandoahNMethod(nm, oops, non_immediate_oops);
119 }
120
121 void ShenandoahNMethod::heal_nmethod(nmethod* nm) {
122 ShenandoahNMethod* data = gc_data(nm);
123 assert(data != nullptr, "Sanity");
124 assert(data->lock()->owned_by_self(), "Must hold the lock");
125
126 ShenandoahHeap* const heap = ShenandoahHeap::heap();
127 if ((heap->is_concurrent_weak_root_in_progress() && heap->is_evacuation_in_progress()) ||
128 heap->is_concurrent_strong_root_in_progress()) {
129 heal_nmethod_metadata(data);
130 } else if (heap->is_concurrent_mark_in_progress()) {
131 ShenandoahKeepAliveClosure cl;
132 data->oops_do(&cl);
133 } else {
134 // There is possibility that GC is cancelled when it arrives final mark.
135 // In this case, concurrent root phase is skipped and degenerated GC should be
136 // followed, where nmethods are disarmed.
137 }
138 }
139
140 #ifdef ASSERT
141 void ShenandoahNMethod::assert_correct() {
142 ShenandoahHeap* heap = ShenandoahHeap::heap();
143 for (int c = 0; c < _oops_count; c++) {
144 oop *loc = _oops[c];
145 assert(_nm->code_contains((address) loc) || _nm->oops_contains(loc), "nmethod should contain the oop*");
146 oop o = RawAccess<>::oop_load(loc);
147 shenandoah_assert_correct_except(loc, o, o == nullptr || heap->is_full_gc_move_in_progress());
148 }
149
150 oop* const begin = _nm->oops_begin();
151 oop* const end = _nm->oops_end();
152 for (oop* p = begin; p < end; p++) {
153 if (*p != Universe::non_oop_word()) {
154 oop o = RawAccess<>::oop_load(p);
155 shenandoah_assert_correct_except(p, o, o == nullptr || heap->is_full_gc_move_in_progress());
156 }
157 }
188 assert(oops->contains(_oops[index]), "Must contain this oop");
189 }
190
191 for (oop* p = nm()->oops_begin(); p < nm()->oops_end(); p ++) {
192 if (*p == Universe::non_oop_word()) continue;
193 count++;
194 assert(oops->contains(p), "Must contain this oop");
195 }
196
197 if (oops->length() < count) {
198 stringStream debug_stream;
199 debug_stream.print_cr("detected locs: %d", oops->length());
200 for (int i = 0; i < oops->length(); i++) {
201 debug_stream.print_cr("-> " PTR_FORMAT, p2i(oops->at(i)));
202 }
203 debug_stream.print_cr("recorded oops: %d", _oops_count);
204 for (int i = 0; i < _oops_count; i++) {
205 debug_stream.print_cr("-> " PTR_FORMAT, p2i(_oops[i]));
206 }
207 GrowableArray<oop*> check;
208 bool non_immed;
209 detect_reloc_oops(nm(), check, non_immed);
210 debug_stream.print_cr("check oops: %d", check.length());
211 for (int i = 0; i < check.length(); i++) {
212 debug_stream.print_cr("-> " PTR_FORMAT, p2i(check.at(i)));
213 }
214 fatal("Must match #detected: %d, #recorded: %d, #total: %d, begin: " PTR_FORMAT ", end: " PTR_FORMAT "\n%s",
215 oops->length(), _oops_count, count, p2i(nm()->oops_begin()), p2i(nm()->oops_end()), debug_stream.freeze());
216 }
217 }
218 #endif
219
220 ShenandoahNMethodTable::ShenandoahNMethodTable() :
221 _heap(ShenandoahHeap::heap()),
222 _index(0),
223 _itr_cnt(0) {
224 _list = new ShenandoahNMethodList(minSize);
225 }
226
227 ShenandoahNMethodTable::~ShenandoahNMethodTable() {
228 assert(_list != nullptr, "Sanity");
229 _list->release();
230 }
231
232 void ShenandoahNMethodTable::register_nmethod(nmethod* nm) {
233 assert(CodeCache_lock->owned_by_self(), "Must have CodeCache_lock held");
234 assert(_index >= 0 && _index <= _list->size(), "Sanity");
235
236 ShenandoahNMethod* data = ShenandoahNMethod::gc_data(nm);
237
238 if (data != nullptr) {
239 assert(contain(nm), "Must have been registered");
240 assert(nm == data->nm(), "Must be same nmethod");
241 // Prevent updating a nmethod while concurrent iteration is in progress.
242 wait_until_concurrent_iteration_done();
243 ShenandoahNMethodLocker data_locker(data->lock());
244 data->update();
245 } else {
246 // For a new nmethod, we can safely append it to the list, because
247 // concurrent iteration will not touch it.
248 data = ShenandoahNMethod::for_nmethod(nm);
249 assert(data != nullptr, "Sanity");
250 ShenandoahNMethod::attach_gc_data(nm, data);
251 ShenandoahLocker locker(&_lock);
252 log_register_nmethod(nm);
253 append(data);
254 }
255 // Disarm new nmethod
256 ShenandoahNMethod::disarm_nmethod(nm);
257 }
258
259 void ShenandoahNMethodTable::unregister_nmethod(nmethod* nm) {
260 assert_locked_or_safepoint(CodeCache_lock);
261
262 ShenandoahNMethod* data = ShenandoahNMethod::gc_data(nm);
263 assert(data != nullptr, "Sanity");
264 log_unregister_nmethod(nm);
265 ShenandoahLocker locker(&_lock);
266 assert(contain(nm), "Must have been registered");
267
268 int idx = index_of(nm);
269 assert(idx >= 0 && idx < _index, "Invalid index");
270 ShenandoahNMethod::attach_gc_data(nm, nullptr);
271 remove(idx);
272 }
273
274 bool ShenandoahNMethodTable::contain(nmethod* nm) const {
275 return index_of(nm) != -1;
276 }
|
1 /*
2 * Copyright (c) 2024, 2026, Oracle and/or its affiliates. All rights reserved.
3 * Copyright (c) 2019, 2022, Red Hat, Inc. All rights reserved.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation.
9 *
10 * This code is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * version 2 for more details (a copy is included in the LICENSE file that
14 * accompanied this code).
15 *
16 * You should have received a copy of the GNU General Public License version
17 * 2 along with this work; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21 * or visit www.oracle.com if you need additional information or have any
22 * questions.
23 *
24 */
25
26
27 #include "gc/shenandoah/shenandoahBarrierSetAssembler.hpp"
28 #include "gc/shenandoah/shenandoahClosures.inline.hpp"
29 #include "gc/shenandoah/shenandoahHeap.inline.hpp"
30 #include "gc/shenandoah/shenandoahNMethod.inline.hpp"
31 #include "memory/resourceArea.hpp"
32 #include "runtime/continuation.hpp"
33 #include "runtime/safepointVerifiers.hpp"
34
35 ShenandoahNMethod::ShenandoahNMethod(nmethod* nm) :
36 _nm(nm), _oops(nullptr), _oops_count(0), _barriers(nullptr), _barriers_count(0), _unregistered(false), _lock(), _ic_lock() {
37 init_from(nm);
38 }
39
40 ShenandoahNMethod::~ShenandoahNMethod() {
41 if (_oops != nullptr) {
42 FREE_C_HEAP_ARRAY(_oops);
43 }
44 if (_barriers != nullptr) {
45 FREE_C_HEAP_ARRAY(_barriers);
46 }
47 }
48
49 void ShenandoahNMethod::update() {
50 init_from(nm());
51 }
52
53 void ShenandoahNMethod::init_from(nmethod* nm) {
54 ResourceMark rm;
55 bool non_immediate_oops = false;
56 GrowableArray<oop*> oops;
57 GrowableArray<ShenandoahNMethodBarrier> barriers;
58
59 parse(nm, oops, non_immediate_oops, barriers);
60
61 int new_oops_count = oops.length();
62 if (_oops_count != new_oops_count) {
63 if (_oops != nullptr) {
64 FREE_C_HEAP_ARRAY(_oops);
65 _oops = nullptr;
66 }
67 if (new_oops_count > 0) {
68 _oops = NEW_C_HEAP_ARRAY(oop*, new_oops_count, mtGC);
69 }
70 }
71 _oops_count = new_oops_count;
72 for (int c = 0; c < _oops_count; c++) {
73 _oops[c] = oops.at(c);
74 }
75 assert_same_oops();
76
77 int new_barriers_count = barriers.length();
78 if (_barriers_count != new_barriers_count) {
79 if (_barriers != nullptr) {
80 FREE_C_HEAP_ARRAY(_barriers);
81 _barriers = nullptr;
82 }
83 if (new_barriers_count > 0) {
84 _barriers = NEW_C_HEAP_ARRAY(ShenandoahNMethodBarrier, new_barriers_count, mtGC);
85 }
86 }
87 _barriers_count = new_barriers_count;
88 for (int c = 0; c < _barriers_count; c++) {
89 _barriers[c] = barriers.at(c);
90 }
91
92 _has_non_immed_oops = non_immediate_oops;
93 }
94
95 void ShenandoahNMethod::parse(nmethod* nm, GrowableArray<oop*>& oops, bool& has_non_immed_oops, GrowableArray<ShenandoahNMethodBarrier>& barriers) {
96 has_non_immed_oops = false;
97 address code_begin = nm->code_begin();
98 RelocIterator iter(nm);
99 while (iter.next()) {
100 switch (iter.type()) {
101 case relocInfo::oop_type: {
102 oop_Relocation* r = iter.oop_reloc();
103 if (!r->oop_is_immediate()) {
104 // Non-immediate oop found
105 has_non_immed_oops = true;
106 break;
107 }
108
109 oop value = r->oop_value();
110 if (value != nullptr) {
111 oop* addr = r->oop_addr();
112 shenandoah_assert_correct(addr, value);
113 shenandoah_assert_not_in_cset_except(addr, value, ShenandoahHeap::heap()->cancelled_gc());
114 shenandoah_assert_not_forwarded(addr, value);
115 // Non-null immediate oop found. null oops can safely be
116 // ignored since the method will be re-registered if they
117 // are later patched to be non-null.
118 oops.push(addr);
119 }
120 break;
121 }
122 case relocInfo::patchable_barrier_type: {
123 patchable_barrier_Relocation* r = iter.patchable_barrier_reloc();
124
125 ShenandoahNMethodBarrier b;
126 b._rel_pc = checked_cast<int32_t>(pointer_delta(r->addr(), code_begin, 1));
127 b._rel_target_pc = r->target_offset();
128 b._gc_state = decode_reloc_gc_state(r->metadata());
129 b._jump_when_state = decode_reloc_jump_when_state(r->metadata());
130 barriers.push(b);
131 break;
132 }
133 default:
134 // We do not care about other relocations.
135 break;
136 }
137 }
138 }
139
140 ShenandoahNMethod* ShenandoahNMethod::for_nmethod(nmethod* nm) {
141 return new ShenandoahNMethod(nm);
142 }
143
144 bool ShenandoahNMethod::handle_oops(nmethod* nm) {
145 ShenandoahNMethod* data = gc_data(nm);
146 assert(data != nullptr, "Sanity");
147 assert(data->lock()->owned_by_self(), "Must hold the lock");
148
149 ShenandoahHeap* const heap = ShenandoahHeap::heap();
150 if ((heap->is_concurrent_weak_root_in_progress() && heap->is_evacuation_in_progress()) ||
151 heap->is_concurrent_strong_root_in_progress()) {
152 heal_nmethod_metadata(data);
153 // Assume healing changed the code.
154 return true;
155 } else if (heap->is_concurrent_mark_in_progress()) {
156 ShenandoahKeepAliveClosure cl;
157 data->oops_do(&cl);
158 } else {
159 // There is possibility that GC is cancelled when it arrives final mark.
160 // In this case, concurrent root phase is skipped and degenerated GC should be
161 // followed, where nmethods are disarmed.
162 }
163
164 // No code modifications happened
165 return false;
166 }
167
168 bool ShenandoahNMethod::handle_barriers(nmethod* nm) {
169 ShenandoahNMethod* data = gc_data(nm);
170 assert(data != nullptr, "Sanity");
171 assert(data->lock()->owned_by_self(), "Must hold the lock");
172
173 char gc_state = ShenandoahHeap::heap()->gc_state();
174 address code_begin = nm->code_begin();
175
176 bool changed = false;
177 for (int c = 0; c < data->_barriers_count; c++) {
178 ShenandoahNMethodBarrier& b = data->_barriers[c];
179 changed |= patch_barrier(code_begin + b._rel_pc,
180 code_begin + b._rel_target_pc,
181 ((gc_state & b._gc_state) != 0) == b._jump_when_state);
182 }
183 return changed;
184 }
185
186 bool ShenandoahNMethod::patch_barrier(address pc, address target_pc, bool should_jump) {
187 // Use precise instruction rewrite code, and only when it recognizes the current insns.
188 // This patching code is non-atomic, but it runs in two safe contexts:
189 // a) For new nmethods that are not yet executing;
190 // b) For existing methods in the nmethod entry barrier context. The nmethod entry barriers
191 // are armed along with stack watermark machinery activation, which together guarantee
192 // the nmethod updates are not interleaved with execution.
193 // The icache flushing is also handled on both paths.
194 bool patched = true;
195 if (should_jump && ShenandoahBarrierSetAssembler::is_patchable_nop(pc)) {
196 ShenandoahBarrierSetAssembler::insert_patchable_jump(pc, target_pc);
197 } else if (!should_jump && ShenandoahBarrierSetAssembler::is_patchable_jump(pc, target_pc)) {
198 ShenandoahBarrierSetAssembler::insert_patchable_nop(pc);
199 } else {
200 patched = false;
201 }
202
203 // Failing to change the barrier is catastrophic for correctness,
204 // so prefer to crash hard even in product.
205 if (should_jump) {
206 guarantee(ShenandoahBarrierSetAssembler::is_patchable_jump(pc, target_pc),
207 "Should be jump to the same address");
208 assert(ShenandoahBarrierSetAssembler::parse_jump_address(pc) == target_pc,
209 "Cross-checking, jump should be to the same address");
210 } else {
211 guarantee(ShenandoahBarrierSetAssembler::is_patchable_nop(pc),
212 "Should be patchable nop");
213 }
214 return patched;
215 }
216
217 #ifdef ASSERT
218 void ShenandoahNMethod::assert_correct() {
219 ShenandoahHeap* heap = ShenandoahHeap::heap();
220 for (int c = 0; c < _oops_count; c++) {
221 oop *loc = _oops[c];
222 assert(_nm->code_contains((address) loc) || _nm->oops_contains(loc), "nmethod should contain the oop*");
223 oop o = RawAccess<>::oop_load(loc);
224 shenandoah_assert_correct_except(loc, o, o == nullptr || heap->is_full_gc_move_in_progress());
225 }
226
227 oop* const begin = _nm->oops_begin();
228 oop* const end = _nm->oops_end();
229 for (oop* p = begin; p < end; p++) {
230 if (*p != Universe::non_oop_word()) {
231 oop o = RawAccess<>::oop_load(p);
232 shenandoah_assert_correct_except(p, o, o == nullptr || heap->is_full_gc_move_in_progress());
233 }
234 }
265 assert(oops->contains(_oops[index]), "Must contain this oop");
266 }
267
268 for (oop* p = nm()->oops_begin(); p < nm()->oops_end(); p ++) {
269 if (*p == Universe::non_oop_word()) continue;
270 count++;
271 assert(oops->contains(p), "Must contain this oop");
272 }
273
274 if (oops->length() < count) {
275 stringStream debug_stream;
276 debug_stream.print_cr("detected locs: %d", oops->length());
277 for (int i = 0; i < oops->length(); i++) {
278 debug_stream.print_cr("-> " PTR_FORMAT, p2i(oops->at(i)));
279 }
280 debug_stream.print_cr("recorded oops: %d", _oops_count);
281 for (int i = 0; i < _oops_count; i++) {
282 debug_stream.print_cr("-> " PTR_FORMAT, p2i(_oops[i]));
283 }
284 GrowableArray<oop*> check;
285 GrowableArray<ShenandoahNMethodBarrier> barriers;
286 bool non_immed;
287 parse(nm(), check, non_immed, barriers);
288 debug_stream.print_cr("check oops: %d", check.length());
289 for (int i = 0; i < check.length(); i++) {
290 debug_stream.print_cr("-> " PTR_FORMAT, p2i(check.at(i)));
291 }
292 fatal("Must match #detected: %d, #recorded: %d, #total: %d, begin: " PTR_FORMAT ", end: " PTR_FORMAT "\n%s",
293 oops->length(), _oops_count, count, p2i(nm()->oops_begin()), p2i(nm()->oops_end()), debug_stream.freeze());
294 }
295 }
296 #endif
297
298 ShenandoahNMethodTable::ShenandoahNMethodTable() :
299 _heap(ShenandoahHeap::heap()),
300 _index(0),
301 _itr_cnt(0) {
302 _list = new ShenandoahNMethodList(minSize);
303 }
304
305 ShenandoahNMethodTable::~ShenandoahNMethodTable() {
306 assert(_list != nullptr, "Sanity");
307 _list->release();
308 }
309
310 void ShenandoahNMethodTable::register_nmethod(nmethod* nm) {
311 assert(CodeCache_lock->owned_by_self(), "Must have CodeCache_lock held");
312 assert(_index >= 0 && _index <= _list->size(), "Sanity");
313
314 ShenandoahNMethod* data = ShenandoahNMethod::gc_data(nm);
315
316 if (data != nullptr) {
317 // Re-registering the existing nmethod. This is the C1 oop patching path.
318 // We expect no barriers here, as only oops can change in C1 case.
319 assert(contain(nm), "Must have been registered");
320 assert(nm == data->nm(), "Must be same nmethod");
321 assert(nm->is_compiled_by_c1(), "Must be compiled by C1");
322 assert(!data->has_barriers(), "Must not have barriers");
323 // Prevent updating a nmethod while concurrent iteration is in progress.
324 wait_until_concurrent_iteration_done();
325 ShenandoahNMethodLocker data_locker(data->lock());
326 data->update();
327 } else {
328 // New nmethod, not yet executing. We can safely append it to the list,
329 // because concurrent iteration will not touch it. Ditto we do barrier
330 // fixups right here, without relying on nmethod entry barrier to be armed
331 // for new nmethods.
332 data = ShenandoahNMethod::for_nmethod(nm);
333 assert(data != nullptr, "Sanity");
334 ShenandoahNMethod::attach_gc_data(nm, data);
335 ShenandoahLocker locker(&_lock);
336 log_register_nmethod(nm);
337 append(data);
338 ShenandoahNMethodLocker data_locker(data->lock());
339 if (ShenandoahNMethod::handle_barriers(nm)) {
340 ICache::invalidate_range(nm->code_begin(), nm->code_size());
341 }
342 ShenandoahNMethod::disarm_nmethod(nm);
343 }
344 }
345
346 void ShenandoahNMethodTable::unregister_nmethod(nmethod* nm) {
347 assert_locked_or_safepoint(CodeCache_lock);
348
349 ShenandoahNMethod* data = ShenandoahNMethod::gc_data(nm);
350 assert(data != nullptr, "Sanity");
351 log_unregister_nmethod(nm);
352 ShenandoahLocker locker(&_lock);
353 assert(contain(nm), "Must have been registered");
354
355 int idx = index_of(nm);
356 assert(idx >= 0 && idx < _index, "Invalid index");
357 ShenandoahNMethod::attach_gc_data(nm, nullptr);
358 remove(idx);
359 }
360
361 bool ShenandoahNMethodTable::contain(nmethod* nm) const {
362 return index_of(nm) != -1;
363 }
|