1 /*
  2  * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "code/nmethod.hpp"
 27 #include "code/dependencies.hpp"
 28 #include "code/dependencyContext.hpp"
 29 #include "logging/log.hpp"
 30 #include "logging/logStream.hpp"
 31 #include "memory/resourceArea.hpp"
 32 #include "runtime/atomic.hpp"
 33 #include "runtime/deoptimization.hpp"
 34 #include "runtime/mutexLocker.hpp"
 35 #include "runtime/orderAccess.hpp"
 36 #include "runtime/perfData.hpp"
 37 #include "utilities/exceptions.hpp"
 38 
 39 PerfCounter* DependencyContext::_perf_total_buckets_allocated_count   = nullptr;
 40 PerfCounter* DependencyContext::_perf_total_buckets_deallocated_count = nullptr;
 41 PerfCounter* DependencyContext::_perf_total_buckets_stale_count       = nullptr;
 42 PerfCounter* DependencyContext::_perf_total_buckets_stale_acc_count   = nullptr;
 43 nmethodBucket* volatile DependencyContext::_purge_list                = nullptr;
 44 volatile uint64_t DependencyContext::_cleaning_epoch                  = 0;
 45 uint64_t  DependencyContext::_cleaning_epoch_monotonic                = 0;
 46 
 47 void dependencyContext_init() {
 48   DependencyContext::init();
 49 }
 50 
 51 void DependencyContext::init() {
 52   if (UsePerfData) {
 53     EXCEPTION_MARK;
 54     _perf_total_buckets_allocated_count =
 55         PerfDataManager::create_counter(SUN_CI, "nmethodBucketsAllocated", PerfData::U_Events, CHECK);
 56     _perf_total_buckets_deallocated_count =
 57         PerfDataManager::create_counter(SUN_CI, "nmethodBucketsDeallocated", PerfData::U_Events, CHECK);
 58     _perf_total_buckets_stale_count =
 59         PerfDataManager::create_counter(SUN_CI, "nmethodBucketsStale", PerfData::U_Events, CHECK);
 60     _perf_total_buckets_stale_acc_count =
 61         PerfDataManager::create_counter(SUN_CI, "nmethodBucketsStaleAccumulated", PerfData::U_Events, CHECK);
 62   }
 63 }
 64 
 65 //
 66 // Walk the list of dependent nmethods searching for nmethods which
 67 // are dependent on the changes that were passed in and mark them for
 68 // deoptimization.
 69 //
 70 void DependencyContext::mark_dependent_nmethods(DeoptimizationScope* deopt_scope, DepChange& changes) {
 71   for (nmethodBucket* b = dependencies_not_unloading(); b != nullptr; b = b->next_not_unloading()) {
 72     nmethod* nm = b->get_nmethod();
 73     if (nm->is_marked_for_deoptimization()) {
 74       deopt_scope->dependent(nm);
 75     } else if (nm->check_dependency_on(changes)) {
 76       LogTarget(Info, dependencies) lt;
 77       if (lt.is_enabled()) {
 78         ResourceMark rm;
 79         LogStream ls(&lt);
 80         ls.print_cr("Marked for deoptimization");
 81         changes.print_on(&ls);
 82         nm->print_on(&ls);
 83         nm->print_dependencies_on(&ls);
 84       }
 85       deopt_scope->mark(nm, !changes.is_call_site_change());
 86     }
 87   }
 88 }
 89 
 90 //
 91 // Add an nmethod to the dependency context.
 92 //
 93 void DependencyContext::add_dependent_nmethod(nmethod* nm) {
 94   assert_lock_strong(CodeCache_lock);
 95   for (nmethodBucket* b = dependencies_not_unloading(); b != nullptr; b = b->next_not_unloading()) {
 96     if (nm == b->get_nmethod()) {
 97       return;
 98     }
 99   }
100   nmethodBucket* new_head = new nmethodBucket(nm, nullptr);
101   for (;;) {
102     nmethodBucket* head = Atomic::load(_dependency_context_addr);
103     new_head->set_next(head);
104     if (Atomic::cmpxchg(_dependency_context_addr, head, new_head) == head) {
105       break;
106     }
107   }
108   if (UsePerfData) {
109     _perf_total_buckets_allocated_count->inc();
110   }
111 }
112 
113 void DependencyContext::release(nmethodBucket* b) {
114   if (delete_on_release()) {
115     assert_locked_or_safepoint(CodeCache_lock);
116     delete b;
117     if (UsePerfData) {
118       _perf_total_buckets_deallocated_count->inc();
119     }
120   } else {
121     // Mark the context as having stale entries, since it is not safe to
122     // expunge the list right now.
123     for (;;) {
124       nmethodBucket* purge_list_head = Atomic::load(&_purge_list);
125       b->set_purge_list_next(purge_list_head);
126       if (Atomic::cmpxchg(&_purge_list, purge_list_head, b) == purge_list_head) {
127         break;
128       }
129     }
130     if (UsePerfData) {
131       _perf_total_buckets_stale_count->inc();
132       _perf_total_buckets_stale_acc_count->inc();
133     }
134   }
135 }
136 
137 //
138 // Reclaim all unused buckets.
139 //
140 void DependencyContext::purge_dependency_contexts() {
141   int removed = 0;
142   for (nmethodBucket* b = _purge_list; b != nullptr;) {
143     nmethodBucket* next = b->purge_list_next();
144     removed++;
145     delete b;
146     b = next;
147   }
148   if (UsePerfData && removed > 0) {
149     _perf_total_buckets_deallocated_count->inc(removed);
150   }
151   _purge_list = nullptr;
152 }
153 
154 //
155 // Cleanup a dependency context by unlinking and placing all dependents corresponding
156 // to is_unloading nmethods on a purge list, which will be deleted later when it is safe.
157 void DependencyContext::clean_unloading_dependents() {
158   if (!claim_cleanup()) {
159     // Somebody else is cleaning up this dependency context.
160     return;
161   }
162   // Walk the nmethodBuckets and move dead entries on the purge list, which will
163   // be deleted during ClassLoaderDataGraph::purge().
164   nmethodBucket* b = dependencies_not_unloading();
165   while (b != nullptr) {
166     nmethodBucket* next = b->next_not_unloading();
167     b = next;
168   }
169 }
170 
171 nmethodBucket* DependencyContext::release_and_get_next_not_unloading(nmethodBucket* b) {
172   nmethodBucket* next = b->next_not_unloading();
173   release(b);
174   return next;
175  }
176 
177 //
178 // Invalidate all dependencies in the context
179 void DependencyContext::remove_all_dependents() {
180   // Assume that the dependency is not deleted immediately but moved into the
181   // purge list when calling this.
182   assert(!delete_on_release(), "should not delete on release");
183 
184   nmethodBucket* first = Atomic::load_acquire(_dependency_context_addr);
185   if (first == nullptr) {
186     return;
187   }
188 
189   nmethodBucket* cur = first;
190   nmethodBucket* last = cur;
191   jlong count = 0;
192   for (; cur != nullptr; cur = cur->next()) {
193     assert(cur->get_nmethod()->is_unloading(), "must be");
194     last = cur;
195     count++;
196   }
197 
198   // Add the whole list to the purge list at once.
199   nmethodBucket* old_purge_list_head = Atomic::load(&_purge_list);
200   for (;;) {
201     last->set_purge_list_next(old_purge_list_head);
202     nmethodBucket* next_purge_list_head = Atomic::cmpxchg(&_purge_list, old_purge_list_head, first);
203     if (old_purge_list_head == next_purge_list_head) {
204       break;
205     }
206     old_purge_list_head = next_purge_list_head;
207   }
208 
209   if (UsePerfData) {
210     _perf_total_buckets_stale_count->inc(count);
211     _perf_total_buckets_stale_acc_count->inc(count);
212   }
213 
214   set_dependencies(nullptr);
215 }
216 
217 void DependencyContext::remove_and_mark_for_deoptimization_all_dependents(DeoptimizationScope* deopt_scope) {
218   nmethodBucket* b = dependencies_not_unloading();
219   set_dependencies(nullptr);
220   while (b != nullptr) {
221     nmethod* nm = b->get_nmethod();
222     // Also count already (concurrently) marked nmethods to make sure
223     // deoptimization is triggered before execution in this thread continues.
224     deopt_scope->mark(nm);
225     b = release_and_get_next_not_unloading(b);
226   }
227 }
228 
229 #ifndef PRODUCT
230 void DependencyContext::print_dependent_nmethods(bool verbose) {
231   int idx = 0;
232   for (nmethodBucket* b = dependencies_not_unloading(); b != nullptr; b = b->next_not_unloading()) {
233     nmethod* nm = b->get_nmethod();
234     tty->print("[%d] { ", idx++);
235     if (!verbose) {
236       nm->print_on(tty, "nmethod");
237       tty->print_cr(" } ");
238     } else {
239       nm->print();
240       nm->print_dependencies_on(tty);
241       tty->print_cr("--- } ");
242     }
243   }
244 }
245 #endif //PRODUCT
246 
247 bool DependencyContext::is_dependent_nmethod(nmethod* nm) {
248   for (nmethodBucket* b = dependencies_not_unloading(); b != nullptr; b = b->next_not_unloading()) {
249     if (nm == b->get_nmethod()) {
250       return true;
251     }
252   }
253   return false;
254 }
255 
256 // We use a monotonically increasing epoch counter to track the last epoch a given
257 // dependency context was cleaned. GC threads claim cleanup tasks by performing
258 // a CAS on this value.
259 bool DependencyContext::claim_cleanup() {
260   uint64_t cleaning_epoch = Atomic::load(&_cleaning_epoch);
261   uint64_t last_cleanup = Atomic::load(_last_cleanup_addr);
262   if (last_cleanup >= cleaning_epoch) {
263     return false;
264   }
265   return Atomic::cmpxchg(_last_cleanup_addr, last_cleanup, cleaning_epoch) == last_cleanup;
266 }
267 
268 bool DependencyContext::delete_on_release() {
269   return Atomic::load(&_cleaning_epoch) == 0;
270 }
271 
272 // Retrieve the first nmethodBucket that has a dependent that does not correspond to
273 // an is_unloading nmethod. Any nmethodBucket entries observed from the original head
274 // that is_unloading() will be unlinked and placed on the purge list.
275 nmethodBucket* DependencyContext::dependencies_not_unloading() {
276   for (;;) {
277     // Need acquire because the read value could come from a concurrent insert.
278     nmethodBucket* head = Atomic::load_acquire(_dependency_context_addr);
279     if (head == nullptr || !head->get_nmethod()->is_unloading()) {
280       return head;
281     }
282     nmethodBucket* head_next = head->next();
283     OrderAccess::loadload();
284     if (Atomic::load(_dependency_context_addr) != head) {
285       // Unstable load of head w.r.t. head->next
286       continue;
287     }
288     if (Atomic::cmpxchg(_dependency_context_addr, head, head_next) == head) {
289       // Release is_unloading entries if unlinking was claimed
290       DependencyContext::release(head);
291     }
292   }
293 }
294 
295 // Relaxed accessors
296 void DependencyContext::set_dependencies(nmethodBucket* b) {
297   Atomic::store(_dependency_context_addr, b);
298 }
299 
300 nmethodBucket* DependencyContext::dependencies() {
301   return Atomic::load(_dependency_context_addr);
302 }
303 
304 // After the gc_prologue, the dependency contexts may be claimed by the GC
305 // and releasing of nmethodBucket entries will be deferred and placed on
306 // a purge list to be deleted later.
307 void DependencyContext::cleaning_start() {
308   assert(SafepointSynchronize::is_at_safepoint(), "must be");
309   uint64_t epoch = ++_cleaning_epoch_monotonic;
310   Atomic::store(&_cleaning_epoch, epoch);
311 }
312 
313 // The epilogue marks the end of dependency context cleanup by the GC,
314 // and also makes subsequent releases of nmethodBuckets cause immediate
315 // deletion. It is okay to delay calling of cleaning_end() to a concurrent
316 // phase, subsequent to the safepoint operation in which cleaning_start()
317 // was called. That allows dependency contexts to be cleaned concurrently.
318 void DependencyContext::cleaning_end() {
319   uint64_t epoch = 0;
320   Atomic::store(&_cleaning_epoch, epoch);
321 }
322 
323 // This function skips over nmethodBuckets in the list corresponding to
324 // nmethods that are is_unloading. This allows exposing a view of the
325 // dependents as-if they were already cleaned, despite being cleaned
326 // concurrently. Any entry observed that is_unloading() will be unlinked
327 // and placed on the purge list.
328 nmethodBucket* nmethodBucket::next_not_unloading() {
329   for (;;) {
330     // Do not need acquire because the loaded entry can never be
331     // concurrently inserted.
332     nmethodBucket* next = Atomic::load(&_next);
333     if (next == nullptr || !next->get_nmethod()->is_unloading()) {
334       return next;
335     }
336     nmethodBucket* next_next = Atomic::load(&next->_next);
337     OrderAccess::loadload();
338     if (Atomic::load(&_next) != next) {
339       // Unstable load of next w.r.t. next->next
340       continue;
341     }
342     if (Atomic::cmpxchg(&_next, next, next_next) == next) {
343       // Release is_unloading entries if unlinking was claimed
344       DependencyContext::release(next);
345     }
346   }
347 }
348 
349 // Relaxed accessors
350 nmethodBucket* nmethodBucket::next() {
351   return Atomic::load(&_next);
352 }
353 
354 void nmethodBucket::set_next(nmethodBucket* b) {
355   Atomic::store(&_next, b);
356 }
357 
358 nmethodBucket* nmethodBucket::purge_list_next() {
359   return Atomic::load(&_purge_list_next);
360 }
361 
362 void nmethodBucket::set_purge_list_next(nmethodBucket* b) {
363   Atomic::store(&_purge_list_next, b);
364 }