annotate src/share/vm/oops/cpCacheKlass.cpp @ 2376:c7f3d0b4570f

7017732: move static fields into Class to prepare for perm gen removal Reviewed-by: kvn, coleenp, twisti, stefank
author never
date Fri, 18 Mar 2011 16:00:34 -0700
parents e5383553fd4e
children baf763f388e6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2227
e5383553fd4e 7014851: Remove unused parallel compaction code
stefank
parents: 2226
diff changeset
2 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1155
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1155
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1155
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
26 #include "classfile/javaClasses.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
27 #include "gc_implementation/shared/markSweep.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
28 #include "gc_interface/collectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
29 #include "interpreter/bytecodes.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
30 #include "memory/genOopClosures.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
31 #include "memory/permGen.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
32 #include "oops/constantPoolOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
33 #include "oops/cpCacheKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
34 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
35 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
36 #ifndef SERIALGC
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
37 #include "gc_implementation/parNew/parOopClosures.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
38 #include "gc_implementation/parallelScavenge/psPromotionManager.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
39 #include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
40 #include "memory/cardTableRS.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
41 #include "oops/oop.pcgc.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1713
diff changeset
42 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 int constantPoolCacheKlass::oop_size(oop obj) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 assert(obj->is_constantPoolCache(), "must be constantPool");
a61af66fc99e Initial load
duke
parents:
diff changeset
47 return constantPoolCacheOop(obj)->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50
542
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
51 constantPoolCacheOop constantPoolCacheKlass::allocate(int length,
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
52 TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // allocate memory
a61af66fc99e Initial load
duke
parents:
diff changeset
54 int size = constantPoolCacheOopDesc::object_size(length);
542
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
55
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 KlassHandle klass (THREAD, as_klassOop());
542
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
57
2226
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
58 // Commented out below is the original code. The code from
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
59 // permanent_obj_allocate() was in-lined so that we could
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
60 // set the _length field, necessary to correctly compute its
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
61 // size(), before setting its klass word further below.
542
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
62 // constantPoolCacheOop cache = (constantPoolCacheOop)
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
63 // CollectedHeap::permanent_obj_allocate(klass, size, CHECK_NULL);
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
64
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
65 oop obj = CollectedHeap::permanent_obj_allocate_no_klass_install(klass, size, CHECK_NULL);
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
66 NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value((HeapWord*) obj,
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
67 size));
2226
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
68 constantPoolCacheOop cache = (constantPoolCacheOop) obj;
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
69 assert(!UseConcMarkSweepGC || obj->klass_or_null() == NULL,
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
70 "klass should be NULL here when using CMS");
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
71 cache->set_length(length); // should become visible before klass is set below.
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
72 cache->set_constant_pool(NULL);
542
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
73
2226
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
74 OrderAccess::storestore();
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
75 obj->set_klass(klass());
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
76 assert(cache->size() == size, "Incorrect cache->size()");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return cache;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 klassOop constantPoolCacheKlass::create_klass(TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 constantPoolCacheKlass o;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
82 KlassHandle h_this_klass(THREAD, Universe::klassKlassObj());
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
83 KlassHandle k = base_create_klass(h_this_klass, header_size(), o.vtbl_value(), CHECK_NULL);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
84 // Make sure size calculation is right
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
85 assert(k()->size() == align_object_size(header_size()), "wrong size for object");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
86 java_lang_Class::create_mirror(k, CHECK_NULL); // Allocate mirror
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 return k();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 void constantPoolCacheKlass::oop_follow_contents(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
93 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // gc of constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
97 MarkSweep::mark_and_push((oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // gc of constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
99 int i = cache->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 while (i-- > 0) cache->entry_at(i)->follow_contents();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
104 void constantPoolCacheKlass::oop_follow_contents(ParCompactionManager* cm,
a61af66fc99e Initial load
duke
parents:
diff changeset
105 oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
107 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // gc of constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
111 PSParallelCompact::mark_and_push(cm, (oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // gc of constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
113 int i = cache->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 while (i-- > 0) cache->entry_at(i)->follow_contents(cm);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 int constantPoolCacheKlass::oop_oop_iterate(oop obj, OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
121 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // Get size before changing pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // Don't call size() or oop_size() since that is a virtual call.
a61af66fc99e Initial load
duke
parents:
diff changeset
124 int size = cache->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // iteration over constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
128 blk->do_oop((oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // iteration over constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
130 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->oop_iterate(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 return size;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 int constantPoolCacheKlass::oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
137 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Get size before changing pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Don't call size() or oop_size() since that is a virtual call.
a61af66fc99e Initial load
duke
parents:
diff changeset
140 int size = cache->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // iteration over constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
144 oop* addr = (oop*)cache->constant_pool_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
145 if (mr.contains(addr)) blk->do_oop(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // iteration over constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
147 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->oop_iterate_m(blk, mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 return size;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 int constantPoolCacheKlass::oop_adjust_pointers(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
153 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // Get size before changing pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // Don't call size() or oop_size() since that is a virtual call.
a61af66fc99e Initial load
duke
parents:
diff changeset
156 int size = cache->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // Iteration over constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
160 MarkSweep::adjust_pointer((oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // iteration over constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
162 for (int i = 0; i < cache->length(); i++)
a61af66fc99e Initial load
duke
parents:
diff changeset
163 cache->entry_at(i)->adjust_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
164 return size;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
168 void constantPoolCacheKlass::oop_push_contents(PSPromotionManager* pm,
a61af66fc99e Initial load
duke
parents:
diff changeset
169 oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 assert(obj->is_constantPoolCache(), "should be constant pool");
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
171 if (ScavengeRootsInCode) {
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
172 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
173 // during a scavenge, it is safe to inspect my pool, since it is perm
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
174 constantPoolOop pool = cache->constant_pool();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
175 assert(pool->is_constantPool(), "should be constant pool");
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
176 for (int i = 0; i < cache->length(); i++) {
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
177 ConstantPoolCacheEntry* e = cache->entry_at(i);
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
178 oop* p = (oop*)&e->_f1;
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
179 if (PSScavenge::should_scavenge(p))
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
180 pm->claim_or_forward_depth(p);
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
181 assert(!(e->is_vfinal() && PSScavenge::should_scavenge((oop*)&e->_f2)),
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
182 "no live oops here");
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
183 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
184 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 int
a61af66fc99e Initial load
duke
parents:
diff changeset
188 constantPoolCacheKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
190 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // Iteration over constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
193 PSParallelCompact::adjust_pointer((oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // iteration over constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
196 for (int i = 0; i < cache->length(); ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 cache->entry_at(i)->update_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 return cache->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 void constantPoolCacheKlass::oop_print_on(oop obj, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
206 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // super print
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
208 Klass::oop_print_on(obj, st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // print constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
210 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->print(st, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
212
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
213 void constantPoolCacheKlass::oop_print_value_on(oop obj, outputStream* st) {
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
214 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
215 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
216 st->print("cache [%d]", cache->length());
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
217 cache->print_address_on(st);
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
218 st->print(" for ");
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
219 cache->constant_pool()->print_value_on(st);
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
220 }
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
221
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 void constantPoolCacheKlass::oop_verify_on(oop obj, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 guarantee(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
224 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // super verify
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
226 Klass::oop_verify_on(obj, st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // print constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
228 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->verify(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 const char* constantPoolCacheKlass::internal_name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 return "{constant pool cache}";
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }