src/hotspot/share/aot/aotCompiledMethod.cpp
changeset 49480 d7df2dd501ce
parent 49455 848864ed9b17
child 49594 898ef81cbc0e
equal deleted inserted replaced
49479:5865398439d4 49480:d7df2dd501ce
    34 #include "gc/shared/collectedHeap.hpp"
    34 #include "gc/shared/collectedHeap.hpp"
    35 #include "gc/shared/gcLocker.hpp"
    35 #include "gc/shared/gcLocker.hpp"
    36 #include "jvmci/compilerRuntime.hpp"
    36 #include "jvmci/compilerRuntime.hpp"
    37 #include "jvmci/jvmciRuntime.hpp"
    37 #include "jvmci/jvmciRuntime.hpp"
    38 #include "oops/method.inline.hpp"
    38 #include "oops/method.inline.hpp"
       
    39 #include "runtime/frame.inline.hpp"
    39 #include "runtime/handles.inline.hpp"
    40 #include "runtime/handles.inline.hpp"
    40 #include "runtime/java.hpp"
    41 #include "runtime/java.hpp"
    41 #include "runtime/os.hpp"
    42 #include "runtime/os.hpp"
    42 #include "runtime/sharedRuntime.hpp"
    43 #include "runtime/sharedRuntime.hpp"
    43 #include "utilities/xmlstream.hpp"
    44 #include "utilities/xmlstream.hpp"
    67       f->do_oop(&o);
    68       f->do_oop(&o);
    68     }
    69     }
    69   }
    70   }
    70 }
    71 }
    71 #endif
    72 #endif
       
    73 
       
    74 address* AOTCompiledMethod::orig_pc_addr(const frame* fr) {
       
    75   return (address*) ((address)fr->unextended_sp() + _meta->orig_pc_offset());
       
    76 }
    72 
    77 
    73 bool AOTCompiledMethod::do_unloading_oops(address low_boundary, BoolObjectClosure* is_alive, bool unloading_occurred) {
    78 bool AOTCompiledMethod::do_unloading_oops(address low_boundary, BoolObjectClosure* is_alive, bool unloading_occurred) {
    74   return false;
    79   return false;
    75 }
    80 }
    76 
    81