< prev index next >

src/hotspot/share/oops/klassVtable.hpp

Print this page


  75   void initialize_vtable(bool checkconstraints, TRAPS);   // initialize vtable of a new klass
  76 
  77   // CDS/RedefineClasses support - clear vtables so they can be reinitialized
  78   // at dump time.  Clearing gives us an easy way to tell if the vtable has
  79   // already been reinitialized at dump time (see dump.cpp).  Vtables can
  80   // be initialized at run time by RedefineClasses so dumping the right order
  81   // is necessary.
  82   void clear_vtable();
  83   bool is_initialized();
  84 
  85   // computes vtable length (in words) and the number of miranda methods
  86   static void compute_vtable_size_and_num_mirandas(int* vtable_length,
  87                                                    int* num_new_mirandas,
  88                                                    GrowableArray<Method*>* all_mirandas,
  89                                                    const Klass* super,
  90                                                    Array<Method*>* methods,
  91                                                    AccessFlags class_flags,
  92                                                    u2 major_version,
  93                                                    Handle classloader,
  94                                                    Symbol* classname,
  95                                                    Array<Klass*>* local_interfaces,
  96                                                    TRAPS);
  97 
  98 #if INCLUDE_JVMTI
  99   // RedefineClasses() API support:
 100   // If any entry of this vtable points to any of old_methods,
 101   // replace it with the corresponding new_method.
 102   // trace_name_printed is set to true if the current call has
 103   // printed the klass name so that other routines in the adjust_*
 104   // group don't print the klass name.
 105   bool adjust_default_method(int vtable_index, Method* old_method, Method* new_method);
 106   void adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed);
 107   bool check_no_old_or_obsolete_entries();
 108   void dump_vtable();
 109 #endif // INCLUDE_JVMTI
 110 
 111   // Debugging code
 112   void print()                                              PRODUCT_RETURN;
 113   void verify(outputStream* st, bool force = false);
 114   static void print_statistics()                            PRODUCT_RETURN;
 115 


 142   // support for miranda methods
 143   bool is_miranda_entry_at(int i);
 144   int fill_in_mirandas(int initialized, TRAPS);
 145   static bool is_miranda(Method* m, Array<Method*>* class_methods,
 146                          Array<Method*>* default_methods, const Klass* super,
 147                          bool is_interface);
 148   static void add_new_mirandas_to_lists(
 149       GrowableArray<Method*>* new_mirandas,
 150       GrowableArray<Method*>* all_mirandas,
 151       Array<Method*>* current_interface_methods,
 152       Array<Method*>* class_methods,
 153       Array<Method*>* default_methods,
 154       const Klass* super,
 155       bool is_interface);
 156   static void get_mirandas(
 157       GrowableArray<Method*>* new_mirandas,
 158       GrowableArray<Method*>* all_mirandas,
 159       const Klass* super,
 160       Array<Method*>* class_methods,
 161       Array<Method*>* default_methods,
 162       Array<Klass*>* local_interfaces,
 163       bool is_interface);
 164   void verify_against(outputStream* st, klassVtable* vt, int index);
 165   inline InstanceKlass* ik() const;
 166   // When loading a class from CDS archive at run time, and no class redefintion
 167   // has happened, it is expected that the class's itable/vtables are
 168   // laid out exactly the same way as they had been during dump time.
 169   // Therefore, in klassVtable::initialize_[iv]table, we do not layout the
 170   // tables again. Instead, we only rerun the process to create/check
 171   // the class loader constraints. In non-product builds, we add asserts to
 172   // guarantee that the table's layout would be the same as at dump time.
 173   //
 174   // If JVMTI redefines any class, the read-only shared memory are remapped
 175   // as read-write. A shared class' vtable/itable are re-initialized and
 176   // might have different layout due to class redefinition of the shared class
 177   // or its super types.
 178   bool is_preinitialized_vtable();
 179 };
 180 
 181 
 182 // private helper class for klassVtable


 218   return table()[i].method();
 219 }
 220 
 221 inline Method* klassVtable::unchecked_method_at(int i) const {
 222   assert(i >= 0 && i < _length, "index out of bounds");
 223   return table()[i].method();
 224 }
 225 
 226 inline Method** klassVtable::adr_method_at(int i) const {
 227   // Allow one past the last entry to be referenced; useful for loop bounds.
 228   assert(i >= 0 && i <= _length, "index out of bounds");
 229   return (Method**)(address(table() + i) + vtableEntry::method_offset_in_bytes());
 230 }
 231 
 232 // --------------------------------------------------------------------------------
 233 class klassItable;
 234 class itableMethodEntry;
 235 
 236 class itableOffsetEntry {
 237  private:
 238   Klass* _interface;
 239   int      _offset;
 240  public:
 241   Klass* interface_klass() const { return _interface; }
 242   Klass**interface_klass_addr()  { return &_interface; }
 243   int      offset() const          { return _offset; }
 244 
 245   static itableMethodEntry* method_entry(Klass* k, int offset) { return (itableMethodEntry*)(((address)k) + offset); }
 246   itableMethodEntry* first_method_entry(Klass* k)              { return method_entry(k, _offset); }
 247 
 248   void initialize(Klass* interf, int offset) { _interface = interf; _offset = offset; }
 249 
 250   // Static size and offset accessors
 251   static int size()                       { return sizeof(itableOffsetEntry) / wordSize; }    // size in words
 252   static int interface_offset_in_bytes()  { return offset_of(itableOffsetEntry, _interface); }
 253   static int offset_offset_in_bytes()     { return offset_of(itableOffsetEntry, _offset); }
 254 
 255   friend class klassItable;
 256 };
 257 
 258 
 259 class itableMethodEntry {
 260  private:
 261   Method* _method;
 262 
 263  public:
 264   Method* method() const { return _method; }
 265   Method**method_addr() { return &_method; }
 266 
 267   void clear()             { _method = NULL; }
 268 


 283 //    offset to vtable from start of oop  / offset table entry
 284 //    ...
 285 //    Klass* of interface n             \
 286 //    offset to vtable from start of oop  / offset table entry
 287 //    --- vtable for interface 1 ---
 288 //    Method*                             \
 289 //    compiler entry point                / method table entry
 290 //    ...
 291 //    Method*                             \
 292 //    compiler entry point                / method table entry
 293 //    -- vtable for interface 2 ---
 294 //    ...
 295 //
 296 class klassItable {
 297  private:
 298   InstanceKlass*       _klass;             // my klass
 299   int                  _table_offset;      // offset of start of itable data within klass (in words)
 300   int                  _size_offset_table; // size of offset table (in itableOffset entries)
 301   int                  _size_method_table; // size of methodtable (in itableMethodEntry entries)
 302 
 303   void initialize_itable_for_interface(int method_table_offset, Klass* interf_h, bool checkconstraints, TRAPS);
 304  public:
 305   klassItable(InstanceKlass* klass);
 306 
 307   itableOffsetEntry* offset_entry(int i) { assert(0 <= i && i <= _size_offset_table, "index out of bounds");
 308                                            return &((itableOffsetEntry*)vtable_start())[i]; }
 309 
 310   itableMethodEntry* method_entry(int i) { assert(0 <= i && i <= _size_method_table, "index out of bounds");
 311                                            return &((itableMethodEntry*)method_start())[i]; }
 312 
 313   int size_offset_table()                { return _size_offset_table; }
 314 
 315   // Initialization
 316   void initialize_itable(bool checkconstraints, TRAPS);
 317 
 318 #if INCLUDE_JVMTI
 319   // RedefineClasses() API support:
 320   // if any entry of this itable points to any of old_methods,
 321   // replace it with the corresponding new_method.
 322   // trace_name_printed is set to true if the current call has
 323   // printed the klass name so that other routines in the adjust_*
 324   // group don't print the klass name.
 325   void adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed);
 326   bool check_no_old_or_obsolete_entries();
 327   void dump_itable();
 328 #endif // INCLUDE_JVMTI
 329 
 330   // Setup of itable
 331   static int assign_itable_indices_for_interface(Klass* klass, TRAPS);
 332   static int method_count_for_interface(Klass* klass);
 333   static int compute_itable_size(Array<Klass*>* transitive_interfaces);
 334   static void setup_itable_offset_table(InstanceKlass* klass);
 335 
 336   // Resolving of method to index
 337   static Method* method_for_itable_index(Klass* klass, int itable_index);
 338 
 339   // Debugging/Statistics
 340   static void print_statistics() PRODUCT_RETURN;
 341  private:
 342   intptr_t* vtable_start() const { return ((intptr_t*)_klass) + _table_offset; }
 343   intptr_t* method_start() const { return vtable_start() + _size_offset_table * itableOffsetEntry::size(); }
 344 
 345   // Helper methods
 346   static int  calc_itable_size(int num_interfaces, int num_methods) { return (num_interfaces * itableOffsetEntry::size()) + (num_methods * itableMethodEntry::size()); }
 347 
 348   // Statistics
 349   NOT_PRODUCT(static int  _total_classes;)   // Total no. of classes with itables
 350   NOT_PRODUCT(static long _total_size;)      // Total no. of bytes used for itables
 351 
 352   static void update_stats(int size) PRODUCT_RETURN NOT_PRODUCT({ _total_classes++; _total_size += size; })
 353 };
 354 
 355 #endif // SHARE_VM_OOPS_KLASSVTABLE_HPP


  75   void initialize_vtable(bool checkconstraints, TRAPS);   // initialize vtable of a new klass
  76 
  77   // CDS/RedefineClasses support - clear vtables so they can be reinitialized
  78   // at dump time.  Clearing gives us an easy way to tell if the vtable has
  79   // already been reinitialized at dump time (see dump.cpp).  Vtables can
  80   // be initialized at run time by RedefineClasses so dumping the right order
  81   // is necessary.
  82   void clear_vtable();
  83   bool is_initialized();
  84 
  85   // computes vtable length (in words) and the number of miranda methods
  86   static void compute_vtable_size_and_num_mirandas(int* vtable_length,
  87                                                    int* num_new_mirandas,
  88                                                    GrowableArray<Method*>* all_mirandas,
  89                                                    const Klass* super,
  90                                                    Array<Method*>* methods,
  91                                                    AccessFlags class_flags,
  92                                                    u2 major_version,
  93                                                    Handle classloader,
  94                                                    Symbol* classname,
  95                                                    Array<InstanceKlass*>* local_interfaces,
  96                                                    TRAPS);
  97 
  98 #if INCLUDE_JVMTI
  99   // RedefineClasses() API support:
 100   // If any entry of this vtable points to any of old_methods,
 101   // replace it with the corresponding new_method.
 102   // trace_name_printed is set to true if the current call has
 103   // printed the klass name so that other routines in the adjust_*
 104   // group don't print the klass name.
 105   bool adjust_default_method(int vtable_index, Method* old_method, Method* new_method);
 106   void adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed);
 107   bool check_no_old_or_obsolete_entries();
 108   void dump_vtable();
 109 #endif // INCLUDE_JVMTI
 110 
 111   // Debugging code
 112   void print()                                              PRODUCT_RETURN;
 113   void verify(outputStream* st, bool force = false);
 114   static void print_statistics()                            PRODUCT_RETURN;
 115 


 142   // support for miranda methods
 143   bool is_miranda_entry_at(int i);
 144   int fill_in_mirandas(int initialized, TRAPS);
 145   static bool is_miranda(Method* m, Array<Method*>* class_methods,
 146                          Array<Method*>* default_methods, const Klass* super,
 147                          bool is_interface);
 148   static void add_new_mirandas_to_lists(
 149       GrowableArray<Method*>* new_mirandas,
 150       GrowableArray<Method*>* all_mirandas,
 151       Array<Method*>* current_interface_methods,
 152       Array<Method*>* class_methods,
 153       Array<Method*>* default_methods,
 154       const Klass* super,
 155       bool is_interface);
 156   static void get_mirandas(
 157       GrowableArray<Method*>* new_mirandas,
 158       GrowableArray<Method*>* all_mirandas,
 159       const Klass* super,
 160       Array<Method*>* class_methods,
 161       Array<Method*>* default_methods,
 162       Array<InstanceKlass*>* local_interfaces,
 163       bool is_interface);
 164   void verify_against(outputStream* st, klassVtable* vt, int index);
 165   inline InstanceKlass* ik() const;
 166   // When loading a class from CDS archive at run time, and no class redefintion
 167   // has happened, it is expected that the class's itable/vtables are
 168   // laid out exactly the same way as they had been during dump time.
 169   // Therefore, in klassVtable::initialize_[iv]table, we do not layout the
 170   // tables again. Instead, we only rerun the process to create/check
 171   // the class loader constraints. In non-product builds, we add asserts to
 172   // guarantee that the table's layout would be the same as at dump time.
 173   //
 174   // If JVMTI redefines any class, the read-only shared memory are remapped
 175   // as read-write. A shared class' vtable/itable are re-initialized and
 176   // might have different layout due to class redefinition of the shared class
 177   // or its super types.
 178   bool is_preinitialized_vtable();
 179 };
 180 
 181 
 182 // private helper class for klassVtable


 218   return table()[i].method();
 219 }
 220 
 221 inline Method* klassVtable::unchecked_method_at(int i) const {
 222   assert(i >= 0 && i < _length, "index out of bounds");
 223   return table()[i].method();
 224 }
 225 
 226 inline Method** klassVtable::adr_method_at(int i) const {
 227   // Allow one past the last entry to be referenced; useful for loop bounds.
 228   assert(i >= 0 && i <= _length, "index out of bounds");
 229   return (Method**)(address(table() + i) + vtableEntry::method_offset_in_bytes());
 230 }
 231 
 232 // --------------------------------------------------------------------------------
 233 class klassItable;
 234 class itableMethodEntry;
 235 
 236 class itableOffsetEntry {
 237  private:
 238   InstanceKlass* _interface;
 239   int      _offset;
 240  public:
 241   InstanceKlass* interface_klass() const { return _interface; }
 242   InstanceKlass**interface_klass_addr()  { return &_interface; }
 243   int      offset() const          { return _offset; }
 244 
 245   static itableMethodEntry* method_entry(Klass* k, int offset) { return (itableMethodEntry*)(((address)k) + offset); }
 246   itableMethodEntry* first_method_entry(Klass* k)              { return method_entry(k, _offset); }
 247 
 248   void initialize(InstanceKlass* interf, int offset) { _interface = interf; _offset = offset; }
 249 
 250   // Static size and offset accessors
 251   static int size()                       { return sizeof(itableOffsetEntry) / wordSize; }    // size in words
 252   static int interface_offset_in_bytes()  { return offset_of(itableOffsetEntry, _interface); }
 253   static int offset_offset_in_bytes()     { return offset_of(itableOffsetEntry, _offset); }
 254 
 255   friend class klassItable;
 256 };
 257 
 258 
 259 class itableMethodEntry {
 260  private:
 261   Method* _method;
 262 
 263  public:
 264   Method* method() const { return _method; }
 265   Method**method_addr() { return &_method; }
 266 
 267   void clear()             { _method = NULL; }
 268 


 283 //    offset to vtable from start of oop  / offset table entry
 284 //    ...
 285 //    Klass* of interface n             \
 286 //    offset to vtable from start of oop  / offset table entry
 287 //    --- vtable for interface 1 ---
 288 //    Method*                             \
 289 //    compiler entry point                / method table entry
 290 //    ...
 291 //    Method*                             \
 292 //    compiler entry point                / method table entry
 293 //    -- vtable for interface 2 ---
 294 //    ...
 295 //
 296 class klassItable {
 297  private:
 298   InstanceKlass*       _klass;             // my klass
 299   int                  _table_offset;      // offset of start of itable data within klass (in words)
 300   int                  _size_offset_table; // size of offset table (in itableOffset entries)
 301   int                  _size_method_table; // size of methodtable (in itableMethodEntry entries)
 302 
 303   void initialize_itable_for_interface(int method_table_offset, InstanceKlass* interf_h, bool checkconstraints, TRAPS);
 304  public:
 305   klassItable(InstanceKlass* klass);
 306 
 307   itableOffsetEntry* offset_entry(int i) { assert(0 <= i && i <= _size_offset_table, "index out of bounds");
 308                                            return &((itableOffsetEntry*)vtable_start())[i]; }
 309 
 310   itableMethodEntry* method_entry(int i) { assert(0 <= i && i <= _size_method_table, "index out of bounds");
 311                                            return &((itableMethodEntry*)method_start())[i]; }
 312 
 313   int size_offset_table()                { return _size_offset_table; }
 314 
 315   // Initialization
 316   void initialize_itable(bool checkconstraints, TRAPS);
 317 
 318 #if INCLUDE_JVMTI
 319   // RedefineClasses() API support:
 320   // if any entry of this itable points to any of old_methods,
 321   // replace it with the corresponding new_method.
 322   // trace_name_printed is set to true if the current call has
 323   // printed the klass name so that other routines in the adjust_*
 324   // group don't print the klass name.
 325   void adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed);
 326   bool check_no_old_or_obsolete_entries();
 327   void dump_itable();
 328 #endif // INCLUDE_JVMTI
 329 
 330   // Setup of itable
 331   static int assign_itable_indices_for_interface(InstanceKlass* klass, TRAPS);
 332   static int method_count_for_interface(InstanceKlass* klass);
 333   static int compute_itable_size(Array<InstanceKlass*>* transitive_interfaces);
 334   static void setup_itable_offset_table(InstanceKlass* klass);
 335 
 336   // Resolving of method to index
 337   static Method* method_for_itable_index(InstanceKlass* klass, int itable_index);
 338 
 339   // Debugging/Statistics
 340   static void print_statistics() PRODUCT_RETURN;
 341  private:
 342   intptr_t* vtable_start() const { return ((intptr_t*)_klass) + _table_offset; }
 343   intptr_t* method_start() const { return vtable_start() + _size_offset_table * itableOffsetEntry::size(); }
 344 
 345   // Helper methods
 346   static int  calc_itable_size(int num_interfaces, int num_methods) { return (num_interfaces * itableOffsetEntry::size()) + (num_methods * itableMethodEntry::size()); }
 347 
 348   // Statistics
 349   NOT_PRODUCT(static int  _total_classes;)   // Total no. of classes with itables
 350   NOT_PRODUCT(static long _total_size;)      // Total no. of bytes used for itables
 351 
 352   static void update_stats(int size) PRODUCT_RETURN NOT_PRODUCT({ _total_classes++; _total_size += size; })
 353 };
 354 
 355 #endif // SHARE_VM_OOPS_KLASSVTABLE_HPP
< prev index next >