hotspot/src/share/vm/oops/cpCacheKlass.cpp
author jiangli
Thu, 29 Mar 2012 22:18:56 -0400
changeset 12369 48fd3da4025c
parent 10501 5bce84af0883
permissions -rw-r--r--
7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass. Summary: Change implementor to embedded instanceKlass field. Reviewed-by: sspitsyn, minqi, coleenp
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: 8296
diff changeset
     2
 * Copyright (c) 1998, 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: 6255
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    26
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    27
#include "gc_implementation/shared/markSweep.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    28
#include "gc_interface/collectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    29
#include "interpreter/bytecodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    30
#include "memory/genOopClosures.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    31
#include "memory/permGen.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    32
#include "oops/constantPoolOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    33
#include "oops/cpCacheKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    34
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    35
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    36
#ifndef SERIALGC
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    37
#include "gc_implementation/parNew/parOopClosures.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    38
#include "gc_implementation/parallelScavenge/psPromotionManager.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    39
#include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    40
#include "memory/cardTableRS.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    41
#include "oops/oop.pcgc.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6255
diff changeset
    42
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
int constantPoolCacheKlass::oop_size(oop obj) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  assert(obj->is_constantPoolCache(), "must be constantPool");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  return constantPoolCacheOop(obj)->object_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    51
constantPoolCacheOop constantPoolCacheKlass::allocate(int length,
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    52
                                                      TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // allocate memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  int size = constantPoolCacheOopDesc::object_size(length);
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    55
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  KlassHandle klass (THREAD, as_klassOop());
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    57
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    58
  // Commented out below is the original code.  The code from
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    59
  // permanent_obj_allocate() was in-lined so that we could
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    60
  // set the _length field, necessary to correctly compute its
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    61
  // size(), before setting its klass word further below.
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    62
  // constantPoolCacheOop cache = (constantPoolCacheOop)
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    63
  //   CollectedHeap::permanent_obj_allocate(klass, size, CHECK_NULL);
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    64
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    65
  oop obj = CollectedHeap::permanent_obj_allocate_no_klass_install(klass, size, CHECK_NULL);
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 8725
diff changeset
    66
#ifndef PRODUCT
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 8725
diff changeset
    67
  const size_t hs = oopDesc::header_size();
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 8725
diff changeset
    68
  Universe::heap()->check_for_bad_heap_word_value(((HeapWord*) obj)+hs, size-hs);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 8725
diff changeset
    69
#endif
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    70
  constantPoolCacheOop cache = (constantPoolCacheOop) obj;
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    71
  assert(!UseConcMarkSweepGC || obj->klass_or_null() == NULL,
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    72
         "klass should be NULL here when using CMS");
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    73
  cache->set_length(length);  // should become visible before klass is set below.
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    74
  cache->set_constant_pool(NULL);
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 670
diff changeset
    75
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    76
  OrderAccess::storestore();
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    77
  obj->set_klass(klass());
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
    78
  assert(cache->size() == size, "Incorrect cache->size()");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  return cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
klassOop constantPoolCacheKlass::create_klass(TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  constantPoolCacheKlass o;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    84
  KlassHandle h_this_klass(THREAD, Universe::klassKlassObj());
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    85
  KlassHandle k = base_create_klass(h_this_klass, header_size(), o.vtbl_value(), CHECK_NULL);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    86
  // Make sure size calculation is right
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    87
  assert(k()->size() == align_object_size(header_size()), "wrong size for object");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    88
  java_lang_Class::create_mirror(k, CHECK_NULL); // Allocate mirror
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  return k();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
void constantPoolCacheKlass::oop_follow_contents(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Performance tweak: We skip iterating over the klass pointer since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // know that Universe::constantPoolCacheKlassObj never moves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // gc of constant pool cache instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  MarkSweep::mark_and_push((oop*)cache->constant_pool_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // gc of constant pool cache entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  int i = cache->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  while (i-- > 0) cache->entry_at(i)->follow_contents();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
void constantPoolCacheKlass::oop_follow_contents(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                                                 oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // Performance tweak: We skip iterating over the klass pointer since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // know that Universe::constantPoolCacheKlassObj never moves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // gc of constant pool cache instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  PSParallelCompact::mark_and_push(cm, (oop*)cache->constant_pool_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // gc of constant pool cache entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  int i = cache->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  while (i-- > 0) cache->entry_at(i)->follow_contents(cm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
int constantPoolCacheKlass::oop_oop_iterate(oop obj, OopClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Get size before changing pointers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Don't call size() or oop_size() since that is a virtual call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  int size = cache->object_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Performance tweak: We skip iterating over the klass pointer since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // know that Universe::constantPoolCacheKlassObj never moves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // iteration over constant pool cache instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  blk->do_oop((oop*)cache->constant_pool_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // iteration over constant pool cache entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->oop_iterate(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
int constantPoolCacheKlass::oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Get size before changing pointers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Don't call size() or oop_size() since that is a virtual call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  int size = cache->object_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Performance tweak: We skip iterating over the klass pointer since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // know that Universe::constantPoolCacheKlassObj never moves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // iteration over constant pool cache instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  oop* addr = (oop*)cache->constant_pool_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  if (mr.contains(addr)) blk->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // iteration over constant pool cache entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->oop_iterate_m(blk, mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
int constantPoolCacheKlass::oop_adjust_pointers(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Get size before changing pointers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Don't call size() or oop_size() since that is a virtual call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  int size = cache->object_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Performance tweak: We skip iterating over the klass pointer since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // know that Universe::constantPoolCacheKlassObj never moves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Iteration over constant pool cache instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  MarkSweep::adjust_pointer((oop*)cache->constant_pool_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // iteration over constant pool cache entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  for (int i = 0; i < cache->length(); i++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    cache->entry_at(i)->adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
void constantPoolCacheKlass::oop_push_contents(PSPromotionManager* pm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
                                               oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  assert(obj->is_constantPoolCache(), "should be constant pool");
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   173
  if (ScavengeRootsInCode) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   174
    constantPoolCacheOop cache = (constantPoolCacheOop)obj;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   175
    // during a scavenge, it is safe to inspect my pool, since it is perm
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   176
    constantPoolOop pool = cache->constant_pool();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   177
    assert(pool->is_constantPool(), "should be constant pool");
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   178
    for (int i = 0; i < cache->length(); i++) {
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   179
      ConstantPoolCacheEntry* e = cache->entry_at(i);
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   180
      oop* p = (oop*)&e->_f1;
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   181
      if (PSScavenge::should_scavenge(p))
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   182
        pm->claim_or_forward_depth(p);
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   183
      assert(!(e->is_vfinal() && PSScavenge::should_scavenge((oop*)&e->_f2)),
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8297
diff changeset
   184
             "no live oops here");
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   185
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2105
diff changeset
   186
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
constantPoolCacheKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Iteration over constant pool cache instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  PSParallelCompact::adjust_pointer((oop*)cache->constant_pool_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // iteration over constant pool cache entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  for (int i = 0; i < cache->length(); ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    cache->entry_at(i)->update_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  return cache->object_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
void constantPoolCacheKlass::oop_print_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // super print
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   210
  Klass::oop_print_on(obj, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // print constant pool cache entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->print(st, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
4584
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   215
void constantPoolCacheKlass::oop_print_value_on(oop obj, outputStream* st) {
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   216
  assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   217
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   218
  st->print("cache [%d]", cache->length());
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   219
  cache->print_address_on(st);
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   220
  st->print(" for ");
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   221
  cache->constant_pool()->print_value_on(st);
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   222
}
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2570
diff changeset
   223
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
void constantPoolCacheKlass::oop_verify_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  guarantee(obj->is_constantPoolCache(), "obj must be constant pool cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  constantPoolCacheOop cache = (constantPoolCacheOop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // super verify
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   228
  Klass::oop_verify_on(obj, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // print constant pool cache entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->verify(st);
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
const char* constantPoolCacheKlass::internal_name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  return "{constant pool cache}";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}