hotspot/src/share/vm/oops/objArrayKlassKlass.cpp
author never
Fri, 18 Mar 2011 16:00:34 -0700
changeset 8725 8c1e3dd5fe1b
parent 8297 f05d10c1c4b8
child 12263 d20640f4f8fe
permissions -rw-r--r--
7017732: move static fields into Class to prepare for perm gen removal Reviewed-by: kvn, coleenp, twisti, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8297
f05d10c1c4b8 7014851: Remove unused parallel compaction code
stefank
parents: 8076
diff changeset
     2
 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4584
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4584
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4584
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    26
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    28
#include "gc_implementation/shared/markSweep.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    29
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    30
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    31
#include "oops/objArrayKlassKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    32
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    33
#include "oops/oop.inline2.hpp"
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
    34
#ifndef SERIALGC
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
    35
#include "gc_implementation/parNew/parOopClosures.inline.hpp"
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
    36
#include "gc_implementation/parallelScavenge/psPromotionManager.inline.hpp"
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
    37
#include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
    38
#include "memory/cardTableRS.hpp"
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
    39
#include "oops/oop.pcgc.inline.hpp"
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
    40
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
klassOop objArrayKlassKlass::create_klass(TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  objArrayKlassKlass o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  KlassHandle h_this_klass(THREAD, Universe::klassKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  KlassHandle k = base_create_klass(h_this_klass, header_size(), o.vtbl_value(), CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  assert(k()->size() == align_object_size(header_size()), "wrong size for object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  java_lang_Class::create_mirror(k, CHECK_0); // Allocate mirror
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  return k();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
klassOop objArrayKlassKlass::allocate_system_objArray_klass(TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // system_objArrays have no instance klass, so allocate with fake class, then reset to NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  KlassHandle kk(THREAD, Universe::intArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  klassOop k = allocate_objArray_klass(1, kk, CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  objArrayKlass* tk = (objArrayKlass*) k->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  tk->set_element_klass(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  tk->set_bottom_klass(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
klassOop objArrayKlassKlass::allocate_objArray_klass(int n, KlassHandle element_klass, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  objArrayKlassKlassHandle this_oop(THREAD, as_klassOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  return allocate_objArray_klass_impl(this_oop, n, element_klass, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
klassOop objArrayKlassKlass::allocate_objArray_klass_impl(objArrayKlassKlassHandle this_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                                                          int n, KlassHandle element_klass, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Eagerly allocate the direct array supertype.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  KlassHandle super_klass = KlassHandle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (!Universe::is_bootstrapping()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    KlassHandle element_super (THREAD, element_klass->super());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    if (element_super.not_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      // The element type has a direct super.  E.g., String[] has direct super of Object[].
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      super_klass = KlassHandle(THREAD, element_super->array_klass_or_null());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      bool supers_exist = super_klass.not_null();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      // Also, see if the element has secondary supertypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      // We need an array type for each.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      objArrayHandle element_supers = objArrayHandle(THREAD,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                                            element_klass->secondary_supers());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      for( int i = element_supers->length()-1; i >= 0; i-- ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
        klassOop elem_super = (klassOop) element_supers->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
        if (Klass::cast(elem_super)->array_klass_or_null() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
          supers_exist = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      if (!supers_exist) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
        // Oops.  Not allocated yet.  Back out, allocate it, and retry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
        if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
          tty->print_cr("Must retry array klass creation for depth %d",n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
        KlassHandle ek;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
          MutexUnlocker mu(MultiArray_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
          MutexUnlocker mc(Compile_lock);   // for vtables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
          klassOop sk = element_super->array_klass(CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
          super_klass = KlassHandle(THREAD, sk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
          for( int i = element_supers->length()-1; i >= 0; i-- ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
            KlassHandle elem_super (THREAD, element_supers->obj_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
            elem_super->array_klass(CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
          // Now retry from the beginning
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
          klassOop klass_oop = element_klass->array_klass(n, CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
          // Create a handle because the enclosing brace, when locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
          // can cause a gc.  Better to have this function return a Handle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
          ek = KlassHandle(THREAD, klass_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
        }  // re-lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
        return ek();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      // The element type is already Object.  Object[] has direct super of Object.
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 1
diff changeset
   116
      super_klass = KlassHandle(THREAD, SystemDictionary::Object_klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   120
  // Create type name for klass.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   121
  Symbol* name = NULL;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   122
  if (!element_klass->oop_is_instance() ||
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   123
      (name = instanceKlass::cast(element_klass())->array_name()) == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    char *name_str = element_klass->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    int len = element_klass->name()->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    char *new_str = NEW_RESOURCE_ARRAY(char, len + 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    int idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    new_str[idx++] = '[';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    if (element_klass->oop_is_instance()) { // it could be an array or simple type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      new_str[idx++] = 'L';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    memcpy(&new_str[idx], name_str, len * sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    idx += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    if (element_klass->oop_is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      new_str[idx++] = ';';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    new_str[idx++] = '\0';
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   140
    name = SymbolTable::new_symbol(new_str, CHECK_0);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   141
    if (element_klass->oop_is_instance()) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   142
      instanceKlass* ik = instanceKlass::cast(element_klass());
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   143
      ik->set_array_name(name);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   144
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  objArrayKlass o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  arrayKlassHandle k = arrayKlass::base_create_array_klass(o.vtbl_value(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                                                           objArrayKlass::header_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                                                          this_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                                                           CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Initialize instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  objArrayKlass* oak = objArrayKlass::cast(k());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  oak->set_dimension(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  oak->set_element_klass(element_klass());
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   157
  oak->set_name(name);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   158
  // decrement refcount because object arrays are not explicitly freed.  The
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   159
  // instanceKlass array_name() keeps the name counted while the klass is
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   160
  // loaded.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   161
  name->decrement_refcount();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  klassOop bk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  if (element_klass->oop_is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    bk = objArrayKlass::cast(element_klass())->bottom_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    bk = element_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  assert(bk != NULL && (Klass::cast(bk)->oop_is_instance() || Klass::cast(bk)->oop_is_typeArray()), "invalid bottom klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  oak->set_bottom_klass(bk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  oak->set_layout_helper(array_layout_helper(T_OBJECT));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  assert(oak->oop_is_javaArray(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  assert(oak->oop_is_objArray(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Call complete_create_array_klass after all instance variables has been initialized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  arrayKlass::complete_create_array_klass(k, super_klass, CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  return k();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
void objArrayKlassKlass::oop_follow_contents(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  assert(obj->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  assert(klassOop(obj)->klass_part()->oop_is_objArray_slow(), "must be obj array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  objArrayKlass* oak = objArrayKlass::cast((klassOop)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  MarkSweep::mark_and_push(oak->element_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  MarkSweep::mark_and_push(oak->bottom_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  arrayKlassKlass::oop_follow_contents(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
void objArrayKlassKlass::oop_follow_contents(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
                                             oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  assert(obj->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  assert(klassOop(obj)->klass_part()->oop_is_objArray_slow(), "must be obj array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  objArrayKlass* oak = objArrayKlass::cast((klassOop)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  PSParallelCompact::mark_and_push(cm, oak->element_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  PSParallelCompact::mark_and_push(cm, oak->bottom_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  arrayKlassKlass::oop_follow_contents(cm, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
int objArrayKlassKlass::oop_adjust_pointers(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  assert(obj->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  assert(klassOop(obj)->klass_part()->oop_is_objArray_slow(), "must be obj array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  objArrayKlass* oak = objArrayKlass::cast((klassOop)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  MarkSweep::adjust_pointer(oak->element_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  MarkSweep::adjust_pointer(oak->bottom_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  return arrayKlassKlass::oop_adjust_pointers(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
int objArrayKlassKlass::oop_oop_iterate(oop obj, OopClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  assert(obj->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  assert(klassOop(obj)->klass_part()->oop_is_objArray_slow(), "must be obj array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  objArrayKlass* oak = objArrayKlass::cast((klassOop)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  blk->do_oop(oak->element_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  blk->do_oop(oak->bottom_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  return arrayKlassKlass::oop_oop_iterate(obj, blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
objArrayKlassKlass::oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  assert(obj->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  assert(klassOop(obj)->klass_part()->oop_is_objArray_slow(), "must be obj array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  objArrayKlass* oak = objArrayKlass::cast((klassOop)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  oop* addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  addr = oak->element_klass_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  if (mr.contains(addr)) blk->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  addr = oak->bottom_klass_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  if (mr.contains(addr)) blk->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   246
  return arrayKlassKlass::oop_oop_iterate_m(obj, blk, mr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
void objArrayKlassKlass::oop_push_contents(PSPromotionManager* pm, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  assert(obj->blueprint()->oop_is_objArrayKlass(),"must be an obj array klass");
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   252
  objArrayKlass* oak = objArrayKlass::cast((klassOop)obj);
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   253
  oop* p = oak->element_klass_addr();
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   254
  if (PSScavenge::should_scavenge(p)) {
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   255
    pm->claim_or_forward_depth(p);
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   256
  }
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   257
  p = oak->bottom_klass_addr();
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   258
  if (PSScavenge::should_scavenge(p)) {
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   259
    pm->claim_or_forward_depth(p);
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   260
  }
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   261
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   262
  arrayKlassKlass::oop_push_contents(pm, obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
int objArrayKlassKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  assert(obj->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  assert(klassOop(obj)->klass_part()->oop_is_objArray_slow(), "must be obj array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  objArrayKlass* oak = objArrayKlass::cast((klassOop)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  PSParallelCompact::adjust_pointer(oak->element_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  PSParallelCompact::adjust_pointer(oak->bottom_klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  return arrayKlassKlass::oop_update_pointers(cm, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
// Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
void objArrayKlassKlass::oop_print_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  assert(obj->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  objArrayKlass* oak = (objArrayKlass*) klassOop(obj)->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  klassKlass::oop_print_on(obj, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  st->print(" - instance klass: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  oak->element_klass()->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
4584
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 4571
diff changeset
   290
#endif //PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
void objArrayKlassKlass::oop_print_value_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  assert(obj->is_klass(), "must be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  objArrayKlass* oak = (objArrayKlass*) klassOop(obj)->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  oak->element_klass()->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  st->print("[]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
const char* objArrayKlassKlass::internal_name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  return "{object array class}";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// Verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
void objArrayKlassKlass::oop_verify_on(oop obj, outputStream* st) {
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   308
  arrayKlassKlass::oop_verify_on(obj, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  objArrayKlass* oak = objArrayKlass::cast((klassOop)obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  guarantee(oak->element_klass()->is_perm(),  "should be in permspace");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  guarantee(oak->element_klass()->is_klass(), "should be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  guarantee(oak->bottom_klass()->is_perm(),   "should be in permspace");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  guarantee(oak->bottom_klass()->is_klass(),  "should be klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  Klass* bk = Klass::cast(oak->bottom_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  guarantee(bk->oop_is_instance() || bk->oop_is_typeArray(),  "invalid bottom klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
}