< prev index next >

src/hotspot/share/ci/ciKlass.cpp

Print this page
*** 224,10 ***
--- 224,19 ---
    GUARDED_VM_ENTRY(
      return get_Klass()->access_flags().as_int();
    )
  }
  
+ // ------------------------------------------------------------------
+ // ciKlass::prototype_header
+ markWord ciKlass::prototype_header() const {
+   assert(is_loaded(), "not loaded");
+   GUARDED_VM_ENTRY(
+     return get_Klass()->prototype_header();
+   )
+ }
+ 
  // ------------------------------------------------------------------
  // ciKlass::print_impl
  //
  // Implementation of the print method
  void ciKlass::print_impl(outputStream* st) {
< prev index next >