Exemplo n.º 1
0
Klass::Klass() {
  Klass* k = this;

  { // Preinitialize supertype information.
    // A later call to initialize_supers() may update these settings:
    set_super(NULL);
    for (juint i = 0; i < Klass::primary_super_limit(); i++) {
      _primary_supers[i] = NULL;
    }
    set_secondary_supers(NULL);
    _primary_supers[0] = k;
    set_super_check_offset(in_bytes(primary_supers_offset()));
  }

  set_java_mirror(NULL);
  set_modifier_flags(0);
  set_layout_helper(Klass::_lh_neutral_value);
  set_name(NULL);
  AccessFlags af;
  af.set_flags(0);
  set_access_flags(af);
  set_subklass(NULL);
  set_next_sibling(NULL);
  set_next_link(NULL);
  set_alloc_count(0);
  TRACE_SET_KLASS_TRACE_ID(this, 0);

  set_prototype_header(markOopDesc::prototype());
  set_biased_lock_revocation_count(0);
  set_last_biased_lock_bulk_revocation_time(0);

  // The klass doesn't have any references at this point.
  clear_modified_oops();
  clear_accumulated_modified_oops();
}
Exemplo n.º 2
0
 void set_access_flags(AccessFlags flags) const {
   set_access_flags(flags.as_short());
 }
Exemplo n.º 3
0
 void set_has_vanilla_constructor() {
   AccessFlags flags = access_flags();
   flags.set_has_vanilla_constructor();
   set_access_flags(flags);
 }
Exemplo n.º 4
0
 void set_is_verified() {
   AccessFlags flags = access_flags();
   flags.set_is_verified();
   set_access_flags(flags);
 }