annotate src/share/vm/oops/cpCacheKlass.cpp @ 4155:394404b2d9bd

Removed strict requirement for GRAAL environment variable. It only needs to be set now if the graal directory is not in the directory hierarchy of GraalVM JDK.
author Doug Simon <doug.simon@oracle.com>
date Wed, 21 Dec 2011 11:25:27 +0100
parents baf763f388e6
children
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);
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 2376
diff changeset
66 #ifndef PRODUCT
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 2376
diff changeset
67 const size_t hs = oopDesc::header_size();
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 2376
diff changeset
68 Universe::heap()->check_for_bad_heap_word_value(((HeapWord*) obj)+hs, size-hs);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 2376
diff changeset
69 #endif
2226
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
70 constantPoolCacheOop cache = (constantPoolCacheOop) obj;
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
71 assert(!UseConcMarkSweepGC || obj->klass_or_null() == NULL,
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
72 "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
73 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
74 cache->set_constant_pool(NULL);
542
9a25e0c45327 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 196
diff changeset
75
2226
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
76 OrderAccess::storestore();
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
77 obj->set_klass(klass());
c5a923563727 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 1972
diff changeset
78 assert(cache->size() == size, "Incorrect cache->size()");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79 return cache;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 klassOop constantPoolCacheKlass::create_klass(TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 constantPoolCacheKlass o;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
84 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
85 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
86 // 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
87 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
88 java_lang_Class::create_mirror(k, CHECK_NULL); // Allocate mirror
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return k();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void constantPoolCacheKlass::oop_follow_contents(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
95 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // gc of constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
99 MarkSweep::mark_and_push((oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // gc of constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
101 int i = cache->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 while (i-- > 0) cache->entry_at(i)->follow_contents();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void constantPoolCacheKlass::oop_follow_contents(ParCompactionManager* cm,
a61af66fc99e Initial load
duke
parents:
diff changeset
107 oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
109 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // gc of constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
113 PSParallelCompact::mark_and_push(cm, (oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // gc of constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
115 int i = cache->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 while (i-- > 0) cache->entry_at(i)->follow_contents(cm);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 int constantPoolCacheKlass::oop_oop_iterate(oop obj, OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
123 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Get size before changing pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Don't call size() or oop_size() since that is a virtual call.
a61af66fc99e Initial load
duke
parents:
diff changeset
126 int size = cache->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // iteration over constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
130 blk->do_oop((oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // iteration over constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
132 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->oop_iterate(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 return size;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 int constantPoolCacheKlass::oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
139 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // Get size before changing pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // Don't call size() or oop_size() since that is a virtual call.
a61af66fc99e Initial load
duke
parents:
diff changeset
142 int size = cache->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // iteration over constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
146 oop* addr = (oop*)cache->constant_pool_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
147 if (mr.contains(addr)) blk->do_oop(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // iteration over constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
149 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->oop_iterate_m(blk, mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 return size;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 int constantPoolCacheKlass::oop_adjust_pointers(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
155 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Get size before changing pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Don't call size() or oop_size() since that is a virtual call.
a61af66fc99e Initial load
duke
parents:
diff changeset
158 int size = cache->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // Performance tweak: We skip iterating over the klass pointer since we
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // know that Universe::constantPoolCacheKlassObj never moves.
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // Iteration over constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
162 MarkSweep::adjust_pointer((oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // iteration over constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
164 for (int i = 0; i < cache->length(); i++)
a61af66fc99e Initial load
duke
parents:
diff changeset
165 cache->entry_at(i)->adjust_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return size;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
170 void constantPoolCacheKlass::oop_push_contents(PSPromotionManager* pm,
a61af66fc99e Initial load
duke
parents:
diff changeset
171 oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 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
173 if (ScavengeRootsInCode) {
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
174 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
175 // 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
176 constantPoolOop pool = cache->constant_pool();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
177 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
178 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
179 ConstantPoolCacheEntry* e = cache->entry_at(i);
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
180 oop* p = (oop*)&e->_f1;
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
181 if (PSScavenge::should_scavenge(p))
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
182 pm->claim_or_forward_depth(p);
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2227
diff changeset
183 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
184 "no live oops here");
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
185 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 579
diff changeset
186 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 int
a61af66fc99e Initial load
duke
parents:
diff changeset
190 constantPoolCacheKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
192 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // Iteration over constant pool cache instance variables
a61af66fc99e Initial load
duke
parents:
diff changeset
195 PSParallelCompact::adjust_pointer((oop*)cache->constant_pool_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // iteration over constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
198 for (int i = 0; i < cache->length(); ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 cache->entry_at(i)->update_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 return cache->object_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 void constantPoolCacheKlass::oop_print_on(oop obj, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 assert(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
208 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // super print
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
210 Klass::oop_print_on(obj, st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // print constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
212 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->print(st, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
214
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
215 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
216 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
217 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
218 st->print("cache [%d]", cache->length());
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
219 cache->print_address_on(st);
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
220 st->print(" for ");
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
221 cache->constant_pool()->print_value_on(st);
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
222 }
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 726
diff changeset
223
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 void constantPoolCacheKlass::oop_verify_on(oop obj, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 guarantee(obj->is_constantPoolCache(), "obj must be constant pool cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
226 constantPoolCacheOop cache = (constantPoolCacheOop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // super verify
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
228 Klass::oop_verify_on(obj, st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // print constant pool cache entries
a61af66fc99e Initial load
duke
parents:
diff changeset
230 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->verify(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 const char* constantPoolCacheKlass::internal_name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 return "{constant pool cache}";
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }