< prev index next >

src/hotspot/share/code/nmethod.hpp

Print this page

        

@@ -88,10 +88,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 _verified_value_entry_point;       // value type entry point without class check
   address _osr_entry_point;                  // entry point for on stack replacement
 
   // Offsets for different nmethod parts
   int  _exception_offset;
   // Offset of the unwind handler if it exists

@@ -312,10 +313,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;    } // if klass is correct
+  address verified_value_entry_point() const      { return _verified_value_entry_point; } // pass value type args as oops
 
   // flag accessing and manipulation
   bool  is_not_installed() const                  { return _state == not_installed; }
   bool  is_in_use() const                         { return _state <= in_use; }
   bool  is_alive() const                          { return _state < zombie; }
< prev index next >