< prev index next >

src/hotspot/share/code/nmethod.hpp

Print this page

@@ -81,10 +81,11 @@
   nmethod*        volatile _oops_do_mark_link;
 
   // offsets for entry points
   address _entry_point;                      // entry point with class check
   address _verified_entry_point;             // entry point without class check
+  address _value_entry_point;                // value type entry point (unpack all value args) with class check
   address _verified_value_entry_point;       // value type entry point (unpack all value args) without class check
   address _verified_value_ro_entry_point;    // value type entry point (unpack receiver only) without class check
   address _osr_entry_point;                  // entry point for on stack replacement
 
   // Offsets for different nmethod parts

@@ -336,10 +337,11 @@
   bool scopes_pcs_contains   (PcDesc* addr) const { return scopes_pcs_begin   () <= addr && addr < scopes_pcs_end   (); }
 
   // entry points
   address entry_point() const                     { return _entry_point;             }       // normal entry point
   address verified_entry_point() const            { return _verified_entry_point;    }       // normal entry point without class check
+  address value_entry_point() const               { return _value_entry_point; }             // value type entry point (unpack all value args)
   address verified_value_entry_point() const      { return _verified_value_entry_point; }    // value type entry point (unpack all value args) without class check
   address verified_value_ro_entry_point() const   { return _verified_value_ro_entry_point; } // value type entry point (only unpack receiver) without class check
 
   // flag accessing and manipulation
   bool  is_not_installed() const                  { return _state == not_installed; }
< prev index next >