src/hotspot/share/aot/aotCompiledMethod.cpp
changeset 53641 c572eb605087
parent 53147 db1d11c253d8
child 54150 5529640c5f67
equal deleted inserted replaced
53640:0bde5d88aafe 53641:c572eb605087
   426 address AOTCompiledMethod::call_instruction_address(address pc) const {
   426 address AOTCompiledMethod::call_instruction_address(address pc) const {
   427   NativePltCall* pltcall = nativePltCall_before(pc);
   427   NativePltCall* pltcall = nativePltCall_before(pc);
   428   return pltcall->instruction_address();
   428   return pltcall->instruction_address();
   429 }
   429 }
   430 
   430 
   431 bool AOTCompiledMethod::is_evol_dependent_on(Klass* dependee) {
       
   432   return !is_aot_runtime_stub() && _heap->is_dependent_method(dependee, this);
       
   433 }
       
   434 
       
   435 void AOTCompiledMethod::clear_inline_caches() {
   431 void AOTCompiledMethod::clear_inline_caches() {
   436   assert(SafepointSynchronize::is_at_safepoint(), "cleaning of IC's only allowed at safepoint");
   432   assert(SafepointSynchronize::is_at_safepoint(), "cleaning of IC's only allowed at safepoint");
   437   if (is_zombie()) {
   433   if (is_zombie()) {
   438     return;
   434     return;
   439   }
   435   }