< prev index next > src/hotspot/share/oops/method.inline.hpp
Print this page
inline address Method::from_compiled_entry() const {
return Atomic::load_acquire(&_from_compiled_entry);
}
+ inline address Method::from_compiled_inline_ro_entry() const {
+ return Atomic::load_acquire(&_from_compiled_inline_ro_entry);
+ }
+
+ inline address Method::from_compiled_inline_entry() const {
+ return Atomic::load_acquire(&_from_compiled_inline_entry);
+ }
+
inline address Method::from_interpreted_entry() const {
return Atomic::load_acquire(&_from_interpreted_entry);
}
inline nmethod* Method::code() const {
< prev index next >