author | jiangli |
Tue, 09 Oct 2018 15:58:07 -0400 | |
changeset 52062 | 8dbf1a13af49 |
parent 51486 | 67b55f3c45eb |
child 52067 | 2e72562697bf |
permissions | -rw-r--r-- |
1 | 1 |
/* |
48785 | 2 |
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4571
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4571
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:
4571
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47634
diff
changeset
|
26 |
#include "jvm.h" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
27 |
#include "classfile/classLoaderData.hpp" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28741
diff
changeset
|
28 |
#include "classfile/javaClasses.inline.hpp" |
15430
7c35f12cf1e5
8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents:
15229
diff
changeset
|
29 |
#include "classfile/metadataOnStackMark.hpp" |
24426
0a69c8cdfca9
8038654: Separate SymbolTable and StringTable code
gziemski
parents:
24334
diff
changeset
|
30 |
#include "classfile/stringTable.hpp" |
7397 | 31 |
#include "classfile/systemDictionary.hpp" |
32 |
#include "classfile/vmSymbols.hpp" |
|
33 |
#include "interpreter/linkResolver.hpp" |
|
48157 | 34 |
#include "memory/allocation.inline.hpp" |
15437 | 35 |
#include "memory/heapInspection.hpp" |
52062
8dbf1a13af49
8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents:
51486
diff
changeset
|
36 |
#include "memory/heapShared.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
37 |
#include "memory/metadataFactory.hpp" |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
38 |
#include "memory/metaspaceClosure.hpp" |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
39 |
#include "memory/metaspaceShared.hpp" |
7397 | 40 |
#include "memory/oopFactory.hpp" |
37248 | 41 |
#include "memory/resourceArea.hpp" |
49340
4e82736053ae
8191102: Incorrect include file use in classLoader.hpp
hseigel
parents:
49056
diff
changeset
|
42 |
#include "oops/array.inline.hpp" |
4e82736053ae
8191102: Incorrect include file use in classLoader.hpp
hseigel
parents:
49056
diff
changeset
|
43 |
#include "oops/constantPool.inline.hpp" |
4e82736053ae
8191102: Incorrect include file use in classLoader.hpp
hseigel
parents:
49056
diff
changeset
|
44 |
#include "oops/cpCache.inline.hpp" |
7397 | 45 |
#include "oops/instanceKlass.hpp" |
46 |
#include "oops/objArrayKlass.hpp" |
|
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28741
diff
changeset
|
47 |
#include "oops/objArrayOop.inline.hpp" |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28741
diff
changeset
|
48 |
#include "oops/oop.inline.hpp" |
49036
bc92debe57e4
8197999: Accessors in typeArrayOopDesc should use new Access API
rkennke
parents:
48826
diff
changeset
|
49 |
#include "oops/typeArrayOop.inline.hpp" |
7397 | 50 |
#include "runtime/fieldType.hpp" |
49449
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49360
diff
changeset
|
51 |
#include "runtime/handles.inline.hpp" |
7397 | 52 |
#include "runtime/init.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
53 |
#include "runtime/javaCalls.hpp" |
7397 | 54 |
#include "runtime/signature.hpp" |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
49449
diff
changeset
|
55 |
#include "runtime/vframe.inline.hpp" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28741
diff
changeset
|
56 |
#include "utilities/copy.hpp" |
1 | 57 |
|
49340
4e82736053ae
8191102: Incorrect include file use in classLoader.hpp
hseigel
parents:
49056
diff
changeset
|
58 |
constantTag ConstantPool::tag_at(int which) const { return (constantTag)tags()->at_acquire(which); } |
4e82736053ae
8191102: Incorrect include file use in classLoader.hpp
hseigel
parents:
49056
diff
changeset
|
59 |
|
4e82736053ae
8191102: Incorrect include file use in classLoader.hpp
hseigel
parents:
49056
diff
changeset
|
60 |
void ConstantPool::release_tag_at_put(int which, jbyte t) { tags()->release_at_put(which, t); } |
4e82736053ae
8191102: Incorrect include file use in classLoader.hpp
hseigel
parents:
49056
diff
changeset
|
61 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
62 |
ConstantPool* ConstantPool::allocate(ClassLoaderData* loader_data, int length, TRAPS) { |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
63 |
Array<u1>* tags = MetadataFactory::new_array<u1>(loader_data, length, 0, CHECK_NULL); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
64 |
int size = ConstantPool::size(length); |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
65 |
return new (loader_data, size, MetaspaceObj::ConstantPoolType, THREAD) ConstantPool(tags); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
66 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
67 |
|
34666 | 68 |
#ifdef ASSERT |
15430
7c35f12cf1e5
8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents:
15229
diff
changeset
|
69 |
|
34666 | 70 |
// MetaspaceObj allocation invariant is calloc equivalent memory |
71 |
// simple verification of this here (JVM_CONSTANT_Invalid == 0 ) |
|
72 |
static bool tag_array_is_zero_initialized(Array<u1>* tags) { |
|
73 |
assert(tags != NULL, "invariant"); |
|
74 |
const int length = tags->length(); |
|
75 |
for (int index = 0; index < length; ++index) { |
|
76 |
if (JVM_CONSTANT_Invalid != tags->at(index)) { |
|
77 |
return false; |
|
78 |
} |
|
79 |
} |
|
80 |
return true; |
|
81 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
82 |
|
34666 | 83 |
#endif |
84 |
||
85 |
ConstantPool::ConstantPool(Array<u1>* tags) : |
|
86 |
_tags(tags), |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
87 |
_length(tags->length()) { |
34666 | 88 |
|
89 |
assert(_tags != NULL, "invariant"); |
|
90 |
assert(tags->length() == _length, "invariant"); |
|
91 |
assert(tag_array_is_zero_initialized(tags), "invariant"); |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
92 |
assert(0 == flags(), "invariant"); |
34666 | 93 |
assert(0 == version(), "invariant"); |
94 |
assert(NULL == _pool_holder, "invariant"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
95 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
96 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
97 |
void ConstantPool::deallocate_contents(ClassLoaderData* loader_data) { |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
98 |
if (cache() != NULL) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
99 |
MetadataFactory::free_metadata(loader_data, cache()); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
100 |
set_cache(NULL); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
101 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
102 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
103 |
MetadataFactory::free_array<Klass*>(loader_data, resolved_klasses()); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
104 |
set_resolved_klasses(NULL); |
22750
a3c879b18f22
8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents:
22539
diff
changeset
|
105 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
106 |
MetadataFactory::free_array<jushort>(loader_data, operands()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
107 |
set_operands(NULL); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
108 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
109 |
release_C_heap_structures(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
110 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
111 |
// free tag array |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
112 |
MetadataFactory::free_array<u1>(loader_data, tags()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
113 |
set_tags(NULL); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
114 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
115 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
116 |
void ConstantPool::release_C_heap_structures() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
117 |
// walk constant pool and decrement symbol reference counts |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
118 |
unreference_symbols(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
119 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
120 |
|
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
121 |
void ConstantPool::metaspace_pointers_do(MetaspaceClosure* it) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
122 |
log_trace(cds)("Iter(ConstantPool): %p", this); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
123 |
|
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
124 |
it->push(&_tags, MetaspaceClosure::_writable); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
125 |
it->push(&_cache); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
126 |
it->push(&_pool_holder); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
127 |
it->push(&_operands); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
128 |
it->push(&_resolved_klasses, MetaspaceClosure::_writable); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
129 |
|
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
130 |
for (int i = 0; i < length(); i++) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
131 |
// The only MSO's embedded in the CP entries are Symbols: |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
132 |
// JVM_CONSTANT_String (normal and pseudo) |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
133 |
// JVM_CONSTANT_Utf8 |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
134 |
constantTag ctag = tag_at(i); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
135 |
if (ctag.is_string() || ctag.is_utf8()) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
136 |
it->push(symbol_at_addr(i)); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
137 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
138 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
139 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
140 |
|
31046
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
141 |
objArrayOop ConstantPool::resolved_references() const { |
46961
c9094b1e5f87
8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents:
46816
diff
changeset
|
142 |
return (objArrayOop)_cache->resolved_references(); |
31046
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
143 |
} |
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
144 |
|
47532
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
145 |
// Called from outside constant pool resolution where a resolved_reference array |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
146 |
// may not be present. |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
147 |
objArrayOop ConstantPool::resolved_references_or_null() const { |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
148 |
if (_cache == NULL) { |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
149 |
return NULL; |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
150 |
} else { |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
151 |
return (objArrayOop)_cache->resolved_references(); |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
152 |
} |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
153 |
} |
d8e417df3468
8081323: ConstantPool::_resolved_references is missing in heap dump
coleenp
parents:
47216
diff
changeset
|
154 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
155 |
// Create resolved_references array and mapping array for original cp indexes |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
156 |
// The ldc bytecode was rewritten to have the resolved reference array index so need a way |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
157 |
// to map it back for resolving and some unlikely miscellaneous uses. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
158 |
// The objects created by invokedynamic are appended to this list. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
159 |
void ConstantPool::initialize_resolved_references(ClassLoaderData* loader_data, |
33232
75e0112d3eb5
8140452: Internal Error memory/allocation.cpp:179
mgerdin
parents:
33148
diff
changeset
|
160 |
const intStack& reference_map, |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
161 |
int constant_pool_map_length, |
20063
8965b97fcbb2
8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents:
18439
diff
changeset
|
162 |
TRAPS) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
163 |
// Initialized the resolved object cache. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
164 |
int map_length = reference_map.length(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
165 |
if (map_length > 0) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
166 |
// Only need mapping back to constant pool entries. The map isn't used for |
20063
8965b97fcbb2
8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents:
18439
diff
changeset
|
167 |
// invokedynamic resolved_reference entries. For invokedynamic entries, |
8965b97fcbb2
8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents:
18439
diff
changeset
|
168 |
// the constant pool cache index has the mapping back to both the constant |
8965b97fcbb2
8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents:
18439
diff
changeset
|
169 |
// pool and to the resolved reference index. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
170 |
if (constant_pool_map_length > 0) { |
20063
8965b97fcbb2
8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents:
18439
diff
changeset
|
171 |
Array<u2>* om = MetadataFactory::new_array<u2>(loader_data, constant_pool_map_length, CHECK); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
172 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
173 |
for (int i = 0; i < constant_pool_map_length; i++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
174 |
int x = reference_map.at(i); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
175 |
assert(x == (int)(jushort) x, "klass index is too big"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
176 |
om->at_put(i, (jushort)x); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
177 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
178 |
set_reference_map(om); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
179 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
180 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
181 |
// Create Java array for holding resolved strings, methodHandles, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
182 |
// methodTypes, invokedynamic and invokehandle appendix objects, etc. |
31046
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
183 |
objArrayOop stom = oopFactory::new_objArray(SystemDictionary::Object_klass(), map_length, CHECK); |
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
184 |
Handle refs_handle (THREAD, (oop)stom); // must handleize. |
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
185 |
set_resolved_references(loader_data->add_handle(refs_handle)); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
186 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
187 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
188 |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
189 |
void ConstantPool::allocate_resolved_klasses(ClassLoaderData* loader_data, int num_klasses, TRAPS) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
190 |
// A ConstantPool can't possibly have 0xffff valid class entries, |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
191 |
// because entry #0 must be CONSTANT_Invalid, and each class entry must refer to a UTF8 |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
192 |
// entry for the class's name. So at most we will have 0xfffe class entries. |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
193 |
// This allows us to use 0xffff (ConstantPool::_temp_resolved_klass_index) to indicate |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
194 |
// UnresolvedKlass entries that are temporarily created during class redefinition. |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
195 |
assert(num_klasses < CPKlassSlot::_temp_resolved_klass_index, "sanity"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
196 |
assert(resolved_klasses() == NULL, "sanity"); |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
197 |
Array<Klass*>* rk = MetadataFactory::new_array<Klass*>(loader_data, num_klasses, CHECK); |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
198 |
set_resolved_klasses(rk); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
199 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
200 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
201 |
void ConstantPool::initialize_unresolved_klasses(ClassLoaderData* loader_data, TRAPS) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
202 |
int len = length(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
203 |
int num_klasses = 0; |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
204 |
for (int i = 1; i <len; i++) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
205 |
switch (tag_at(i).value()) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
206 |
case JVM_CONSTANT_ClassIndex: |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
207 |
{ |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
208 |
const int class_index = klass_index_at(i); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
209 |
unresolved_klass_at_put(i, class_index, num_klasses++); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
210 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
211 |
break; |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
212 |
#ifndef PRODUCT |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
213 |
case JVM_CONSTANT_Class: |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
214 |
case JVM_CONSTANT_UnresolvedClass: |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
215 |
case JVM_CONSTANT_UnresolvedClassInError: |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
216 |
// All of these should have been reverted back to ClassIndex before calling |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
217 |
// this function. |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
218 |
ShouldNotReachHere(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
219 |
#endif |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
220 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
221 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
222 |
allocate_resolved_klasses(loader_data, num_klasses, THREAD); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
223 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
224 |
|
51444
3e5d28e6de32
8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents:
51425
diff
changeset
|
225 |
// Unsafe anonymous class support: |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
226 |
void ConstantPool::klass_at_put(int class_index, int name_index, int resolved_klass_index, Klass* k, Symbol* name) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
227 |
assert(is_within_bounds(class_index), "index out of bounds"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
228 |
assert(is_within_bounds(name_index), "index out of bounds"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
229 |
assert((resolved_klass_index & 0xffff0000) == 0, "must be"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
230 |
*int_at_addr(class_index) = |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
231 |
build_int_from_shorts((jushort)resolved_klass_index, (jushort)name_index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
232 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
233 |
symbol_at_put(name_index, name); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
234 |
name->increment_refcount(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
235 |
Klass** adr = resolved_klasses()->adr_at(resolved_klass_index); |
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47549
diff
changeset
|
236 |
OrderAccess::release_store(adr, k); |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
237 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
238 |
// The interpreter assumes when the tag is stored, the klass is resolved |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
239 |
// and the Klass* non-NULL, so we need hardware store ordering here. |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
240 |
if (k != NULL) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
241 |
release_tag_at_put(class_index, JVM_CONSTANT_Class); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
242 |
} else { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
243 |
release_tag_at_put(class_index, JVM_CONSTANT_UnresolvedClass); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
244 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
245 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
246 |
|
51444
3e5d28e6de32
8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents:
51425
diff
changeset
|
247 |
// Unsafe anonymous class support: |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
248 |
void ConstantPool::klass_at_put(int class_index, Klass* k) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
249 |
assert(k != NULL, "must be valid klass"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
250 |
CPKlassSlot kslot = klass_slot_at(class_index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
251 |
int resolved_klass_index = kslot.resolved_klass_index(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
252 |
Klass** adr = resolved_klasses()->adr_at(resolved_klass_index); |
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47549
diff
changeset
|
253 |
OrderAccess::release_store(adr, k); |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
254 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
255 |
// The interpreter assumes when the tag is stored, the klass is resolved |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
256 |
// and the Klass* non-NULL, so we need hardware store ordering here. |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
257 |
release_tag_at_put(class_index, JVM_CONSTANT_Class); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
258 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
259 |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
260 |
#if INCLUDE_CDS_JAVA_HEAP |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
261 |
// Archive the resolved references |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
262 |
void ConstantPool::archive_resolved_references(Thread* THREAD) { |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
263 |
if (_cache == NULL) { |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
264 |
return; // nothing to do |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
265 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
266 |
|
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
267 |
InstanceKlass *ik = pool_holder(); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
268 |
if (!(ik->is_shared_boot_class() || ik->is_shared_platform_class() || |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
269 |
ik->is_shared_app_class())) { |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
270 |
// Archiving resolved references for classes from non-builtin loaders |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
271 |
// is not yet supported. |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
272 |
set_resolved_references(NULL); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
273 |
return; |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
274 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
275 |
|
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
276 |
objArrayOop rr = resolved_references(); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
277 |
Array<u2>* ref_map = reference_map(); |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
278 |
if (rr != NULL) { |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
279 |
int ref_map_len = ref_map == NULL ? 0 : ref_map->length(); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
280 |
int rr_len = rr->length(); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
281 |
for (int i = 0; i < rr_len; i++) { |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
282 |
oop p = rr->obj_at(i); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
283 |
rr->obj_at_put(i, NULL); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
284 |
if (p != NULL && i < ref_map_len) { |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
285 |
int index = object_to_cp_index(i); |
46816
f64eb2bfb250
8186238: The constant pool entry to empty string ("") should not be pre-resolved during CDS dump time.
jiangli
parents:
46810
diff
changeset
|
286 |
// Skip the entry if the string hash code is 0 since the string |
f64eb2bfb250
8186238: The constant pool entry to empty string ("") should not be pre-resolved during CDS dump time.
jiangli
parents:
46810
diff
changeset
|
287 |
// is not included in the shared string_table, see StringTable::copy_shared_string. |
f64eb2bfb250
8186238: The constant pool entry to empty string ("") should not be pre-resolved during CDS dump time.
jiangli
parents:
46810
diff
changeset
|
288 |
if (tag_at(index).is_string() && java_lang_String::hash_code(p) != 0) { |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
289 |
oop op = StringTable::create_archived_string(p, THREAD); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
290 |
// If the String object is not archived (possibly too large), |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
291 |
// NULL is returned. Also set it in the array, so we won't |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
292 |
// have a 'bad' reference in the archived resolved_reference |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
293 |
// array. |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
294 |
rr->obj_at_put(i, op); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
295 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
296 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
297 |
} |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
298 |
|
52062
8dbf1a13af49
8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents:
51486
diff
changeset
|
299 |
oop archived = HeapShared::archive_heap_object(rr, THREAD); |
51425
4e9667589c43
8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents:
51338
diff
changeset
|
300 |
// If the resolved references array is not archived (too large), |
4e9667589c43
8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents:
51338
diff
changeset
|
301 |
// the 'archived' object is NULL. No need to explicitly check |
4e9667589c43
8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents:
51338
diff
changeset
|
302 |
// the return value of archive_heap_object here. At runtime, the |
4e9667589c43
8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents:
51338
diff
changeset
|
303 |
// resolved references will be created using the normal process |
4e9667589c43
8209389: SIGSEGV in WalkOopAndArchiveClosure::do_oop_work.
jiangli
parents:
51338
diff
changeset
|
304 |
// when there is no archived value. |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
305 |
_cache->set_archived_references(archived); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
306 |
set_resolved_references(NULL); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
307 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
308 |
} |
47549
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
309 |
|
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
310 |
void ConstantPool::resolve_class_constants(TRAPS) { |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
311 |
assert(DumpSharedSpaces, "used during dump time only"); |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
312 |
// The _cache may be NULL if the _pool_holder klass fails verification |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
313 |
// at dump time due to missing dependencies. |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
314 |
if (cache() == NULL || reference_map() == NULL) { |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
315 |
return; // nothing to do |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
316 |
} |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
317 |
|
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
318 |
constantPoolHandle cp(THREAD, this); |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
319 |
for (int index = 1; index < length(); index++) { // Index 0 is unused |
47797
d20059c27430
8184206: Resolve all string constants in shared classes at CDS dump time
jiangli
parents:
47765
diff
changeset
|
320 |
if (tag_at(index).is_string() && !cp->is_pseudo_string_at(index)) { |
d20059c27430
8184206: Resolve all string constants in shared classes at CDS dump time
jiangli
parents:
47765
diff
changeset
|
321 |
int cache_index = cp->cp_to_object_index(index); |
d20059c27430
8184206: Resolve all string constants in shared classes at CDS dump time
jiangli
parents:
47765
diff
changeset
|
322 |
string_at_impl(cp, index, cache_index, CHECK); |
47549
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
323 |
} |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
324 |
} |
0a0fae0c05ac
8186789: CDS dump crashes at ConstantPool::resolve_class_constants
jiangli
parents:
47532
diff
changeset
|
325 |
} |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
326 |
#endif |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
327 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
328 |
// CDS support. Create a new resolved_references array. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
329 |
void ConstantPool::restore_unshareable_info(TRAPS) { |
46324
8764956ec928
8005165: Remove CPU-dependent code in self-patching vtables
iklam
parents:
39398
diff
changeset
|
330 |
assert(is_constantPool(), "ensure C++ vtable is restored"); |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
331 |
assert(on_stack(), "should always be set for shared constant pools"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
332 |
assert(is_shared(), "should always be set for shared constant pools"); |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
333 |
assert(_cache != NULL, "constant pool _cache should not be NULL"); |
31046
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
334 |
|
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
335 |
// Only create the new resolved references array if it hasn't been attempted before |
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
336 |
if (resolved_references() != NULL) return; |
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
337 |
|
31038
2fd2fdc6a70a
8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
29576
diff
changeset
|
338 |
// restore the C++ vtable from the shared archive |
2fd2fdc6a70a
8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
29576
diff
changeset
|
339 |
restore_vtable(); |
2fd2fdc6a70a
8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
29576
diff
changeset
|
340 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
341 |
if (SystemDictionary::Object_klass_loaded()) { |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
342 |
ClassLoaderData* loader_data = pool_holder()->class_loader_data(); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
343 |
#if INCLUDE_CDS_JAVA_HEAP |
52062
8dbf1a13af49
8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents:
51486
diff
changeset
|
344 |
if (HeapShared::open_archive_heap_region_mapped() && |
48785 | 345 |
_cache->archived_references() != NULL) { |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
346 |
oop archived = _cache->archived_references(); |
48785 | 347 |
// Create handle for the archived resolved reference array object |
348 |
Handle refs_handle(THREAD, archived); |
|
349 |
set_resolved_references(loader_data->add_handle(refs_handle)); |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
350 |
} else |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
351 |
#endif |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
352 |
{ |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
353 |
// No mapped archived resolved reference array |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
354 |
// Recreate the object array and add to ClassLoaderData. |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
355 |
int map_length = resolved_reference_length(); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
356 |
if (map_length > 0) { |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
357 |
objArrayOop stom = oopFactory::new_objArray(SystemDictionary::Object_klass(), map_length, CHECK); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
358 |
Handle refs_handle(THREAD, (oop)stom); // must handleize. |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
359 |
set_resolved_references(loader_data->add_handle(refs_handle)); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
360 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
361 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
362 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
363 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
364 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
365 |
void ConstantPool::remove_unshareable_info() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
366 |
// Resolved references are not in the shared archive. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
367 |
// Save the length for restoration. It is not necessarily the same length |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
368 |
// as reference_map.length() if invokedynamic is saved. It is needed when |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
369 |
// re-creating the resolved reference array if archived heap data cannot be map |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
370 |
// at runtime. |
31046
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
371 |
set_resolved_reference_length( |
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
372 |
resolved_references() != NULL ? resolved_references()->length() : 0); |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
373 |
|
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
374 |
// If archiving heap objects is not allowed, clear the resolved references. |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
375 |
// Otherwise, it is cleared after the resolved references array is cached |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
376 |
// (see archive_resolved_references()). |
52062
8dbf1a13af49
8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents:
51486
diff
changeset
|
377 |
if (!HeapShared::is_heap_object_archiving_allowed()) { |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
378 |
set_resolved_references(NULL); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
379 |
} |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
380 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
381 |
// Shared ConstantPools are in the RO region, so the _flags cannot be modified. |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
382 |
// The _on_stack flag is used to prevent ConstantPools from deallocation during |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
383 |
// class redefinition. Since shared ConstantPools cannot be deallocated anyway, |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
384 |
// we always set _on_stack to true to avoid having to change _flags during runtime. |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
385 |
_flags |= (_on_stack | _is_shared); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
386 |
int num_klasses = 0; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
387 |
for (int index = 1; index < length(); index++) { // Index 0 is unused |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
388 |
assert(!tag_at(index).is_unresolved_klass_in_error(), "This must not happen during dump time"); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
389 |
if (tag_at(index).is_klass()) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
390 |
// This class was resolved as a side effect of executing Java code |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
391 |
// during dump time. We need to restore it back to an UnresolvedClass, |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
392 |
// so that the proper class loading and initialization can happen |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
393 |
// at runtime. |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
394 |
CPKlassSlot kslot = klass_slot_at(index); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
395 |
int resolved_klass_index = kslot.resolved_klass_index(); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
396 |
int name_index = kslot.name_index(); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
397 |
assert(tag_at(name_index).is_symbol(), "sanity"); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
398 |
resolved_klasses()->at_put(resolved_klass_index, NULL); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
399 |
tag_at_put(index, JVM_CONSTANT_UnresolvedClass); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
400 |
assert(klass_name_at(index) == symbol_at(name_index), "sanity"); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
401 |
} |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
402 |
} |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
403 |
if (cache() != NULL) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
404 |
cache()->remove_unshareable_info(); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
47095
diff
changeset
|
405 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
406 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
407 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
408 |
int ConstantPool::cp_to_object_index(int cp_index) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
409 |
// this is harder don't do this so much. |
20063
8965b97fcbb2
8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents:
18439
diff
changeset
|
410 |
int i = reference_map()->find(cp_index); |
8965b97fcbb2
8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents:
18439
diff
changeset
|
411 |
// We might not find the index for jsr292 call. |
8965b97fcbb2
8014956: nashorn/api/javaaccess/MethodAccessTest.java test fails on sparc-solaris 64
coleenp
parents:
18439
diff
changeset
|
412 |
return (i < 0) ? _no_index_sentinel : i; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
413 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
414 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
35219
diff
changeset
|
415 |
void ConstantPool::string_at_put(int which, int obj_index, oop str) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
35219
diff
changeset
|
416 |
resolved_references()->obj_at_put(obj_index, str); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
35219
diff
changeset
|
417 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
35219
diff
changeset
|
418 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
419 |
void ConstantPool::trace_class_resolution(const constantPoolHandle& this_cp, Klass* k) { |
25325 | 420 |
ResourceMark rm; |
421 |
int line_number = -1; |
|
422 |
const char * source_file = NULL; |
|
423 |
if (JavaThread::current()->has_last_Java_frame()) { |
|
424 |
// try to identify the method which called this function. |
|
425 |
vframeStream vfst(JavaThread::current()); |
|
426 |
if (!vfst.at_end()) { |
|
427 |
line_number = vfst.method()->line_number_from_bci(vfst.bci()); |
|
428 |
Symbol* s = vfst.method()->method_holder()->source_file_name(); |
|
429 |
if (s != NULL) { |
|
430 |
source_file = s->as_C_string(); |
|
431 |
} |
|
432 |
} |
|
433 |
} |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
434 |
if (k != this_cp->pool_holder()) { |
25325 | 435 |
// only print something if the classes are different |
436 |
if (source_file != NULL) { |
|
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37475
diff
changeset
|
437 |
log_debug(class, resolve)("%s %s %s:%d", |
25325 | 438 |
this_cp->pool_holder()->external_name(), |
33602 | 439 |
k->external_name(), source_file, line_number); |
25325 | 440 |
} else { |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37475
diff
changeset
|
441 |
log_debug(class, resolve)("%s %s", |
25325 | 442 |
this_cp->pool_holder()->external_name(), |
33602 | 443 |
k->external_name()); |
25325 | 444 |
} |
445 |
} |
|
446 |
} |
|
447 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
448 |
Klass* ConstantPool::klass_at_impl(const constantPoolHandle& this_cp, int which, |
27408
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
449 |
bool save_resolution_error, TRAPS) { |
25325 | 450 |
assert(THREAD->is_Java_thread(), "must be a Java thread"); |
451 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
452 |
// A resolved constantPool entry will contain a Klass*, otherwise a Symbol*. |
25325 | 453 |
// It is not safe to rely on the tag bit's here, since we don't have a lock, and |
454 |
// the entry and tag is not updated atomicly. |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
455 |
CPKlassSlot kslot = this_cp->klass_slot_at(which); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
456 |
int resolved_klass_index = kslot.resolved_klass_index(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
457 |
int name_index = kslot.name_index(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
458 |
assert(this_cp->tag_at(name_index).is_symbol(), "sanity"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
459 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
460 |
Klass* klass = this_cp->resolved_klasses()->at(resolved_klass_index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
461 |
if (klass != NULL) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
462 |
return klass; |
1 | 463 |
} |
464 |
||
25325 | 465 |
// This tag doesn't change back to unresolved class unless at a safepoint. |
466 |
if (this_cp->tag_at(which).is_unresolved_klass_in_error()) { |
|
467 |
// The original attempt to resolve this constant pool entry failed so find the |
|
468 |
// class of the original error and throw another error of the same class |
|
469 |
// (JVMS 5.4.3). |
|
470 |
// If there is a detail message, pass that detail message to the error. |
|
471 |
// The JVMS does not strictly require us to duplicate the same detail message, |
|
472 |
// or any internal exception fields such as cause or stacktrace. But since the |
|
473 |
// detail message is often a class name or other literal string, we will repeat it |
|
474 |
// if we can find it in the symbol table. |
|
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
475 |
throw_resolution_error(this_cp, which, CHECK_0); |
25325 | 476 |
ShouldNotReachHere(); |
1 | 477 |
} |
478 |
||
25325 | 479 |
Handle mirror_handle; |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
480 |
Symbol* name = this_cp->symbol_at(name_index); |
25325 | 481 |
Handle loader (THREAD, this_cp->pool_holder()->class_loader()); |
482 |
Handle protection_domain (THREAD, this_cp->pool_holder()->protection_domain()); |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
483 |
Klass* k = SystemDictionary::resolve_or_fail(name, loader, protection_domain, true, THREAD); |
25325 | 484 |
if (!HAS_PENDING_EXCEPTION) { |
485 |
// preserve the resolved klass from unloading |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
486 |
mirror_handle = Handle(THREAD, k->java_mirror()); |
25325 | 487 |
// Do access check for klasses |
488 |
verify_constant_pool_resolve(this_cp, k, THREAD); |
|
489 |
} |
|
1 | 490 |
|
25325 | 491 |
// Failed to resolve class. We must record the errors so that subsequent attempts |
492 |
// to resolve this constant pool entry fail with the same error (JVMS 5.4.3). |
|
493 |
if (HAS_PENDING_EXCEPTION) { |
|
27408
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
494 |
if (save_resolution_error) { |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
495 |
save_and_throw_exception(this_cp, which, constantTag(JVM_CONSTANT_UnresolvedClass), CHECK_NULL); |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
496 |
// If CHECK_NULL above doesn't return the exception, that means that |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
497 |
// some other thread has beaten us and has resolved the class. |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
498 |
// To preserve old behavior, we return the resolved class. |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
499 |
klass = this_cp->resolved_klasses()->at(resolved_klass_index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
500 |
assert(klass != NULL, "must be resolved if exception was cleared"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
501 |
return klass; |
27408
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
502 |
} else { |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
503 |
return NULL; // return the pending exception |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
504 |
} |
25325 | 505 |
} |
1 | 506 |
|
25325 | 507 |
// Make this class loader depend upon the class loader owning the class reference |
508 |
ClassLoaderData* this_key = this_cp->pool_holder()->class_loader_data(); |
|
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
49340
diff
changeset
|
509 |
this_key->record_dependency(k); |
25325 | 510 |
|
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37475
diff
changeset
|
511 |
// logging for class+resolve. |
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37475
diff
changeset
|
512 |
if (log_is_enabled(Debug, class, resolve)){ |
37451
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
513 |
trace_class_resolution(this_cp, k); |
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
514 |
} |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
515 |
Klass** adr = this_cp->resolved_klasses()->adr_at(resolved_klass_index); |
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47549
diff
changeset
|
516 |
OrderAccess::release_store(adr, k); |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
517 |
// The interpreter assumes when the tag is stored, the klass is resolved |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
518 |
// and the Klass* stored in _resolved_klasses is non-NULL, so we need |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
519 |
// hardware store ordering here. |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
520 |
this_cp->release_tag_at_put(which, JVM_CONSTANT_Class); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
521 |
return k; |
1 | 522 |
} |
523 |
||
524 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
525 |
// Does not update ConstantPool* - to avoid any exception throwing. Used |
1 | 526 |
// by compiler and exception handling. Also used to avoid classloads for |
527 |
// instanceof operations. Returns NULL if the class has not been loaded or |
|
528 |
// if the verification of constant pool failed |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
529 |
Klass* ConstantPool::klass_at_if_loaded(const constantPoolHandle& this_cp, int which) { |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
530 |
CPKlassSlot kslot = this_cp->klass_slot_at(which); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
531 |
int resolved_klass_index = kslot.resolved_klass_index(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
532 |
int name_index = kslot.name_index(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
533 |
assert(this_cp->tag_at(name_index).is_symbol(), "sanity"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
534 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
535 |
Klass* k = this_cp->resolved_klasses()->at(resolved_klass_index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
536 |
if (k != NULL) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
537 |
return k; |
1 | 538 |
} else { |
539 |
Thread *thread = Thread::current(); |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
540 |
Symbol* name = this_cp->symbol_at(name_index); |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
541 |
oop loader = this_cp->pool_holder()->class_loader(); |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
542 |
oop protection_domain = this_cp->pool_holder()->protection_domain(); |
1 | 543 |
Handle h_prot (thread, protection_domain); |
544 |
Handle h_loader (thread, loader); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
545 |
Klass* k = SystemDictionary::find(name, h_loader, h_prot, thread); |
1 | 546 |
|
547 |
if (k != NULL) { |
|
548 |
// Make sure that resolving is legal |
|
549 |
EXCEPTION_MARK; |
|
550 |
// return NULL if verification fails |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
551 |
verify_constant_pool_resolve(this_cp, k, THREAD); |
1 | 552 |
if (HAS_PENDING_EXCEPTION) { |
553 |
CLEAR_PENDING_EXCEPTION; |
|
554 |
return NULL; |
|
555 |
} |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
556 |
return k; |
1 | 557 |
} else { |
558 |
return k; |
|
559 |
} |
|
560 |
} |
|
561 |
} |
|
562 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
563 |
Method* ConstantPool::method_at_if_loaded(const constantPoolHandle& cpool, |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
564 |
int which) { |
11626
7423003cc783
7140882: Don't return booleans from methods returning pointers
brutisso
parents:
10565
diff
changeset
|
565 |
if (cpool->cache() == NULL) return NULL; // nothing to load yet |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
566 |
int cache_index = decode_cpcache_index(which, true); |
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9116
diff
changeset
|
567 |
if (!(cache_index >= 0 && cache_index < cpool->cache()->length())) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
568 |
// FIXME: should be an assert |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37475
diff
changeset
|
569 |
log_debug(class, resolve)("bad operand %d in:", which); cpool->print(); |
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9116
diff
changeset
|
570 |
return NULL; |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9116
diff
changeset
|
571 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9116
diff
changeset
|
572 |
ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
573 |
return e->method_if_resolved(cpool); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
574 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
575 |
|
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
576 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
577 |
bool ConstantPool::has_appendix_at_if_loaded(const constantPoolHandle& cpool, int which) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
578 |
if (cpool->cache() == NULL) return false; // nothing to load yet |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
579 |
int cache_index = decode_cpcache_index(which, true); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
580 |
ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
581 |
return e->has_appendix(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
582 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
583 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
584 |
oop ConstantPool::appendix_at_if_loaded(const constantPoolHandle& cpool, int which) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
585 |
if (cpool->cache() == NULL) return NULL; // nothing to load yet |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
586 |
int cache_index = decode_cpcache_index(which, true); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
587 |
ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
588 |
return e->appendix_if_resolved(cpool); |
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9116
diff
changeset
|
589 |
} |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9116
diff
changeset
|
590 |
|
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9116
diff
changeset
|
591 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
592 |
bool ConstantPool::has_method_type_at_if_loaded(const constantPoolHandle& cpool, int which) { |
13929
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
593 |
if (cpool->cache() == NULL) return false; // nothing to load yet |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
594 |
int cache_index = decode_cpcache_index(which, true); |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
595 |
ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index); |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
596 |
return e->has_method_type(); |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
597 |
} |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
598 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
599 |
oop ConstantPool::method_type_at_if_loaded(const constantPoolHandle& cpool, int which) { |
13929
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
600 |
if (cpool->cache() == NULL) return NULL; // nothing to load yet |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
601 |
int cache_index = decode_cpcache_index(which, true); |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
602 |
ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index); |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
603 |
return e->method_type_if_resolved(cpool); |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
604 |
} |
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
605 |
|
8da0dc50a6e4
7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents:
13736
diff
changeset
|
606 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
607 |
Symbol* ConstantPool::impl_name_ref_at(int which, bool uncached) { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
608 |
int name_index = name_ref_index_at(impl_name_and_type_ref_index_at(which, uncached)); |
1 | 609 |
return symbol_at(name_index); |
610 |
} |
|
611 |
||
612 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
613 |
Symbol* ConstantPool::impl_signature_ref_at(int which, bool uncached) { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
614 |
int signature_index = signature_ref_index_at(impl_name_and_type_ref_index_at(which, uncached)); |
1 | 615 |
return symbol_at(signature_index); |
616 |
} |
|
617 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
618 |
int ConstantPool::impl_name_and_type_ref_index_at(int which, bool uncached) { |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
619 |
int i = which; |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
620 |
if (!uncached && cache() != NULL) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
621 |
if (ConstantPool::is_invokedynamic_index(which)) { |
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
622 |
// Invokedynamic index is index into the constant pool cache |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
623 |
int pool_index = invokedynamic_cp_cache_entry_at(which)->constant_pool_index(); |
9116 | 624 |
pool_index = invoke_dynamic_name_and_type_ref_index_at(pool_index); |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
625 |
assert(tag_at(pool_index).is_name_and_type(), ""); |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
626 |
return pool_index; |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
627 |
} |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
628 |
// change byte-ordering and go via cache |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
629 |
i = remap_instruction_operand_from_cache(which); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
630 |
} else { |
48826 | 631 |
if (tag_at(which).is_invoke_dynamic() || |
632 |
tag_at(which).is_dynamic_constant() || |
|
633 |
tag_at(which).is_dynamic_constant_in_error()) { |
|
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
634 |
int pool_index = invoke_dynamic_name_and_type_ref_index_at(which); |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
635 |
assert(tag_at(pool_index).is_name_and_type(), ""); |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
636 |
return pool_index; |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
637 |
} |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
638 |
} |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
639 |
assert(tag_at(i).is_field_or_method(), "Corrupted constant pool"); |
48826 | 640 |
assert(!tag_at(i).is_invoke_dynamic() && |
641 |
!tag_at(i).is_dynamic_constant() && |
|
642 |
!tag_at(i).is_dynamic_constant_in_error(), "Must be handled above"); |
|
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
643 |
jint ref_index = *int_at_addr(i); |
1 | 644 |
return extract_high_short_from_int(ref_index); |
645 |
} |
|
646 |
||
38719
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
647 |
constantTag ConstantPool::impl_tag_ref_at(int which, bool uncached) { |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
648 |
int pool_index = which; |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
649 |
if (!uncached && cache() != NULL) { |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
650 |
if (ConstantPool::is_invokedynamic_index(which)) { |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
651 |
// Invokedynamic index is index into resolved_references |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
652 |
pool_index = invokedynamic_cp_cache_entry_at(which)->constant_pool_index(); |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
653 |
} else { |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
654 |
// change byte-ordering and go via cache |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
655 |
pool_index = remap_instruction_operand_from_cache(which); |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
656 |
} |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
657 |
} |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
658 |
return tag_at(pool_index); |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
659 |
} |
1 | 660 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
661 |
int ConstantPool::impl_klass_ref_index_at(int which, bool uncached) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
662 |
guarantee(!ConstantPool::is_invokedynamic_index(which), |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
663 |
"an invokedynamic instruction does not have a klass"); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
664 |
int i = which; |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
665 |
if (!uncached && cache() != NULL) { |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
666 |
// change byte-ordering and go via cache |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
667 |
i = remap_instruction_operand_from_cache(which); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
668 |
} |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
669 |
assert(tag_at(i).is_field_or_method(), "Corrupted constant pool"); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
670 |
jint ref_index = *int_at_addr(i); |
1 | 671 |
return extract_low_short_from_int(ref_index); |
672 |
} |
|
673 |
||
674 |
||
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
675 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
676 |
int ConstantPool::remap_instruction_operand_from_cache(int operand) { |
5688 | 677 |
int cpc_index = operand; |
678 |
DEBUG_ONLY(cpc_index -= CPCACHE_INDEX_TAG); |
|
679 |
assert((int)(u2)cpc_index == cpc_index, "clean u2"); |
|
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
680 |
int member_index = cache()->entry_at(cpc_index)->constant_pool_index(); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
2860
diff
changeset
|
681 |
return member_index; |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
682 |
} |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
683 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
684 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
685 |
void ConstantPool::verify_constant_pool_resolve(const constantPoolHandle& this_cp, Klass* k, TRAPS) { |
48826 | 686 |
if (!(k->is_instance_klass() || k->is_objArray_klass())) { |
687 |
return; // short cut, typeArray klass is always accessible |
|
1 | 688 |
} |
48826 | 689 |
Klass* holder = this_cp->pool_holder(); |
690 |
bool fold_type_to_class = true; |
|
691 |
LinkResolver::check_klass_accessability(holder, k, fold_type_to_class, CHECK); |
|
1 | 692 |
} |
693 |
||
694 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
695 |
int ConstantPool::name_ref_index_at(int which_nt) { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
696 |
jint ref_index = name_and_type_at(which_nt); |
1 | 697 |
return extract_low_short_from_int(ref_index); |
698 |
} |
|
699 |
||
700 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
701 |
int ConstantPool::signature_ref_index_at(int which_nt) { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2105
diff
changeset
|
702 |
jint ref_index = name_and_type_at(which_nt); |
1 | 703 |
return extract_high_short_from_int(ref_index); |
704 |
} |
|
705 |
||
706 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
707 |
Klass* ConstantPool::klass_ref_at(int which, TRAPS) { |
27680
8ecc0871c18e
8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents:
27408
diff
changeset
|
708 |
return klass_at(klass_ref_index_at(which), THREAD); |
1 | 709 |
} |
710 |
||
34666 | 711 |
Symbol* ConstantPool::klass_name_at(int which) const { |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
712 |
return symbol_at(klass_slot_at(which).name_index()); |
1 | 713 |
} |
714 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
715 |
Symbol* ConstantPool::klass_ref_at_noresolve(int which) { |
1 | 716 |
jint ref_index = klass_ref_index_at(which); |
717 |
return klass_at_noresolve(ref_index); |
|
718 |
} |
|
719 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
720 |
Symbol* ConstantPool::uncached_klass_ref_at_noresolve(int which) { |
5882 | 721 |
jint ref_index = uncached_klass_ref_index_at(which); |
722 |
return klass_at_noresolve(ref_index); |
|
723 |
} |
|
724 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
725 |
char* ConstantPool::string_at_noresolve(int which) { |
28741
1f10b1bd612d
8008678: JSR 292: constant pool reconstitution must support pseudo strings
sspitsyn
parents:
27680
diff
changeset
|
726 |
return unresolved_string_at(which)->as_C_string(); |
1 | 727 |
} |
728 |
||
34666 | 729 |
BasicType ConstantPool::basic_type_for_signature_at(int which) const { |
1 | 730 |
return FieldType::basic_type(symbol_at(which)); |
731 |
} |
|
732 |
||
733 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
734 |
void ConstantPool::resolve_string_constants_impl(const constantPoolHandle& this_cp, TRAPS) { |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
735 |
for (int index = 1; index < this_cp->length(); index++) { // Index 0 is unused |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
736 |
if (this_cp->tag_at(index).is_string()) { |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
737 |
this_cp->string_at(index, CHECK); |
1 | 738 |
} |
739 |
} |
|
740 |
} |
|
741 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
742 |
Symbol* ConstantPool::exception_message(const constantPoolHandle& this_cp, int which, constantTag tag, oop pending_exception) { |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
743 |
// Dig out the detailed message to reuse if possible |
25624
b3bd733f04e9
8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
25325
diff
changeset
|
744 |
Symbol* message = java_lang_Throwable::detail_message(pending_exception); |
b3bd733f04e9
8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
25325
diff
changeset
|
745 |
if (message != NULL) { |
b3bd733f04e9
8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
25325
diff
changeset
|
746 |
return message; |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
747 |
} |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
748 |
|
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
749 |
// Return specific message for the tag |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
750 |
switch (tag.value()) { |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
751 |
case JVM_CONSTANT_UnresolvedClass: |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
752 |
// return the class name in the error message |
25325 | 753 |
message = this_cp->klass_name_at(which); |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
754 |
break; |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
755 |
case JVM_CONSTANT_MethodHandle: |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
756 |
// return the method handle name in the error message |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
757 |
message = this_cp->method_handle_name_ref_at(which); |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
758 |
break; |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
759 |
case JVM_CONSTANT_MethodType: |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
760 |
// return the method type signature in the error message |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
761 |
message = this_cp->method_type_signature_at(which); |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
762 |
break; |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
763 |
default: |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
764 |
ShouldNotReachHere(); |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
765 |
} |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
766 |
|
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
767 |
return message; |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
768 |
} |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
769 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
770 |
void ConstantPool::throw_resolution_error(const constantPoolHandle& this_cp, int which, TRAPS) { |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
771 |
Symbol* message = NULL; |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
772 |
Symbol* error = SystemDictionary::find_resolution_error(this_cp, which, &message); |
51486
67b55f3c45eb
8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents:
51444
diff
changeset
|
773 |
assert(error != NULL, "checking"); |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
774 |
CLEAR_PENDING_EXCEPTION; |
51486
67b55f3c45eb
8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents:
51444
diff
changeset
|
775 |
if (message != NULL) { |
67b55f3c45eb
8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents:
51444
diff
changeset
|
776 |
ResourceMark rm; |
67b55f3c45eb
8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents:
51444
diff
changeset
|
777 |
THROW_MSG(error, message->as_C_string()); |
67b55f3c45eb
8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents:
51444
diff
changeset
|
778 |
} else { |
67b55f3c45eb
8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents:
51444
diff
changeset
|
779 |
THROW(error); |
67b55f3c45eb
8208172: SIGSEGV when owner of invokedynamic bootstrap method throws an exception - Symbol::increment_refcount()+0x0
coleenp
parents:
51444
diff
changeset
|
780 |
} |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
781 |
} |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
782 |
|
48826 | 783 |
// If resolution for Class, Dynamic constant, MethodHandle or MethodType fails, save the |
784 |
// exception in the resolution error table, so that the same exception is thrown again. |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
785 |
void ConstantPool::save_and_throw_exception(const constantPoolHandle& this_cp, int which, |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
786 |
constantTag tag, TRAPS) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
787 |
Symbol* error = PENDING_EXCEPTION->klass()->name(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
788 |
|
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
789 |
int error_tag = tag.error_value(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
790 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
791 |
if (!PENDING_EXCEPTION-> |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
792 |
is_a(SystemDictionary::LinkageError_klass())) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
793 |
// Just throw the exception and don't prevent these classes from |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
794 |
// being loaded due to virtual machine errors like StackOverflow |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
795 |
// and OutOfMemoryError, etc, or if the thread was hit by stop() |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
796 |
// Needs clarification to section 5.4.3 of the VM spec (see 6308271) |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
797 |
} else if (this_cp->tag_at(which).value() != error_tag) { |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
798 |
Symbol* message = exception_message(this_cp, which, tag, PENDING_EXCEPTION); |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
799 |
SystemDictionary::add_resolution_error(this_cp, which, error, message); |
25325 | 800 |
// CAS in the tag. If a thread beat us to registering this error that's fine. |
27408
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
801 |
// If another thread resolved the reference, this is a race condition. This |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
802 |
// thread may have had a security manager or something temporary. |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
803 |
// This doesn't deterministically get an error. So why do we save this? |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
804 |
// We save this because jvmti can add classes to the bootclass path after |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
805 |
// this error, so it needs to get the same error if the error is first. |
25325 | 806 |
jbyte old_tag = Atomic::cmpxchg((jbyte)error_tag, |
807 |
(jbyte*)this_cp->tag_addr_at(which), (jbyte)tag.value()); |
|
27408
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
808 |
if (old_tag != error_tag && old_tag != tag.value()) { |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
809 |
// MethodHandles and MethodType doesn't change to resolved version. |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
810 |
assert(this_cp->tag_at(which).is_klass(), "Wrong tag value"); |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
811 |
// Forget the exception and use the resolved class. |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
812 |
CLEAR_PENDING_EXCEPTION; |
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
813 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
814 |
} else { |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
815 |
// some other thread put this in error state |
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
816 |
throw_resolution_error(this_cp, which, CHECK); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
817 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
818 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
819 |
|
50971
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
820 |
constantTag ConstantPool::constant_tag_at(int which) { |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
821 |
constantTag tag = tag_at(which); |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
822 |
if (tag.is_dynamic_constant() || |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
823 |
tag.is_dynamic_constant_in_error()) { |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
824 |
// have to look at the signature for this one |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
825 |
Symbol* constant_type = uncached_signature_ref_at(which); |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
826 |
return constantTag::ofBasicType(FieldType::basic_type(constant_type)); |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
827 |
} |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
828 |
return tag; |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
829 |
} |
34872a21af82
8202769: jck test fails with C2: vm/jvmti/FollowReferences/fref001/fref00113/fref00113.html
psandoz
parents:
49658
diff
changeset
|
830 |
|
48826 | 831 |
BasicType ConstantPool::basic_type_for_constant_at(int which) { |
832 |
constantTag tag = tag_at(which); |
|
833 |
if (tag.is_dynamic_constant() || |
|
834 |
tag.is_dynamic_constant_in_error()) { |
|
835 |
// have to look at the signature for this one |
|
836 |
Symbol* constant_type = uncached_signature_ref_at(which); |
|
837 |
return FieldType::basic_type(constant_type); |
|
838 |
} |
|
839 |
return tag.basic_type(); |
|
840 |
} |
|
841 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
842 |
// Called to resolve constants in the constant pool and return an oop. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
843 |
// Some constant pool entries cache their resolved oop. This is also |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
844 |
// called to create oops from constants to use in arguments for invokedynamic |
48826 | 845 |
oop ConstantPool::resolve_constant_at_impl(const constantPoolHandle& this_cp, |
846 |
int index, int cache_index, |
|
847 |
bool* status_return, TRAPS) { |
|
5882 | 848 |
oop result_oop = NULL; |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
849 |
Handle throw_exception; |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
850 |
|
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
851 |
if (cache_index == _possible_index_sentinel) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
852 |
// It is possible that this constant is one which is cached in the objects. |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
853 |
// We'll do a linear search. This should be OK because this usage is rare. |
48826 | 854 |
// FIXME: If bootstrap specifiers stress this code, consider putting in |
855 |
// a reverse index. Binary search over a short array should do it. |
|
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
856 |
assert(index > 0, "valid index"); |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
857 |
cache_index = this_cp->cp_to_object_index(index); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
858 |
} |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
859 |
assert(cache_index == _no_index_sentinel || cache_index >= 0, ""); |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
860 |
assert(index == _no_index_sentinel || index >= 0, ""); |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
861 |
|
5882 | 862 |
if (cache_index >= 0) { |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
863 |
result_oop = this_cp->resolved_references()->obj_at(cache_index); |
5882 | 864 |
if (result_oop != NULL) { |
49658 | 865 |
if (oopDesc::equals(result_oop, Universe::the_null_sentinel())) { |
48826 | 866 |
DEBUG_ONLY(int temp_index = (index >= 0 ? index : this_cp->object_to_cp_index(cache_index))); |
867 |
assert(this_cp->tag_at(temp_index).is_dynamic_constant(), "only condy uses the null sentinel"); |
|
868 |
result_oop = NULL; |
|
869 |
} |
|
870 |
if (status_return != NULL) (*status_return) = true; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
871 |
return result_oop; |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
872 |
// That was easy... |
5882 | 873 |
} |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
874 |
index = this_cp->object_to_cp_index(cache_index); |
5882 | 875 |
} |
876 |
||
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
877 |
jvalue prim_value; // temp used only in a few cases below |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
878 |
|
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
879 |
constantTag tag = this_cp->tag_at(index); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
880 |
|
48826 | 881 |
if (status_return != NULL) { |
882 |
// don't trigger resolution if the constant might need it |
|
883 |
switch (tag.value()) { |
|
884 |
case JVM_CONSTANT_Class: |
|
885 |
{ |
|
886 |
CPKlassSlot kslot = this_cp->klass_slot_at(index); |
|
887 |
int resolved_klass_index = kslot.resolved_klass_index(); |
|
888 |
if (this_cp->resolved_klasses()->at(resolved_klass_index) == NULL) { |
|
889 |
(*status_return) = false; |
|
890 |
return NULL; |
|
891 |
} |
|
892 |
// the klass is waiting in the CP; go get it |
|
893 |
break; |
|
894 |
} |
|
895 |
case JVM_CONSTANT_String: |
|
896 |
case JVM_CONSTANT_Integer: |
|
897 |
case JVM_CONSTANT_Float: |
|
898 |
case JVM_CONSTANT_Long: |
|
899 |
case JVM_CONSTANT_Double: |
|
900 |
// these guys trigger OOM at worst |
|
901 |
break; |
|
902 |
default: |
|
903 |
(*status_return) = false; |
|
904 |
return NULL; |
|
905 |
} |
|
906 |
// from now on there is either success or an OOME |
|
907 |
(*status_return) = true; |
|
908 |
} |
|
909 |
||
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
910 |
switch (tag.value()) { |
5882 | 911 |
|
912 |
case JVM_CONSTANT_UnresolvedClass: |
|
913 |
case JVM_CONSTANT_UnresolvedClassInError: |
|
914 |
case JVM_CONSTANT_Class: |
|
915 |
{ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
916 |
assert(cache_index == _no_index_sentinel, "should not have been set"); |
27408
9a8090dd6ec3
8058093: Test nsk/stress/jck60/jck60014: assert in src/share/vm/oops/constantPool.cpp: should not be resolved otherwise
coleenp
parents:
27247
diff
changeset
|
917 |
Klass* resolved = klass_at_impl(this_cp, index, true, CHECK_NULL); |
5882 | 918 |
// ldc wants the java mirror. |
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8651
diff
changeset
|
919 |
result_oop = resolved->java_mirror(); |
5882 | 920 |
break; |
921 |
} |
|
922 |
||
48826 | 923 |
case JVM_CONSTANT_Dynamic: |
924 |
{ |
|
925 |
Klass* current_klass = this_cp->pool_holder(); |
|
926 |
Symbol* constant_name = this_cp->uncached_name_ref_at(index); |
|
927 |
Symbol* constant_type = this_cp->uncached_signature_ref_at(index); |
|
928 |
||
929 |
// The initial step in resolving an unresolved symbolic reference to a |
|
930 |
// dynamically-computed constant is to resolve the symbolic reference to a |
|
931 |
// method handle which will be the bootstrap method for the dynamically-computed |
|
932 |
// constant. If resolution of the java.lang.invoke.MethodHandle for the bootstrap |
|
933 |
// method fails, then a MethodHandleInError is stored at the corresponding |
|
934 |
// bootstrap method's CP index for the CONSTANT_MethodHandle_info. No need to |
|
935 |
// set a DynamicConstantInError here since any subsequent use of this |
|
936 |
// bootstrap method will encounter the resolution of MethodHandleInError. |
|
937 |
oop bsm_info = this_cp->resolve_bootstrap_specifier_at(index, THREAD); |
|
938 |
Exceptions::wrap_dynamic_exception(CHECK_NULL); |
|
939 |
assert(bsm_info != NULL, ""); |
|
940 |
// FIXME: Cache this once per BootstrapMethods entry, not once per CONSTANT_Dynamic. |
|
941 |
Handle bootstrap_specifier = Handle(THREAD, bsm_info); |
|
942 |
||
943 |
// Resolve the Dynamically-Computed constant to invoke the BSM in order to obtain the resulting oop. |
|
944 |
Handle value = SystemDictionary::link_dynamic_constant(current_klass, |
|
945 |
index, |
|
946 |
bootstrap_specifier, |
|
947 |
constant_name, |
|
948 |
constant_type, |
|
949 |
THREAD); |
|
950 |
result_oop = value(); |
|
951 |
Exceptions::wrap_dynamic_exception(THREAD); |
|
952 |
if (HAS_PENDING_EXCEPTION) { |
|
953 |
// Resolution failure of the dynamically-computed constant, save_and_throw_exception |
|
954 |
// will check for a LinkageError and store a DynamicConstantInError. |
|
955 |
save_and_throw_exception(this_cp, index, tag, CHECK_NULL); |
|
956 |
} |
|
957 |
BasicType type = FieldType::basic_type(constant_type); |
|
958 |
if (!is_reference_type(type)) { |
|
959 |
// Make sure the primitive value is properly boxed. |
|
960 |
// This is a JDK responsibility. |
|
961 |
const char* fail = NULL; |
|
962 |
if (result_oop == NULL) { |
|
963 |
fail = "null result instead of box"; |
|
964 |
} else if (!is_java_primitive(type)) { |
|
965 |
// FIXME: support value types via unboxing |
|
966 |
fail = "can only handle references and primitives"; |
|
967 |
} else if (!java_lang_boxing_object::is_instance(result_oop, type)) { |
|
968 |
fail = "primitive is not properly boxed"; |
|
969 |
} |
|
970 |
if (fail != NULL) { |
|
971 |
// Since this exception is not a LinkageError, throw exception |
|
972 |
// but do not save a DynamicInError resolution result. |
|
973 |
// See section 5.4.3 of the VM spec. |
|
974 |
THROW_MSG_NULL(vmSymbols::java_lang_InternalError(), fail); |
|
975 |
} |
|
976 |
} |
|
977 |
break; |
|
978 |
} |
|
979 |
||
5882 | 980 |
case JVM_CONSTANT_String: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
981 |
assert(cache_index != _no_index_sentinel, "should have been set"); |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
982 |
if (this_cp->is_pseudo_string_at(index)) { |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
983 |
result_oop = this_cp->pseudo_string_at(index, cache_index); |
5882 | 984 |
break; |
985 |
} |
|
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
986 |
result_oop = string_at_impl(this_cp, index, cache_index, CHECK_NULL); |
5882 | 987 |
break; |
988 |
||
48826 | 989 |
case JVM_CONSTANT_DynamicInError: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
990 |
case JVM_CONSTANT_MethodHandleInError: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
991 |
case JVM_CONSTANT_MethodTypeInError: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
992 |
{ |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
993 |
throw_resolution_error(this_cp, index, CHECK_NULL); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
994 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
995 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
996 |
|
5882 | 997 |
case JVM_CONSTANT_MethodHandle: |
998 |
{ |
|
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
999 |
int ref_kind = this_cp->method_handle_ref_kind_at(index); |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1000 |
int callee_index = this_cp->method_handle_klass_index_at(index); |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1001 |
Symbol* name = this_cp->method_handle_name_ref_at(index); |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1002 |
Symbol* signature = this_cp->method_handle_signature_ref_at(index); |
38719
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
1003 |
constantTag m_tag = this_cp->tag_at(this_cp->method_handle_index_at(index)); |
37451
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
1004 |
{ ResourceMark rm(THREAD); |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37475
diff
changeset
|
1005 |
log_debug(class, resolve)("resolve JVM_CONSTANT_MethodHandle:%d [%d/%d/%d] %s.%s", |
37451
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
1006 |
ref_kind, index, this_cp->method_handle_index_at(index), |
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
1007 |
callee_index, name->as_C_string(), signature->as_C_string()); |
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
1008 |
} |
39398
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1009 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
1010 |
Klass* callee = klass_at_impl(this_cp, callee_index, true, CHECK_NULL); |
39398
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1011 |
|
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1012 |
// Check constant pool method consistency |
38719
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
1013 |
if ((callee->is_interface() && m_tag.is_method()) || |
39398
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1014 |
((!callee->is_interface() && m_tag.is_interface_method()))) { |
38719
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
1015 |
ResourceMark rm(THREAD); |
39398
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1016 |
char buf[400]; |
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1017 |
jio_snprintf(buf, sizeof(buf), |
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1018 |
"Inconsistent constant pool data in classfile for class %s. " |
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1019 |
"Method %s%s at index %d is %s and should be %s", |
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1020 |
callee->name()->as_C_string(), name->as_C_string(), signature->as_C_string(), index, |
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1021 |
callee->is_interface() ? "CONSTANT_MethodRef" : "CONSTANT_InterfaceMethodRef", |
16b3ed4012f8
8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
38719
diff
changeset
|
1022 |
callee->is_interface() ? "CONSTANT_InterfaceMethodRef" : "CONSTANT_MethodRef"); |
38719
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
1023 |
THROW_MSG_NULL(vmSymbols::java_lang_IncompatibleClassChangeError(), buf); |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
1024 |
} |
133bf85c3f36
8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents:
38658
diff
changeset
|
1025 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
1026 |
Klass* klass = this_cp->pool_holder(); |
5882 | 1027 |
Handle value = SystemDictionary::link_method_handle_constant(klass, ref_kind, |
1028 |
callee, name, signature, |
|
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1029 |
THREAD); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1030 |
result_oop = value(); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1031 |
if (HAS_PENDING_EXCEPTION) { |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
1032 |
save_and_throw_exception(this_cp, index, tag, CHECK_NULL); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1033 |
} |
5882 | 1034 |
break; |
1035 |
} |
|
1036 |
||
1037 |
case JVM_CONSTANT_MethodType: |
|
1038 |
{ |
|
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1039 |
Symbol* signature = this_cp->method_type_signature_at(index); |
37451
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
1040 |
{ ResourceMark rm(THREAD); |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37475
diff
changeset
|
1041 |
log_debug(class, resolve)("resolve JVM_CONSTANT_MethodType [%d/%d] %s", |
37451
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
1042 |
index, this_cp->method_type_index_at(index), |
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
1043 |
signature->as_C_string()); |
ab07c0e0b05c
8152468: PrintMiscellaneous in constantPool should use classresolve logging.
mockner
parents:
37248
diff
changeset
|
1044 |
} |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
1045 |
Klass* klass = this_cp->pool_holder(); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1046 |
Handle value = SystemDictionary::find_method_handle_type(signature, klass, THREAD); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1047 |
result_oop = value(); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1048 |
if (HAS_PENDING_EXCEPTION) { |
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
1049 |
save_and_throw_exception(this_cp, index, tag, CHECK_NULL); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1050 |
} |
5882 | 1051 |
break; |
1052 |
} |
|
1053 |
||
1054 |
case JVM_CONSTANT_Integer: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1055 |
assert(cache_index == _no_index_sentinel, "should not have been set"); |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1056 |
prim_value.i = this_cp->int_at(index); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1057 |
result_oop = java_lang_boxing_object::create(T_INT, &prim_value, CHECK_NULL); |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1058 |
break; |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1059 |
|
5882 | 1060 |
case JVM_CONSTANT_Float: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1061 |
assert(cache_index == _no_index_sentinel, "should not have been set"); |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1062 |
prim_value.f = this_cp->float_at(index); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1063 |
result_oop = java_lang_boxing_object::create(T_FLOAT, &prim_value, CHECK_NULL); |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1064 |
break; |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1065 |
|
5882 | 1066 |
case JVM_CONSTANT_Long: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1067 |
assert(cache_index == _no_index_sentinel, "should not have been set"); |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1068 |
prim_value.j = this_cp->long_at(index); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1069 |
result_oop = java_lang_boxing_object::create(T_LONG, &prim_value, CHECK_NULL); |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1070 |
break; |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1071 |
|
5882 | 1072 |
case JVM_CONSTANT_Double: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1073 |
assert(cache_index == _no_index_sentinel, "should not have been set"); |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1074 |
prim_value.d = this_cp->double_at(index); |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1075 |
result_oop = java_lang_boxing_object::create(T_DOUBLE, &prim_value, CHECK_NULL); |
5882 | 1076 |
break; |
1077 |
||
1078 |
default: |
|
1079 |
DEBUG_ONLY( tty->print_cr("*** %p: tag at CP[%d/%d] = %d", |
|
24334
36096f7271f4
8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents:
23872
diff
changeset
|
1080 |
this_cp(), index, cache_index, tag.value())); |
5882 | 1081 |
assert(false, "unexpected constant tag"); |
1082 |
break; |
|
1083 |
} |
|
1084 |
||
1085 |
if (cache_index >= 0) { |
|
25325 | 1086 |
// Benign race condition: resolved_references may already be filled in. |
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1087 |
// The important thing here is that all threads pick up the same result. |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1088 |
// It doesn't matter which racing thread wins, as long as only one |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
1089 |
// result is used by all threads, and all future queries. |
48826 | 1090 |
oop new_result = (result_oop == NULL ? Universe::the_null_sentinel() : result_oop); |
1091 |
oop old_result = this_cp->resolved_references() |
|
1092 |
->atomic_compare_exchange_oop(cache_index, new_result, NULL); |
|
25325 | 1093 |
if (old_result == NULL) { |
1094 |
return result_oop; // was installed |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1095 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1096 |
// Return the winning thread's result. This can be different than |
25325 | 1097 |
// the result here for MethodHandles. |
49658 | 1098 |
if (oopDesc::equals(old_result, Universe::the_null_sentinel())) |
48826 | 1099 |
old_result = NULL; |
25325 | 1100 |
return old_result; |
5882 | 1101 |
} |
1102 |
} else { |
|
49658 | 1103 |
assert(!oopDesc::equals(result_oop, Universe::the_null_sentinel()), ""); |
5882 | 1104 |
return result_oop; |
1105 |
} |
|
1106 |
} |
|
1107 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1108 |
oop ConstantPool::uncached_string_at(int which, TRAPS) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1109 |
Symbol* sym = unresolved_string_at(which); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1110 |
oop str = StringTable::intern(sym, CHECK_(NULL)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1111 |
assert(java_lang_String::is_instance(str), "must be string"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1112 |
return str; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1113 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1114 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1115 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1116 |
oop ConstantPool::resolve_bootstrap_specifier_at_impl(const constantPoolHandle& this_cp, int index, TRAPS) { |
48826 | 1117 |
assert((this_cp->tag_at(index).is_invoke_dynamic() || |
1118 |
this_cp->tag_at(index).is_dynamic_constant()), "Corrupted constant pool"); |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1119 |
Handle bsm; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1120 |
int argc; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1121 |
{ |
48826 | 1122 |
// JVM_CONSTANT_InvokeDynamic is an ordered pair of [bootm, name&mtype], plus optional arguments |
1123 |
// JVM_CONSTANT_Dynamic is an ordered pair of [bootm, name&ftype], plus optional arguments |
|
1124 |
// In both cases, the bootm, being a JVM_CONSTANT_MethodHandle, has its own cache entry. |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1125 |
// It is accompanied by the optional arguments. |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1126 |
int bsm_index = this_cp->invoke_dynamic_bootstrap_method_ref_index_at(index); |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1127 |
oop bsm_oop = this_cp->resolve_possibly_cached_constant_at(bsm_index, CHECK_NULL); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1128 |
if (!java_lang_invoke_MethodHandle::is_instance(bsm_oop)) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1129 |
THROW_MSG_NULL(vmSymbols::java_lang_LinkageError(), "BSM not an MethodHandle"); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1130 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1131 |
|
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1132 |
// Extract the optional static arguments. |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1133 |
argc = this_cp->invoke_dynamic_argument_count_at(index); |
48826 | 1134 |
|
1135 |
// if there are no static arguments, return the bsm by itself: |
|
1136 |
if (argc == 0 && UseBootstrapCallInfo < 2) return bsm_oop; |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1137 |
|
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1138 |
bsm = Handle(THREAD, bsm_oop); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1139 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1140 |
|
48826 | 1141 |
// We are going to return an ordered pair of {bsm, info}, using a 2-array. |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1142 |
objArrayHandle info; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1143 |
{ |
48826 | 1144 |
objArrayOop info_oop = oopFactory::new_objArray(SystemDictionary::Object_klass(), 2, CHECK_NULL); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1145 |
info = objArrayHandle(THREAD, info_oop); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1146 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1147 |
|
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1148 |
info->obj_at_put(0, bsm()); |
48826 | 1149 |
|
1150 |
bool use_BSCI; |
|
1151 |
switch (UseBootstrapCallInfo) { |
|
1152 |
default: use_BSCI = true; break; // stress mode |
|
1153 |
case 0: use_BSCI = false; break; // stress mode |
|
1154 |
case 1: // normal mode |
|
1155 |
// If we were to support an alternative mode of BSM invocation, |
|
1156 |
// we'd convert to pull mode here if the BSM could be a candidate |
|
1157 |
// for that alternative mode. We can't easily test for things |
|
1158 |
// like varargs here, but we can get away with approximate testing, |
|
1159 |
// since the JDK runtime will make up the difference either way. |
|
1160 |
// For now, exercise the pull-mode path if the BSM is of arity 2, |
|
1161 |
// or if there is a potential condy loop (see below). |
|
1162 |
oop mt_oop = java_lang_invoke_MethodHandle::type(bsm()); |
|
1163 |
use_BSCI = (java_lang_invoke_MethodType::ptype_count(mt_oop) == 2); |
|
1164 |
break; |
|
1165 |
} |
|
1166 |
||
1167 |
// Here's a reason to use BSCI even if it wasn't requested: |
|
1168 |
// If a condy uses a condy argument, we want to avoid infinite |
|
1169 |
// recursion (condy loops) in the C code. It's OK in Java, |
|
1170 |
// because Java has stack overflow checking, so we punt |
|
1171 |
// potentially cyclic cases from C to Java. |
|
1172 |
if (!use_BSCI && this_cp->tag_at(index).is_dynamic_constant()) { |
|
1173 |
bool found_unresolved_condy = false; |
|
1174 |
for (int i = 0; i < argc; i++) { |
|
1175 |
int arg_index = this_cp->invoke_dynamic_argument_index_at(index, i); |
|
1176 |
if (this_cp->tag_at(arg_index).is_dynamic_constant()) { |
|
1177 |
// potential recursion point condy -> condy |
|
1178 |
bool found_it = false; |
|
1179 |
this_cp->find_cached_constant_at(arg_index, found_it, CHECK_NULL); |
|
1180 |
if (!found_it) { found_unresolved_condy = true; break; } |
|
1181 |
} |
|
1182 |
} |
|
1183 |
if (found_unresolved_condy) |
|
1184 |
use_BSCI = true; |
|
1185 |
} |
|
1186 |
||
1187 |
const int SMALL_ARITY = 5; |
|
1188 |
if (use_BSCI && argc <= SMALL_ARITY && UseBootstrapCallInfo <= 2) { |
|
1189 |
// If there are only a few arguments, and none of them need linking, |
|
1190 |
// push them, instead of asking the JDK runtime to turn around and |
|
1191 |
// pull them, saving a JVM/JDK transition in some simple cases. |
|
1192 |
bool all_resolved = true; |
|
1193 |
for (int i = 0; i < argc; i++) { |
|
1194 |
bool found_it = false; |
|
1195 |
int arg_index = this_cp->invoke_dynamic_argument_index_at(index, i); |
|
1196 |
this_cp->find_cached_constant_at(arg_index, found_it, CHECK_NULL); |
|
1197 |
if (!found_it) { all_resolved = false; break; } |
|
1198 |
} |
|
1199 |
if (all_resolved) |
|
1200 |
use_BSCI = false; |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1201 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1202 |
|
48826 | 1203 |
if (!use_BSCI) { |
1204 |
// return {bsm, {arg...}}; resolution of arguments is done immediately, before JDK code is called |
|
1205 |
objArrayOop args_oop = oopFactory::new_objArray(SystemDictionary::Object_klass(), argc, CHECK_NULL); |
|
1206 |
info->obj_at_put(1, args_oop); // may overwrite with args[0] below |
|
1207 |
objArrayHandle args(THREAD, args_oop); |
|
1208 |
copy_bootstrap_arguments_at_impl(this_cp, index, 0, argc, args, 0, true, Handle(), CHECK_NULL); |
|
1209 |
if (argc == 1) { |
|
1210 |
// try to discard the singleton array |
|
1211 |
oop arg_oop = args->obj_at(0); |
|
1212 |
if (arg_oop != NULL && !arg_oop->is_array()) { |
|
1213 |
// JVM treats arrays and nulls specially in this position, |
|
1214 |
// but other things are just single arguments |
|
1215 |
info->obj_at_put(1, arg_oop); |
|
1216 |
} |
|
1217 |
} |
|
1218 |
} else { |
|
1219 |
// return {bsm, {arg_count, pool_index}}; JDK code must pull the arguments as needed |
|
1220 |
typeArrayOop ints_oop = oopFactory::new_typeArray(T_INT, 2, CHECK_NULL); |
|
1221 |
ints_oop->int_at_put(0, argc); |
|
1222 |
ints_oop->int_at_put(1, index); |
|
1223 |
info->obj_at_put(1, ints_oop); |
|
1224 |
} |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1225 |
return info(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1226 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11626
diff
changeset
|
1227 |
|
48826 | 1228 |
void ConstantPool::copy_bootstrap_arguments_at_impl(const constantPoolHandle& this_cp, int index, |
1229 |
int start_arg, int end_arg, |
|
1230 |
objArrayHandle info, int pos, |
|
1231 |
bool must_resolve, Handle if_not_available, |
|
1232 |
TRAPS) { |
|
1233 |
int argc; |
|
1234 |
int limit = pos + end_arg - start_arg; |
|
1235 |
// checks: index in range [0..this_cp->length), |
|
1236 |
// tag at index, start..end in range [0..argc], |
|
1237 |
// info array non-null, pos..limit in [0..info.length] |
|
1238 |
if ((0 >= index || index >= this_cp->length()) || |
|
1239 |
!(this_cp->tag_at(index).is_invoke_dynamic() || |
|
1240 |
this_cp->tag_at(index).is_dynamic_constant()) || |
|
1241 |
(0 > start_arg || start_arg > end_arg) || |
|
1242 |
(end_arg > (argc = this_cp->invoke_dynamic_argument_count_at(index))) || |
|
1243 |
(0 > pos || pos > limit) || |
|
1244 |
(info.is_null() || limit > info->length())) { |
|
1245 |
// An index or something else went wrong; throw an error. |
|
1246 |
// Since this is an internal API, we don't expect this, |
|
1247 |
// so we don't bother to craft a nice message. |
|
1248 |
THROW_MSG(vmSymbols::java_lang_LinkageError(), "bad BSM argument access"); |
|
1249 |
} |
|
1250 |
// now we can loop safely |
|
1251 |
int info_i = pos; |
|
1252 |
for (int i = start_arg; i < end_arg; i++) { |
|
1253 |
int arg_index = this_cp->invoke_dynamic_argument_index_at(index, i); |
|
1254 |
oop arg_oop; |
|
1255 |
if (must_resolve) { |
|
1256 |
arg_oop = this_cp->resolve_possibly_cached_constant_at(arg_index, CHECK); |
|
1257 |
} else { |
|
1258 |
bool found_it = false; |
|
1259 |
arg_oop = this_cp->find_cached_constant_at(arg_index, found_it, CHECK); |
|
1260 |
if (!found_it) arg_oop = if_not_available(); |
|
1261 |
} |
|
1262 |
info->obj_at_put(info_i++, arg_oop); |
|
1263 |
} |
|
1264 |
} |
|
1265 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1266 |
oop ConstantPool::string_at_impl(const constantPoolHandle& this_cp, int which, int obj_index, TRAPS) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1267 |
// If the string has already been interned, this entry will be non-null |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1268 |
oop str = this_cp->resolved_references()->obj_at(obj_index); |
49658 | 1269 |
assert(!oopDesc::equals(str, Universe::the_null_sentinel()), ""); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1270 |
if (str != NULL) return str; |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1271 |
Symbol* sym = this_cp->unresolved_string_at(which); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1272 |
str = StringTable::intern(sym, CHECK_(NULL)); |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
23175
diff
changeset
|
1273 |
this_cp->string_at_put(which, obj_index, str); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1274 |
assert(java_lang_String::is_instance(str), "must be string"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1275 |
return str; |
1 | 1276 |
} |
1277 |
||
1278 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
1279 |
bool ConstantPool::klass_name_at_matches(const InstanceKlass* k, int which) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1280 |
// Names are interned, so we can compare Symbol*s directly |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1281 |
Symbol* cp_name = klass_name_at(which); |
1 | 1282 |
return (cp_name == k->name()); |
1283 |
} |
|
1284 |
||
1285 |
||
25325 | 1286 |
// Iterate over symbols and decrement ones which are Symbol*s |
1287 |
// This is done during GC. |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
1288 |
// Only decrement the UTF8 symbols. Strings point to |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1289 |
// these symbols but didn't increment the reference count. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1290 |
void ConstantPool::unreference_symbols() { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1291 |
for (int index = 1; index < length(); index++) { // Index 0 is unused |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1292 |
constantTag tag = tag_at(index); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1293 |
if (tag.is_symbol()) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1294 |
symbol_at(index)->decrement_refcount(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1295 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1296 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1297 |
} |
1 | 1298 |
|
1299 |
||
1300 |
// Compare this constant pool's entry at index1 to the constant pool |
|
1301 |
// cp2's entry at index2. |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1302 |
bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2, |
1 | 1303 |
int index2, TRAPS) { |
1304 |
||
20677
ff4fc393de4c
8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents:
20672
diff
changeset
|
1305 |
// The error tags are equivalent to non-error tags when comparing |
ff4fc393de4c
8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents:
20672
diff
changeset
|
1306 |
jbyte t1 = tag_at(index1).non_error_value(); |
ff4fc393de4c
8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents:
20672
diff
changeset
|
1307 |
jbyte t2 = cp2->tag_at(index2).non_error_value(); |
1 | 1308 |
|
1309 |
if (t1 != t2) { |
|
1310 |
// Not the same entry type so there is nothing else to check. Note |
|
1311 |
// that this style of checking will consider resolved/unresolved |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1312 |
// class pairs as different. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1313 |
// From the ConstantPool* API point of view, this is correct |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1314 |
// behavior. See VM_RedefineClasses::merge_constant_pools() to see how this |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1315 |
// plays out in the context of ConstantPool* merging. |
1 | 1316 |
return false; |
1317 |
} |
|
1318 |
||
1319 |
switch (t1) { |
|
1320 |
case JVM_CONSTANT_Class: |
|
1321 |
{ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1322 |
Klass* k1 = klass_at(index1, CHECK_false); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1323 |
Klass* k2 = cp2->klass_at(index2, CHECK_false); |
1 | 1324 |
if (k1 == k2) { |
1325 |
return true; |
|
1326 |
} |
|
1327 |
} break; |
|
1328 |
||
1329 |
case JVM_CONSTANT_ClassIndex: |
|
1330 |
{ |
|
1331 |
int recur1 = klass_index_at(index1); |
|
1332 |
int recur2 = cp2->klass_index_at(index2); |
|
1333 |
bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false); |
|
1334 |
if (match) { |
|
1335 |
return true; |
|
1336 |
} |
|
1337 |
} break; |
|
1338 |
||
1339 |
case JVM_CONSTANT_Double: |
|
1340 |
{ |
|
1341 |
jdouble d1 = double_at(index1); |
|
1342 |
jdouble d2 = cp2->double_at(index2); |
|
1343 |
if (d1 == d2) { |
|
1344 |
return true; |
|
1345 |
} |
|
1346 |
} break; |
|
1347 |
||
1348 |
case JVM_CONSTANT_Fieldref: |
|
1349 |
case JVM_CONSTANT_InterfaceMethodref: |
|
1350 |
case JVM_CONSTANT_Methodref: |
|
1351 |
{ |
|
1352 |
int recur1 = uncached_klass_ref_index_at(index1); |
|
1353 |
int recur2 = cp2->uncached_klass_ref_index_at(index2); |
|
1354 |
bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false); |
|
1355 |
if (match) { |
|
1356 |
recur1 = uncached_name_and_type_ref_index_at(index1); |
|
1357 |
recur2 = cp2->uncached_name_and_type_ref_index_at(index2); |
|
1358 |
match = compare_entry_to(recur1, cp2, recur2, CHECK_false); |
|
1359 |
if (match) { |
|
1360 |
return true; |
|
1361 |
} |
|
1362 |
} |
|
1363 |
} break; |
|
1364 |
||
1365 |
case JVM_CONSTANT_Float: |
|
1366 |
{ |
|
1367 |
jfloat f1 = float_at(index1); |
|
1368 |
jfloat f2 = cp2->float_at(index2); |
|
1369 |
if (f1 == f2) { |
|
1370 |
return true; |
|
1371 |
} |
|
1372 |
} break; |
|
1373 |
||
1374 |
case JVM_CONSTANT_Integer: |
|
1375 |
{ |
|
1376 |
jint i1 = int_at(index1); |
|
1377 |
jint i2 = cp2->int_at(index2); |
|
1378 |
if (i1 == i2) { |
|
1379 |
return true; |
|
1380 |
} |
|
1381 |
} break; |
|
1382 |
||
1383 |
case JVM_CONSTANT_Long: |
|
1384 |
{ |
|
1385 |
jlong l1 = long_at(index1); |
|
1386 |
jlong l2 = cp2->long_at(index2); |
|
1387 |
if (l1 == l2) { |
|
1388 |
return true; |
|
1389 |
} |
|
1390 |
} break; |
|
1391 |
||
1392 |
case JVM_CONSTANT_NameAndType: |
|
1393 |
{ |
|
1394 |
int recur1 = name_ref_index_at(index1); |
|
1395 |
int recur2 = cp2->name_ref_index_at(index2); |
|
1396 |
bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false); |
|
1397 |
if (match) { |
|
1398 |
recur1 = signature_ref_index_at(index1); |
|
1399 |
recur2 = cp2->signature_ref_index_at(index2); |
|
1400 |
match = compare_entry_to(recur1, cp2, recur2, CHECK_false); |
|
1401 |
if (match) { |
|
1402 |
return true; |
|
1403 |
} |
|
1404 |
} |
|
1405 |
} break; |
|
1406 |
||
1407 |
case JVM_CONSTANT_StringIndex: |
|
1408 |
{ |
|
1409 |
int recur1 = string_index_at(index1); |
|
1410 |
int recur2 = cp2->string_index_at(index2); |
|
1411 |
bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false); |
|
1412 |
if (match) { |
|
1413 |
return true; |
|
1414 |
} |
|
1415 |
} break; |
|
1416 |
||
1417 |
case JVM_CONSTANT_UnresolvedClass: |
|
1418 |
{ |
|
25325 | 1419 |
Symbol* k1 = klass_name_at(index1); |
1420 |
Symbol* k2 = cp2->klass_name_at(index2); |
|
1 | 1421 |
if (k1 == k2) { |
1422 |
return true; |
|
1423 |
} |
|
1424 |
} break; |
|
1425 |
||
5882 | 1426 |
case JVM_CONSTANT_MethodType: |
1427 |
{ |
|
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1428 |
int k1 = method_type_index_at(index1); |
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1429 |
int k2 = cp2->method_type_index_at(index2); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1430 |
bool match = compare_entry_to(k1, cp2, k2, CHECK_false); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1431 |
if (match) { |
5882 | 1432 |
return true; |
1433 |
} |
|
1434 |
} break; |
|
1435 |
||
1436 |
case JVM_CONSTANT_MethodHandle: |
|
1437 |
{ |
|
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1438 |
int k1 = method_handle_ref_kind_at(index1); |
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1439 |
int k2 = cp2->method_handle_ref_kind_at(index2); |
5882 | 1440 |
if (k1 == k2) { |
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1441 |
int i1 = method_handle_index_at(index1); |
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1442 |
int i2 = cp2->method_handle_index_at(index2); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1443 |
bool match = compare_entry_to(i1, cp2, i2, CHECK_false); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1444 |
if (match) { |
5882 | 1445 |
return true; |
1446 |
} |
|
1447 |
} |
|
1448 |
} break; |
|
1449 |
||
48826 | 1450 |
case JVM_CONSTANT_Dynamic: |
1451 |
{ |
|
1452 |
int k1 = invoke_dynamic_name_and_type_ref_index_at(index1); |
|
1453 |
int k2 = cp2->invoke_dynamic_name_and_type_ref_index_at(index2); |
|
1454 |
int i1 = invoke_dynamic_bootstrap_specifier_index(index1); |
|
1455 |
int i2 = cp2->invoke_dynamic_bootstrap_specifier_index(index2); |
|
1456 |
// separate statements and variables because CHECK_false is used |
|
1457 |
bool match_entry = compare_entry_to(k1, cp2, k2, CHECK_false); |
|
1458 |
bool match_operand = compare_operand_to(i1, cp2, i2, CHECK_false); |
|
1459 |
return (match_entry && match_operand); |
|
1460 |
} break; |
|
1461 |
||
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
1462 |
case JVM_CONSTANT_InvokeDynamic: |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
1463 |
{ |
17077
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1464 |
int k1 = invoke_dynamic_name_and_type_ref_index_at(index1); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1465 |
int k2 = cp2->invoke_dynamic_name_and_type_ref_index_at(index2); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1466 |
int i1 = invoke_dynamic_bootstrap_specifier_index(index1); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1467 |
int i2 = cp2->invoke_dynamic_bootstrap_specifier_index(index2); |
17833 | 1468 |
// separate statements and variables because CHECK_false is used |
1469 |
bool match_entry = compare_entry_to(k1, cp2, k2, CHECK_false); |
|
1470 |
bool match_operand = compare_operand_to(i1, cp2, i2, CHECK_false); |
|
1471 |
return (match_entry && match_operand); |
|
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
1472 |
} break; |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
1473 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1474 |
case JVM_CONSTANT_String: |
1 | 1475 |
{ |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1476 |
Symbol* s1 = unresolved_string_at(index1); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1477 |
Symbol* s2 = cp2->unresolved_string_at(index2); |
1 | 1478 |
if (s1 == s2) { |
1479 |
return true; |
|
1480 |
} |
|
1481 |
} break; |
|
1482 |
||
1483 |
case JVM_CONSTANT_Utf8: |
|
1484 |
{ |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1485 |
Symbol* s1 = symbol_at(index1); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1486 |
Symbol* s2 = cp2->symbol_at(index2); |
1 | 1487 |
if (s1 == s2) { |
1488 |
return true; |
|
1489 |
} |
|
1490 |
} break; |
|
1491 |
||
1492 |
// Invalid is used as the tag for the second constant pool entry |
|
1493 |
// occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should |
|
1494 |
// not be seen by itself. |
|
1495 |
case JVM_CONSTANT_Invalid: // fall through |
|
1496 |
||
1497 |
default: |
|
1498 |
ShouldNotReachHere(); |
|
1499 |
break; |
|
1500 |
} |
|
1501 |
||
1502 |
return false; |
|
1503 |
} // end compare_entry_to() |
|
1504 |
||
1505 |
||
17077
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1506 |
// Resize the operands array with delta_len and delta_size. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1507 |
// Used in RedefineClasses for CP merge. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1508 |
void ConstantPool::resize_operands(int delta_len, int delta_size, TRAPS) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1509 |
int old_len = operand_array_length(operands()); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1510 |
int new_len = old_len + delta_len; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1511 |
int min_len = (delta_len > 0) ? old_len : new_len; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1512 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1513 |
int old_size = operands()->length(); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1514 |
int new_size = old_size + delta_size; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1515 |
int min_size = (delta_size > 0) ? old_size : new_size; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1516 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1517 |
ClassLoaderData* loader_data = pool_holder()->class_loader_data(); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1518 |
Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, new_size, CHECK); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1519 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1520 |
// Set index in the resized array for existing elements only |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1521 |
for (int idx = 0; idx < min_len; idx++) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1522 |
int offset = operand_offset_at(idx); // offset in original array |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1523 |
operand_offset_at_put(new_ops, idx, offset + 2*delta_len); // offset in resized array |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1524 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1525 |
// Copy the bootstrap specifiers only |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1526 |
Copy::conjoint_memory_atomic(operands()->adr_at(2*old_len), |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1527 |
new_ops->adr_at(2*new_len), |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1528 |
(min_size - 2*min_len) * sizeof(u2)); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1529 |
// Explicitly deallocate old operands array. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1530 |
// Note, it is not needed for 7u backport. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1531 |
if ( operands() != NULL) { // the safety check |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1532 |
MetadataFactory::free_array<u2>(loader_data, operands()); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1533 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1534 |
set_operands(new_ops); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1535 |
} // end resize_operands() |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1536 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1537 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1538 |
// Extend the operands array with the length and size of the ext_cp operands. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1539 |
// Used in RedefineClasses for CP merge. |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1540 |
void ConstantPool::extend_operands(const constantPoolHandle& ext_cp, TRAPS) { |
17077
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1541 |
int delta_len = operand_array_length(ext_cp->operands()); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1542 |
if (delta_len == 0) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1543 |
return; // nothing to do |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1544 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1545 |
int delta_size = ext_cp->operands()->length(); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1546 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1547 |
assert(delta_len > 0 && delta_size > 0, "extended operands array must be bigger"); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1548 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1549 |
if (operand_array_length(operands()) == 0) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1550 |
ClassLoaderData* loader_data = pool_holder()->class_loader_data(); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1551 |
Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, delta_size, CHECK); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1552 |
// The first element index defines the offset of second part |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1553 |
operand_offset_at_put(new_ops, 0, 2*delta_len); // offset in new array |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1554 |
set_operands(new_ops); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1555 |
} else { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1556 |
resize_operands(delta_len, delta_size, CHECK); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1557 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1558 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1559 |
} // end extend_operands() |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1560 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1561 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1562 |
// Shrink the operands array to a smaller array with new_len length. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1563 |
// Used in RedefineClasses for CP merge. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1564 |
void ConstantPool::shrink_operands(int new_len, TRAPS) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1565 |
int old_len = operand_array_length(operands()); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1566 |
if (new_len == old_len) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1567 |
return; // nothing to do |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1568 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1569 |
assert(new_len < old_len, "shrunken operands array must be smaller"); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1570 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1571 |
int free_base = operand_next_offset_at(new_len - 1); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1572 |
int delta_len = new_len - old_len; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1573 |
int delta_size = 2*delta_len + free_base - operands()->length(); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1574 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1575 |
resize_operands(delta_len, delta_size, CHECK); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1576 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1577 |
} // end shrink_operands() |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1578 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1579 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1580 |
void ConstantPool::copy_operands(const constantPoolHandle& from_cp, |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1581 |
const constantPoolHandle& to_cp, |
15433
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1582 |
TRAPS) { |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1583 |
|
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1584 |
int from_oplen = operand_array_length(from_cp->operands()); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1585 |
int old_oplen = operand_array_length(to_cp->operands()); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1586 |
if (from_oplen != 0) { |
14385 | 1587 |
ClassLoaderData* loader_data = to_cp->pool_holder()->class_loader_data(); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1588 |
// append my operands to the target's operands array |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1589 |
if (old_oplen == 0) { |
14385 | 1590 |
// Can't just reuse from_cp's operand list because of deallocation issues |
1591 |
int len = from_cp->operands()->length(); |
|
1592 |
Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, len, CHECK); |
|
1593 |
Copy::conjoint_memory_atomic( |
|
1594 |
from_cp->operands()->adr_at(0), new_ops->adr_at(0), len * sizeof(u2)); |
|
1595 |
to_cp->set_operands(new_ops); |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1596 |
} else { |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1597 |
int old_len = to_cp->operands()->length(); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1598 |
int from_len = from_cp->operands()->length(); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1599 |
int old_off = old_oplen * sizeof(u2); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1600 |
int from_off = from_oplen * sizeof(u2); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1601 |
// Use the metaspace for the destination constant pool |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1602 |
Array<u2>* new_operands = MetadataFactory::new_array<u2>(loader_data, old_len + from_len, CHECK); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1603 |
int fillp = 0, len = 0; |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1604 |
// first part of dest |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1605 |
Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(0), |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1606 |
new_operands->adr_at(fillp), |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1607 |
(len = old_off) * sizeof(u2)); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1608 |
fillp += len; |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1609 |
// first part of src |
15445
3a166138739c
8006546: JSR 292: typos in the ConstantPool::copy_cp_impl()
sspitsyn
parents:
15438
diff
changeset
|
1610 |
Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(0), |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1611 |
new_operands->adr_at(fillp), |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1612 |
(len = from_off) * sizeof(u2)); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1613 |
fillp += len; |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1614 |
// second part of dest |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1615 |
Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(old_off), |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1616 |
new_operands->adr_at(fillp), |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1617 |
(len = old_len - old_off) * sizeof(u2)); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1618 |
fillp += len; |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1619 |
// second part of src |
15445
3a166138739c
8006546: JSR 292: typos in the ConstantPool::copy_cp_impl()
sspitsyn
parents:
15438
diff
changeset
|
1620 |
Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(from_off), |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1621 |
new_operands->adr_at(fillp), |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1622 |
(len = from_len - from_off) * sizeof(u2)); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1623 |
fillp += len; |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1624 |
assert(fillp == new_operands->length(), ""); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1625 |
|
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1626 |
// Adjust indexes in the first part of the copied operands array. |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1627 |
for (int j = 0; j < from_oplen; j++) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1628 |
int offset = operand_offset_at(new_operands, old_oplen + j); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1629 |
assert(offset == operand_offset_at(from_cp->operands(), j), "correct copy"); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1630 |
offset += old_len; // every new tuple is preceded by old_len extra u2's |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1631 |
operand_offset_at_put(new_operands, old_oplen + j, offset); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1632 |
} |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1633 |
|
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1634 |
// replace target operands array with combined array |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1635 |
to_cp->set_operands(new_operands); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1636 |
} |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1637 |
} |
15433
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1638 |
} // end copy_operands() |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1639 |
|
15433
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1640 |
|
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1641 |
// Copy this constant pool's entries at start_i to end_i (inclusive) |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1642 |
// to the constant pool to_cp's entries starting at to_i. A total of |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1643 |
// (end_i - start_i) + 1 entries are copied. |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1644 |
void ConstantPool::copy_cp_to_impl(const constantPoolHandle& from_cp, int start_i, int end_i, |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1645 |
const constantPoolHandle& to_cp, int to_i, TRAPS) { |
15433
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1646 |
|
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1647 |
|
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1648 |
int dest_i = to_i; // leave original alone for debug purposes |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1649 |
|
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1650 |
for (int src_i = start_i; src_i <= end_i; /* see loop bottom */ ) { |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1651 |
copy_entry_to(from_cp, src_i, to_cp, dest_i, CHECK); |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1652 |
|
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1653 |
switch (from_cp->tag_at(src_i).value()) { |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1654 |
case JVM_CONSTANT_Double: |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1655 |
case JVM_CONSTANT_Long: |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1656 |
// double and long take two constant pool entries |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1657 |
src_i += 2; |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1658 |
dest_i += 2; |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1659 |
break; |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1660 |
|
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1661 |
default: |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1662 |
// all others take one constant pool entry |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1663 |
src_i++; |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1664 |
dest_i++; |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1665 |
break; |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1666 |
} |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1667 |
} |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1668 |
copy_operands(from_cp, to_cp, CHECK); |
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1669 |
|
0f53fd973576
8005128: JSR 292: the mlvm redefineClassInBootstrap test crashes in ConstantPool::compare_entry_to
sspitsyn
parents:
15430
diff
changeset
|
1670 |
} // end copy_cp_to_impl() |
1 | 1671 |
|
1672 |
||
1673 |
// Copy this constant pool's entry at from_i to the constant pool |
|
1674 |
// to_cp's entry at to_i. |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1675 |
void ConstantPool::copy_entry_to(const constantPoolHandle& from_cp, int from_i, |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1676 |
const constantPoolHandle& to_cp, int to_i, |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1677 |
TRAPS) { |
1 | 1678 |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1679 |
int tag = from_cp->tag_at(from_i).value(); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1680 |
switch (tag) { |
1 | 1681 |
case JVM_CONSTANT_ClassIndex: |
1682 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1683 |
jint ki = from_cp->klass_index_at(from_i); |
1 | 1684 |
to_cp->klass_index_at_put(to_i, ki); |
1685 |
} break; |
|
1686 |
||
1687 |
case JVM_CONSTANT_Double: |
|
1688 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1689 |
jdouble d = from_cp->double_at(from_i); |
1 | 1690 |
to_cp->double_at_put(to_i, d); |
1691 |
// double takes two constant pool entries so init second entry's tag |
|
1692 |
to_cp->tag_at_put(to_i + 1, JVM_CONSTANT_Invalid); |
|
1693 |
} break; |
|
1694 |
||
1695 |
case JVM_CONSTANT_Fieldref: |
|
1696 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1697 |
int class_index = from_cp->uncached_klass_ref_index_at(from_i); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1698 |
int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i); |
1 | 1699 |
to_cp->field_at_put(to_i, class_index, name_and_type_index); |
1700 |
} break; |
|
1701 |
||
1702 |
case JVM_CONSTANT_Float: |
|
1703 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1704 |
jfloat f = from_cp->float_at(from_i); |
1 | 1705 |
to_cp->float_at_put(to_i, f); |
1706 |
} break; |
|
1707 |
||
1708 |
case JVM_CONSTANT_Integer: |
|
1709 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1710 |
jint i = from_cp->int_at(from_i); |
1 | 1711 |
to_cp->int_at_put(to_i, i); |
1712 |
} break; |
|
1713 |
||
1714 |
case JVM_CONSTANT_InterfaceMethodref: |
|
1715 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1716 |
int class_index = from_cp->uncached_klass_ref_index_at(from_i); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1717 |
int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i); |
1 | 1718 |
to_cp->interface_method_at_put(to_i, class_index, name_and_type_index); |
1719 |
} break; |
|
1720 |
||
1721 |
case JVM_CONSTANT_Long: |
|
1722 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1723 |
jlong l = from_cp->long_at(from_i); |
1 | 1724 |
to_cp->long_at_put(to_i, l); |
1725 |
// long takes two constant pool entries so init second entry's tag |
|
1726 |
to_cp->tag_at_put(to_i + 1, JVM_CONSTANT_Invalid); |
|
1727 |
} break; |
|
1728 |
||
1729 |
case JVM_CONSTANT_Methodref: |
|
1730 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1731 |
int class_index = from_cp->uncached_klass_ref_index_at(from_i); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1732 |
int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i); |
1 | 1733 |
to_cp->method_at_put(to_i, class_index, name_and_type_index); |
1734 |
} break; |
|
1735 |
||
1736 |
case JVM_CONSTANT_NameAndType: |
|
1737 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1738 |
int name_ref_index = from_cp->name_ref_index_at(from_i); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1739 |
int signature_ref_index = from_cp->signature_ref_index_at(from_i); |
1 | 1740 |
to_cp->name_and_type_at_put(to_i, name_ref_index, signature_ref_index); |
1741 |
} break; |
|
1742 |
||
1743 |
case JVM_CONSTANT_StringIndex: |
|
1744 |
{ |
|
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1745 |
jint si = from_cp->string_index_at(from_i); |
1 | 1746 |
to_cp->string_index_at_put(to_i, si); |
1747 |
} break; |
|
1748 |
||
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
1749 |
case JVM_CONSTANT_Class: |
1 | 1750 |
case JVM_CONSTANT_UnresolvedClass: |
23175
892220ab2ae1
8035150: ShouldNotReachHere() in ConstantPool::copy_entry_to
sla
parents:
22750
diff
changeset
|
1751 |
case JVM_CONSTANT_UnresolvedClassInError: |
1 | 1752 |
{ |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
1753 |
// Revert to JVM_CONSTANT_ClassIndex |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
1754 |
int name_index = from_cp->klass_slot_at(from_i).name_index(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
1755 |
assert(from_cp->tag_at(name_index).is_symbol(), "sanity"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
1756 |
to_cp->klass_index_at_put(to_i, name_index); |
1 | 1757 |
} break; |
1758 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1759 |
case JVM_CONSTANT_String: |
1 | 1760 |
{ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1761 |
Symbol* s = from_cp->unresolved_string_at(from_i); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1762 |
to_cp->unresolved_string_at_put(to_i, s); |
1 | 1763 |
} break; |
1764 |
||
1765 |
case JVM_CONSTANT_Utf8: |
|
1766 |
{ |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
1767 |
Symbol* s = from_cp->symbol_at(from_i); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1768 |
// Need to increase refcount, the old one will be thrown away and deferenced |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1769 |
s->increment_refcount(); |
1 | 1770 |
to_cp->symbol_at_put(to_i, s); |
1771 |
} break; |
|
1772 |
||
5882 | 1773 |
case JVM_CONSTANT_MethodType: |
20672
9340852feeef
8025185: MethodHandleInError and MethodTypeInError not handled in ConstantPool::compare_entry_to and copy_entry_to
coleenp
parents:
20282
diff
changeset
|
1774 |
case JVM_CONSTANT_MethodTypeInError: |
5882 | 1775 |
{ |
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1776 |
jint k = from_cp->method_type_index_at(from_i); |
5882 | 1777 |
to_cp->method_type_index_at_put(to_i, k); |
1778 |
} break; |
|
1779 |
||
1780 |
case JVM_CONSTANT_MethodHandle: |
|
20672
9340852feeef
8025185: MethodHandleInError and MethodTypeInError not handled in ConstantPool::compare_entry_to and copy_entry_to
coleenp
parents:
20282
diff
changeset
|
1781 |
case JVM_CONSTANT_MethodHandleInError: |
5882 | 1782 |
{ |
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1783 |
int k1 = from_cp->method_handle_ref_kind_at(from_i); |
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
1784 |
int k2 = from_cp->method_handle_index_at(from_i); |
5882 | 1785 |
to_cp->method_handle_index_at_put(to_i, k1, k2); |
1786 |
} break; |
|
1787 |
||
48826 | 1788 |
case JVM_CONSTANT_Dynamic: |
1789 |
case JVM_CONSTANT_DynamicInError: |
|
1790 |
{ |
|
1791 |
int k1 = from_cp->invoke_dynamic_bootstrap_specifier_index(from_i); |
|
1792 |
int k2 = from_cp->invoke_dynamic_name_and_type_ref_index_at(from_i); |
|
1793 |
k1 += operand_array_length(to_cp->operands()); // to_cp might already have operands |
|
1794 |
to_cp->dynamic_constant_at_put(to_i, k1, k2); |
|
1795 |
} break; |
|
1796 |
||
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
1797 |
case JVM_CONSTANT_InvokeDynamic: |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
1798 |
{ |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1799 |
int k1 = from_cp->invoke_dynamic_bootstrap_specifier_index(from_i); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1800 |
int k2 = from_cp->invoke_dynamic_name_and_type_ref_index_at(from_i); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1801 |
k1 += operand_array_length(to_cp->operands()); // to_cp might already have operands |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
1802 |
to_cp->invoke_dynamic_at_put(to_i, k1, k2); |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
1803 |
} break; |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
1804 |
|
1 | 1805 |
// Invalid is used as the tag for the second constant pool entry |
1806 |
// occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should |
|
1807 |
// not be seen by itself. |
|
1808 |
case JVM_CONSTANT_Invalid: // fall through |
|
1809 |
||
1810 |
default: |
|
1811 |
{ |
|
1812 |
ShouldNotReachHere(); |
|
1813 |
} break; |
|
1814 |
} |
|
1815 |
} // end copy_entry_to() |
|
1816 |
||
1817 |
// Search constant pool search_cp for an entry that matches this |
|
1818 |
// constant pool's entry at pattern_i. Returns the index of a |
|
1819 |
// matching entry or zero (0) if there is no matching entry. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1820 |
int ConstantPool::find_matching_entry(int pattern_i, |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1821 |
const constantPoolHandle& search_cp, TRAPS) { |
1 | 1822 |
|
1823 |
// index zero (0) is not used |
|
1824 |
for (int i = 1; i < search_cp->length(); i++) { |
|
1825 |
bool found = compare_entry_to(pattern_i, search_cp, i, CHECK_0); |
|
1826 |
if (found) { |
|
1827 |
return i; |
|
1828 |
} |
|
1829 |
} |
|
1830 |
||
1831 |
return 0; // entry not found; return unused index zero (0) |
|
1832 |
} // end find_matching_entry() |
|
1833 |
||
1834 |
||
17077
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1835 |
// Compare this constant pool's bootstrap specifier at idx1 to the constant pool |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1836 |
// cp2's bootstrap specifier at idx2. |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1837 |
bool ConstantPool::compare_operand_to(int idx1, const constantPoolHandle& cp2, int idx2, TRAPS) { |
17077
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1838 |
int k1 = operand_bootstrap_method_ref_index_at(idx1); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1839 |
int k2 = cp2->operand_bootstrap_method_ref_index_at(idx2); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1840 |
bool match = compare_entry_to(k1, cp2, k2, CHECK_false); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1841 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1842 |
if (!match) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1843 |
return false; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1844 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1845 |
int argc = operand_argument_count_at(idx1); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1846 |
if (argc == cp2->operand_argument_count_at(idx2)) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1847 |
for (int j = 0; j < argc; j++) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1848 |
k1 = operand_argument_index_at(idx1, j); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1849 |
k2 = cp2->operand_argument_index_at(idx2, j); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1850 |
match = compare_entry_to(k1, cp2, k2, CHECK_false); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1851 |
if (!match) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1852 |
return false; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1853 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1854 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1855 |
return true; // got through loop; all elements equal |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1856 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1857 |
return false; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1858 |
} // end compare_operand_to() |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1859 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1860 |
// Search constant pool search_cp for a bootstrap specifier that matches |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1861 |
// this constant pool's bootstrap specifier at pattern_i index. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1862 |
// Return the index of a matching bootstrap specifier or (-1) if there is no match. |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1863 |
int ConstantPool::find_matching_operand(int pattern_i, |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33148
diff
changeset
|
1864 |
const constantPoolHandle& search_cp, int search_len, TRAPS) { |
17077
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1865 |
for (int i = 0; i < search_len; i++) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1866 |
bool found = compare_operand_to(pattern_i, search_cp, i, CHECK_(-1)); |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1867 |
if (found) { |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1868 |
return i; |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1869 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1870 |
} |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1871 |
return -1; // bootstrap specifier not found; return unused index (-1) |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1872 |
} // end find_matching_operand() |
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1873 |
|
8607f7c33310
8007037: JSR 292: the VM_RedefineClasses::append_entry() should do cross-checks with indy operands
sspitsyn
parents:
16670
diff
changeset
|
1874 |
|
1 | 1875 |
#ifndef PRODUCT |
1876 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1877 |
const char* ConstantPool::printable_name_at(int which) { |
1 | 1878 |
|
1879 |
constantTag tag = tag_at(which); |
|
1880 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1881 |
if (tag.is_string()) { |
1 | 1882 |
return string_at_noresolve(which); |
1883 |
} else if (tag.is_klass() || tag.is_unresolved_klass()) { |
|
1884 |
return klass_name_at(which)->as_C_string(); |
|
1885 |
} else if (tag.is_symbol()) { |
|
1886 |
return symbol_at(which)->as_C_string(); |
|
1887 |
} |
|
1888 |
return ""; |
|
1889 |
} |
|
1890 |
||
1891 |
#endif // PRODUCT |
|
1892 |
||
1893 |
||
1894 |
// JVMTI GetConstantPool support |
|
1895 |
||
16670
4af09aff4237
8003310: Enable -Wunused-function when compiling with gcc
mikael
parents:
16383
diff
changeset
|
1896 |
// For debugging of constant pool |
4af09aff4237
8003310: Enable -Wunused-function when compiling with gcc
mikael
parents:
16383
diff
changeset
|
1897 |
const bool debug_cpool = false; |
1 | 1898 |
|
16670
4af09aff4237
8003310: Enable -Wunused-function when compiling with gcc
mikael
parents:
16383
diff
changeset
|
1899 |
#define DBG(code) do { if (debug_cpool) { (code); } } while(0) |
1 | 1900 |
|
1901 |
static void print_cpool_bytes(jint cnt, u1 *bytes) { |
|
16670
4af09aff4237
8003310: Enable -Wunused-function when compiling with gcc
mikael
parents:
16383
diff
changeset
|
1902 |
const char* WARN_MSG = "Must not be such entry!"; |
1 | 1903 |
jint size = 0; |
1904 |
u2 idx1, idx2; |
|
1905 |
||
1906 |
for (jint idx = 1; idx < cnt; idx++) { |
|
1907 |
jint ent_size = 0; |
|
1908 |
u1 tag = *bytes++; |
|
1909 |
size++; // count tag |
|
1910 |
||
1911 |
printf("const #%03d, tag: %02d ", idx, tag); |
|
1912 |
switch(tag) { |
|
1913 |
case JVM_CONSTANT_Invalid: { |
|
1914 |
printf("Invalid"); |
|
1915 |
break; |
|
1916 |
} |
|
1917 |
case JVM_CONSTANT_Unicode: { |
|
1918 |
printf("Unicode %s", WARN_MSG); |
|
1919 |
break; |
|
1920 |
} |
|
1921 |
case JVM_CONSTANT_Utf8: { |
|
1922 |
u2 len = Bytes::get_Java_u2(bytes); |
|
1923 |
char str[128]; |
|
1924 |
if (len > 127) { |
|
1925 |
len = 127; |
|
1926 |
} |
|
1927 |
strncpy(str, (char *) (bytes+2), len); |
|
1928 |
str[len] = '\0'; |
|
1929 |
printf("Utf8 \"%s\"", str); |
|
1930 |
ent_size = 2 + len; |
|
1931 |
break; |
|
1932 |
} |
|
1933 |
case JVM_CONSTANT_Integer: { |
|
1934 |
u4 val = Bytes::get_Java_u4(bytes); |
|
1935 |
printf("int %d", *(int *) &val); |
|
1936 |
ent_size = 4; |
|
1937 |
break; |
|
1938 |
} |
|
1939 |
case JVM_CONSTANT_Float: { |
|
1940 |
u4 val = Bytes::get_Java_u4(bytes); |
|
1941 |
printf("float %5.3ff", *(float *) &val); |
|
1942 |
ent_size = 4; |
|
1943 |
break; |
|
1944 |
} |
|
1945 |
case JVM_CONSTANT_Long: { |
|
1946 |
u8 val = Bytes::get_Java_u8(bytes); |
|
31592
43f48e165466
8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents:
31046
diff
changeset
|
1947 |
printf("long " INT64_FORMAT, (int64_t) *(jlong *) &val); |
1 | 1948 |
ent_size = 8; |
1949 |
idx++; // Long takes two cpool slots |
|
1950 |
break; |
|
1951 |
} |
|
1952 |
case JVM_CONSTANT_Double: { |
|
1953 |
u8 val = Bytes::get_Java_u8(bytes); |
|
1954 |
printf("double %5.3fd", *(jdouble *)&val); |
|
1955 |
ent_size = 8; |
|
1956 |
idx++; // Double takes two cpool slots |
|
1957 |
break; |
|
1958 |
} |
|
1959 |
case JVM_CONSTANT_Class: { |
|
1960 |
idx1 = Bytes::get_Java_u2(bytes); |
|
1961 |
printf("class #%03d", idx1); |
|
1962 |
ent_size = 2; |
|
1963 |
break; |
|
1964 |
} |
|
1965 |
case JVM_CONSTANT_String: { |
|
1966 |
idx1 = Bytes::get_Java_u2(bytes); |
|
1967 |
printf("String #%03d", idx1); |
|
1968 |
ent_size = 2; |
|
1969 |
break; |
|
1970 |
} |
|
1971 |
case JVM_CONSTANT_Fieldref: { |
|
1972 |
idx1 = Bytes::get_Java_u2(bytes); |
|
1973 |
idx2 = Bytes::get_Java_u2(bytes+2); |
|
1974 |
printf("Field #%03d, #%03d", (int) idx1, (int) idx2); |
|
1975 |
ent_size = 4; |
|
1976 |
break; |
|
1977 |
} |
|
1978 |
case JVM_CONSTANT_Methodref: { |
|
1979 |
idx1 = Bytes::get_Java_u2(bytes); |
|
1980 |
idx2 = Bytes::get_Java_u2(bytes+2); |
|
1981 |
printf("Method #%03d, #%03d", idx1, idx2); |
|
1982 |
ent_size = 4; |
|
1983 |
break; |
|
1984 |
} |
|
1985 |
case JVM_CONSTANT_InterfaceMethodref: { |
|
1986 |
idx1 = Bytes::get_Java_u2(bytes); |
|
1987 |
idx2 = Bytes::get_Java_u2(bytes+2); |
|
1988 |
printf("InterfMethod #%03d, #%03d", idx1, idx2); |
|
1989 |
ent_size = 4; |
|
1990 |
break; |
|
1991 |
} |
|
1992 |
case JVM_CONSTANT_NameAndType: { |
|
1993 |
idx1 = Bytes::get_Java_u2(bytes); |
|
1994 |
idx2 = Bytes::get_Java_u2(bytes+2); |
|
1995 |
printf("NameAndType #%03d, #%03d", idx1, idx2); |
|
1996 |
ent_size = 4; |
|
1997 |
break; |
|
1998 |
} |
|
1999 |
case JVM_CONSTANT_ClassIndex: { |
|
2000 |
printf("ClassIndex %s", WARN_MSG); |
|
2001 |
break; |
|
2002 |
} |
|
2003 |
case JVM_CONSTANT_UnresolvedClass: { |
|
2004 |
printf("UnresolvedClass: %s", WARN_MSG); |
|
2005 |
break; |
|
2006 |
} |
|
2007 |
case JVM_CONSTANT_UnresolvedClassInError: { |
|
2008 |
printf("UnresolvedClassInErr: %s", WARN_MSG); |
|
2009 |
break; |
|
2010 |
} |
|
2011 |
case JVM_CONSTANT_StringIndex: { |
|
2012 |
printf("StringIndex: %s", WARN_MSG); |
|
2013 |
break; |
|
2014 |
} |
|
2015 |
} |
|
2016 |
printf(";\n"); |
|
2017 |
bytes += ent_size; |
|
2018 |
size += ent_size; |
|
2019 |
} |
|
2020 |
printf("Cpool size: %d\n", size); |
|
2021 |
fflush(0); |
|
2022 |
return; |
|
2023 |
} /* end print_cpool_bytes */ |
|
2024 |
||
2025 |
||
2026 |
// Returns size of constant pool entry. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2027 |
jint ConstantPool::cpool_entry_size(jint idx) { |
1 | 2028 |
switch(tag_at(idx).value()) { |
2029 |
case JVM_CONSTANT_Invalid: |
|
2030 |
case JVM_CONSTANT_Unicode: |
|
2031 |
return 1; |
|
2032 |
||
2033 |
case JVM_CONSTANT_Utf8: |
|
2034 |
return 3 + symbol_at(idx)->utf8_length(); |
|
2035 |
||
2036 |
case JVM_CONSTANT_Class: |
|
2037 |
case JVM_CONSTANT_String: |
|
2038 |
case JVM_CONSTANT_ClassIndex: |
|
2039 |
case JVM_CONSTANT_UnresolvedClass: |
|
2040 |
case JVM_CONSTANT_UnresolvedClassInError: |
|
2041 |
case JVM_CONSTANT_StringIndex: |
|
5882 | 2042 |
case JVM_CONSTANT_MethodType: |
20070
90ee74be2445
8025088: Missing cases for JVM_CONSTANT_MethodHandleInError cause crash if debugger steps into error-tagged method handle
iklam
parents:
20066
diff
changeset
|
2043 |
case JVM_CONSTANT_MethodTypeInError: |
1 | 2044 |
return 3; |
2045 |
||
5882 | 2046 |
case JVM_CONSTANT_MethodHandle: |
20070
90ee74be2445
8025088: Missing cases for JVM_CONSTANT_MethodHandleInError cause crash if debugger steps into error-tagged method handle
iklam
parents:
20066
diff
changeset
|
2047 |
case JVM_CONSTANT_MethodHandleInError: |
5882 | 2048 |
return 4; //tag, ref_kind, ref_index |
2049 |
||
1 | 2050 |
case JVM_CONSTANT_Integer: |
2051 |
case JVM_CONSTANT_Float: |
|
2052 |
case JVM_CONSTANT_Fieldref: |
|
2053 |
case JVM_CONSTANT_Methodref: |
|
2054 |
case JVM_CONSTANT_InterfaceMethodref: |
|
2055 |
case JVM_CONSTANT_NameAndType: |
|
7114
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
2056 |
return 5; |
65d21c4c6337
6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents:
7111
diff
changeset
|
2057 |
|
48826 | 2058 |
case JVM_CONSTANT_Dynamic: |
2059 |
case JVM_CONSTANT_DynamicInError: |
|
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
2060 |
case JVM_CONSTANT_InvokeDynamic: |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
2061 |
// u1 tag, u2 bsm, u2 nt |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
2062 |
return 5; |
1 | 2063 |
|
2064 |
case JVM_CONSTANT_Long: |
|
2065 |
case JVM_CONSTANT_Double: |
|
2066 |
return 9; |
|
2067 |
} |
|
2068 |
assert(false, "cpool_entry_size: Invalid constant pool entry tag"); |
|
2069 |
return 1; |
|
2070 |
} /* end cpool_entry_size */ |
|
2071 |
||
2072 |
||
2073 |
// SymbolHashMap is used to find a constant pool index from a string. |
|
2074 |
// This function fills in SymbolHashMaps, one for utf8s and one for |
|
2075 |
// class names, returns size of the cpool raw bytes. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2076 |
jint ConstantPool::hash_entries_to(SymbolHashMap *symmap, |
1 | 2077 |
SymbolHashMap *classmap) { |
2078 |
jint size = 0; |
|
2079 |
||
2080 |
for (u2 idx = 1; idx < length(); idx++) { |
|
2081 |
u2 tag = tag_at(idx).value(); |
|
2082 |
size += cpool_entry_size(idx); |
|
2083 |
||
2084 |
switch(tag) { |
|
2085 |
case JVM_CONSTANT_Utf8: { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
2086 |
Symbol* sym = symbol_at(idx); |
1 | 2087 |
symmap->add_entry(sym, idx); |
2088 |
DBG(printf("adding symbol entry %s = %d\n", sym->as_utf8(), idx)); |
|
2089 |
break; |
|
2090 |
} |
|
2091 |
case JVM_CONSTANT_Class: |
|
2092 |
case JVM_CONSTANT_UnresolvedClass: |
|
2093 |
case JVM_CONSTANT_UnresolvedClassInError: { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
2094 |
Symbol* sym = klass_name_at(idx); |
1 | 2095 |
classmap->add_entry(sym, idx); |
2096 |
DBG(printf("adding class entry %s = %d\n", sym->as_utf8(), idx)); |
|
2097 |
break; |
|
2098 |
} |
|
2099 |
case JVM_CONSTANT_Long: |
|
2100 |
case JVM_CONSTANT_Double: { |
|
2101 |
idx++; // Both Long and Double take two cpool slots |
|
2102 |
break; |
|
2103 |
} |
|
2104 |
} |
|
2105 |
} |
|
2106 |
return size; |
|
2107 |
} /* end hash_utf8_entries_to */ |
|
2108 |
||
2109 |
||
2110 |
// Copy cpool bytes. |
|
2111 |
// Returns: |
|
2112 |
// 0, in case of OutOfMemoryError |
|
2113 |
// -1, in case of internal error |
|
2114 |
// > 0, count of the raw cpool bytes that have been copied |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2115 |
int ConstantPool::copy_cpool_bytes(int cpool_size, |
1 | 2116 |
SymbolHashMap* tbl, |
2117 |
unsigned char *bytes) { |
|
2118 |
u2 idx1, idx2; |
|
2119 |
jint size = 0; |
|
2120 |
jint cnt = length(); |
|
2121 |
unsigned char *start_bytes = bytes; |
|
2122 |
||
2123 |
for (jint idx = 1; idx < cnt; idx++) { |
|
2124 |
u1 tag = tag_at(idx).value(); |
|
2125 |
jint ent_size = cpool_entry_size(idx); |
|
2126 |
||
2127 |
assert(size + ent_size <= cpool_size, "Size mismatch"); |
|
2128 |
||
2129 |
*bytes = tag; |
|
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46560
diff
changeset
|
2130 |
DBG(printf("#%03hd tag=%03hd, ", (short)idx, (short)tag)); |
1 | 2131 |
switch(tag) { |
2132 |
case JVM_CONSTANT_Invalid: { |
|
2133 |
DBG(printf("JVM_CONSTANT_Invalid")); |
|
2134 |
break; |
|
2135 |
} |
|
2136 |
case JVM_CONSTANT_Unicode: { |
|
2137 |
assert(false, "Wrong constant pool tag: JVM_CONSTANT_Unicode"); |
|
2138 |
DBG(printf("JVM_CONSTANT_Unicode")); |
|
2139 |
break; |
|
2140 |
} |
|
2141 |
case JVM_CONSTANT_Utf8: { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
2142 |
Symbol* sym = symbol_at(idx); |
1 | 2143 |
char* str = sym->as_utf8(); |
2144 |
// Warning! It's crashing on x86 with len = sym->utf8_length() |
|
2145 |
int len = (int) strlen(str); |
|
2146 |
Bytes::put_Java_u2((address) (bytes+1), (u2) len); |
|
2147 |
for (int i = 0; i < len; i++) { |
|
2148 |
bytes[3+i] = (u1) str[i]; |
|
2149 |
} |
|
2150 |
DBG(printf("JVM_CONSTANT_Utf8: %s ", str)); |
|
2151 |
break; |
|
2152 |
} |
|
2153 |
case JVM_CONSTANT_Integer: { |
|
2154 |
jint val = int_at(idx); |
|
2155 |
Bytes::put_Java_u4((address) (bytes+1), *(u4*)&val); |
|
2156 |
break; |
|
2157 |
} |
|
2158 |
case JVM_CONSTANT_Float: { |
|
2159 |
jfloat val = float_at(idx); |
|
2160 |
Bytes::put_Java_u4((address) (bytes+1), *(u4*)&val); |
|
2161 |
break; |
|
2162 |
} |
|
2163 |
case JVM_CONSTANT_Long: { |
|
2164 |
jlong val = long_at(idx); |
|
2165 |
Bytes::put_Java_u8((address) (bytes+1), *(u8*)&val); |
|
2166 |
idx++; // Long takes two cpool slots |
|
2167 |
break; |
|
2168 |
} |
|
2169 |
case JVM_CONSTANT_Double: { |
|
2170 |
jdouble val = double_at(idx); |
|
2171 |
Bytes::put_Java_u8((address) (bytes+1), *(u8*)&val); |
|
2172 |
idx++; // Double takes two cpool slots |
|
2173 |
break; |
|
2174 |
} |
|
2175 |
case JVM_CONSTANT_Class: |
|
2176 |
case JVM_CONSTANT_UnresolvedClass: |
|
2177 |
case JVM_CONSTANT_UnresolvedClassInError: { |
|
2178 |
*bytes = JVM_CONSTANT_Class; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
2179 |
Symbol* sym = klass_name_at(idx); |
1 | 2180 |
idx1 = tbl->symbol_to_value(sym); |
2181 |
assert(idx1 != 0, "Have not found a hashtable entry"); |
|
2182 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
|
2183 |
DBG(printf("JVM_CONSTANT_Class: idx=#%03hd, %s", idx1, sym->as_utf8())); |
|
2184 |
break; |
|
2185 |
} |
|
2186 |
case JVM_CONSTANT_String: { |
|
2187 |
*bytes = JVM_CONSTANT_String; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
2188 |
Symbol* sym = unresolved_string_at(idx); |
1 | 2189 |
idx1 = tbl->symbol_to_value(sym); |
2190 |
assert(idx1 != 0, "Have not found a hashtable entry"); |
|
2191 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
|
16670
4af09aff4237
8003310: Enable -Wunused-function when compiling with gcc
mikael
parents:
16383
diff
changeset
|
2192 |
DBG(printf("JVM_CONSTANT_String: idx=#%03hd, %s", idx1, sym->as_utf8())); |
1 | 2193 |
break; |
2194 |
} |
|
2195 |
case JVM_CONSTANT_Fieldref: |
|
2196 |
case JVM_CONSTANT_Methodref: |
|
2197 |
case JVM_CONSTANT_InterfaceMethodref: { |
|
2198 |
idx1 = uncached_klass_ref_index_at(idx); |
|
2199 |
idx2 = uncached_name_and_type_ref_index_at(idx); |
|
2200 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
|
2201 |
Bytes::put_Java_u2((address) (bytes+3), idx2); |
|
2202 |
DBG(printf("JVM_CONSTANT_Methodref: %hd %hd", idx1, idx2)); |
|
2203 |
break; |
|
2204 |
} |
|
2205 |
case JVM_CONSTANT_NameAndType: { |
|
2206 |
idx1 = name_ref_index_at(idx); |
|
2207 |
idx2 = signature_ref_index_at(idx); |
|
2208 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
|
2209 |
Bytes::put_Java_u2((address) (bytes+3), idx2); |
|
2210 |
DBG(printf("JVM_CONSTANT_NameAndType: %hd %hd", idx1, idx2)); |
|
2211 |
break; |
|
2212 |
} |
|
2213 |
case JVM_CONSTANT_ClassIndex: { |
|
2214 |
*bytes = JVM_CONSTANT_Class; |
|
2215 |
idx1 = klass_index_at(idx); |
|
2216 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
|
2217 |
DBG(printf("JVM_CONSTANT_ClassIndex: %hd", idx1)); |
|
2218 |
break; |
|
2219 |
} |
|
2220 |
case JVM_CONSTANT_StringIndex: { |
|
2221 |
*bytes = JVM_CONSTANT_String; |
|
2222 |
idx1 = string_index_at(idx); |
|
2223 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
|
2224 |
DBG(printf("JVM_CONSTANT_StringIndex: %hd", idx1)); |
|
2225 |
break; |
|
2226 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2227 |
case JVM_CONSTANT_MethodHandle: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2228 |
case JVM_CONSTANT_MethodHandleInError: { |
5882 | 2229 |
*bytes = JVM_CONSTANT_MethodHandle; |
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
2230 |
int kind = method_handle_ref_kind_at(idx); |
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
2231 |
idx1 = method_handle_index_at(idx); |
5882 | 2232 |
*(bytes+1) = (unsigned char) kind; |
2233 |
Bytes::put_Java_u2((address) (bytes+2), idx1); |
|
2234 |
DBG(printf("JVM_CONSTANT_MethodHandle: %d %hd", kind, idx1)); |
|
2235 |
break; |
|
2236 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2237 |
case JVM_CONSTANT_MethodType: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2238 |
case JVM_CONSTANT_MethodTypeInError: { |
5882 | 2239 |
*bytes = JVM_CONSTANT_MethodType; |
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
2240 |
idx1 = method_type_index_at(idx); |
5882 | 2241 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
2242 |
DBG(printf("JVM_CONSTANT_MethodType: %hd", idx1)); |
|
2243 |
break; |
|
2244 |
} |
|
48826 | 2245 |
case JVM_CONSTANT_Dynamic: |
2246 |
case JVM_CONSTANT_DynamicInError: { |
|
2247 |
*bytes = tag; |
|
2248 |
idx1 = extract_low_short_from_int(*int_at_addr(idx)); |
|
2249 |
idx2 = extract_high_short_from_int(*int_at_addr(idx)); |
|
2250 |
assert(idx2 == invoke_dynamic_name_and_type_ref_index_at(idx), "correct half of u4"); |
|
2251 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
|
2252 |
Bytes::put_Java_u2((address) (bytes+3), idx2); |
|
2253 |
DBG(printf("JVM_CONSTANT_Dynamic: %hd %hd", idx1, idx2)); |
|
2254 |
break; |
|
2255 |
} |
|
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
2256 |
case JVM_CONSTANT_InvokeDynamic: { |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
2257 |
*bytes = tag; |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
2258 |
idx1 = extract_low_short_from_int(*int_at_addr(idx)); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
2259 |
idx2 = extract_high_short_from_int(*int_at_addr(idx)); |
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
2260 |
assert(idx2 == invoke_dynamic_name_and_type_ref_index_at(idx), "correct half of u4"); |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
2261 |
Bytes::put_Java_u2((address) (bytes+1), idx1); |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
2262 |
Bytes::put_Java_u2((address) (bytes+3), idx2); |
7436
dbc43da3d512
7001379: bootstrap method data needs to be moved from constant pool to a classfile attribute
jrose
parents:
7397
diff
changeset
|
2263 |
DBG(printf("JVM_CONSTANT_InvokeDynamic: %hd %hd", idx1, idx2)); |
6062
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
2264 |
break; |
bab93afe9df7
6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents:
5882
diff
changeset
|
2265 |
} |
1 | 2266 |
} |
2267 |
DBG(printf("\n")); |
|
2268 |
bytes += ent_size; |
|
2269 |
size += ent_size; |
|
2270 |
} |
|
2271 |
assert(size == cpool_size, "Size mismatch"); |
|
2272 |
||
2273 |
// Keep temorarily for debugging until it's stable. |
|
2274 |
DBG(print_cpool_bytes(cnt, start_bytes)); |
|
2275 |
return (int)(bytes - start_bytes); |
|
2276 |
} /* end copy_cpool_bytes */ |
|
2277 |
||
16670
4af09aff4237
8003310: Enable -Wunused-function when compiling with gcc
mikael
parents:
16383
diff
changeset
|
2278 |
#undef DBG |
4af09aff4237
8003310: Enable -Wunused-function when compiling with gcc
mikael
parents:
16383
diff
changeset
|
2279 |
|
1 | 2280 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2281 |
void ConstantPool::set_on_stack(const bool value) { |
15430
7c35f12cf1e5
8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents:
15229
diff
changeset
|
2282 |
if (value) { |
29576
c223b0a9872e
8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents:
29081
diff
changeset
|
2283 |
// Only record if it's not already set. |
c223b0a9872e
8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents:
29081
diff
changeset
|
2284 |
if (!on_stack()) { |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2285 |
assert(!is_shared(), "should always be set for shared constant pools"); |
29576
c223b0a9872e
8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents:
29081
diff
changeset
|
2286 |
_flags |= _on_stack; |
c223b0a9872e
8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents:
29081
diff
changeset
|
2287 |
MetadataOnStackMark::record(this); |
27247
99db666dbe8e
8056240: Investigate increased GC remark time after class unloading changes in CRM Fuse
stefank
parents:
25624
diff
changeset
|
2288 |
} |
15430
7c35f12cf1e5
8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents:
15229
diff
changeset
|
2289 |
} else { |
27247
99db666dbe8e
8056240: Investigate increased GC remark time after class unloading changes in CRM Fuse
stefank
parents:
25624
diff
changeset
|
2290 |
// Clearing is done single-threadedly. |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2291 |
if (!is_shared()) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2292 |
_flags &= ~_on_stack; |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2293 |
} |
15430
7c35f12cf1e5
8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents:
15229
diff
changeset
|
2294 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2295 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2296 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2297 |
// JSR 292 support for patching constant pool oops after the class is linked and |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2298 |
// the oop array for resolved references are created. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2299 |
// We can't do this during classfile parsing, which is how the other indexes are |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2300 |
// patched. The other patches are applied early for some error checking |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2301 |
// so only defer the pseudo_strings. |
24322 | 2302 |
void ConstantPool::patch_resolved_references(GrowableArray<Handle>* cp_patches) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2303 |
for (int index = 1; index < cp_patches->length(); index++) { // Index 0 is unused |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2304 |
Handle patch = cp_patches->at(index); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2305 |
if (patch.not_null()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2306 |
assert (tag_at(index).is_string(), "should only be string left"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2307 |
// Patching a string means pre-resolving it. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2308 |
// The spelling in the constant pool is ignored. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2309 |
// The constant reference may be any object whatever. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2310 |
// If it is not a real interned string, the constant is referred |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2311 |
// to as a "pseudo-string", and must be presented to the CP |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2312 |
// explicitly, because it may require scavenging. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2313 |
int obj_index = cp_to_object_index(index); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2314 |
pseudo_string_at_put(index, obj_index, patch()); |
28741
1f10b1bd612d
8008678: JSR 292: constant pool reconstitution must support pseudo strings
sspitsyn
parents:
27680
diff
changeset
|
2315 |
DEBUG_ONLY(cp_patches->at_put(index, Handle());) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2316 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2317 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2318 |
#ifdef ASSERT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2319 |
// Ensure that all the patches have been used. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2320 |
for (int index = 0; index < cp_patches->length(); index++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2321 |
assert(cp_patches->at(index).is_null(), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
2322 |
"Unused constant pool patch at %d in class file %s", |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
2323 |
index, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
2324 |
pool_holder()->external_name()); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2325 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2326 |
#endif // ASSERT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2327 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2328 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2329 |
#ifndef PRODUCT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2330 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2331 |
// CompileTheWorld support. Preload all classes loaded references in the passed in constantpool |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2332 |
void ConstantPool::preload_and_initialize_all_classes(ConstantPool* obj, TRAPS) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2333 |
guarantee(obj->is_constantPool(), "object must be constant pool"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2334 |
constantPoolHandle cp(THREAD, (ConstantPool*)obj); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2335 |
guarantee(cp->pool_holder() != NULL, "must be fully loaded"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2336 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2337 |
for (int i = 0; i< cp->length(); i++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2338 |
if (cp->tag_at(i).is_unresolved_klass()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2339 |
// This will force loading of the class |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2340 |
Klass* klass = cp->klass_at(i, CHECK); |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
2341 |
if (klass->is_instance_klass()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2342 |
// Force initialization of class |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2343 |
InstanceKlass::cast(klass)->initialize(CHECK); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2344 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2345 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2346 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2347 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2348 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2349 |
#endif |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2350 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2351 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2352 |
// Printing |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2353 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2354 |
void ConstantPool::print_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2355 |
assert(is_constantPool(), "must be constantPool"); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24337
diff
changeset
|
2356 |
st->print_cr("%s", internal_name()); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2357 |
if (flags() != 0) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2358 |
st->print(" - flags: 0x%x", flags()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2359 |
if (has_preresolution()) st->print(" has_preresolution"); |
15430
7c35f12cf1e5
8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents:
15229
diff
changeset
|
2360 |
if (on_stack()) st->print(" on_stack"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2361 |
st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2362 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2363 |
if (pool_holder() != NULL) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
2364 |
st->print_cr(" - holder: " INTPTR_FORMAT, p2i(pool_holder())); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2365 |
} |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
2366 |
st->print_cr(" - cache: " INTPTR_FORMAT, p2i(cache())); |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
2367 |
st->print_cr(" - resolved_references: " INTPTR_FORMAT, p2i(resolved_references())); |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
2368 |
st->print_cr(" - reference_map: " INTPTR_FORMAT, p2i(reference_map())); |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2369 |
st->print_cr(" - resolved_klasses: " INTPTR_FORMAT, p2i(resolved_klasses())); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2370 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2371 |
for (int index = 1; index < length(); index++) { // Index 0 is unused |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2372 |
((ConstantPool*)this)->print_entry_on(index, st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2373 |
switch (tag_at(index).value()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2374 |
case JVM_CONSTANT_Long : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2375 |
case JVM_CONSTANT_Double : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2376 |
index++; // Skip entry following eigth-byte constant |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2377 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2378 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2379 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2380 |
st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2381 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2382 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2383 |
// Print one constant pool entry |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2384 |
void ConstantPool::print_entry_on(const int index, outputStream* st) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2385 |
EXCEPTION_MARK; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2386 |
st->print(" - %3d : ", index); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2387 |
tag_at(index).print_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2388 |
st->print(" : "); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2389 |
switch (tag_at(index).value()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2390 |
case JVM_CONSTANT_Class : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2391 |
{ Klass* k = klass_at(index, CATCH); |
16383
57cb9d398a11
8009593: [parfait] Null pointer deference in hotspot/src/share/vm/oops/constantPool.cpp
morris
parents:
15799
diff
changeset
|
2392 |
guarantee(k != NULL, "need klass"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2393 |
k->print_value_on(st); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
2394 |
st->print(" {" PTR_FORMAT "}", p2i(k)); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2395 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2396 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2397 |
case JVM_CONSTANT_Fieldref : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2398 |
case JVM_CONSTANT_Methodref : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2399 |
case JVM_CONSTANT_InterfaceMethodref : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2400 |
st->print("klass_index=%d", uncached_klass_ref_index_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2401 |
st->print(" name_and_type_index=%d", uncached_name_and_type_ref_index_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2402 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2403 |
case JVM_CONSTANT_String : |
15799 | 2404 |
if (is_pseudo_string_at(index)) { |
2405 |
oop anObj = pseudo_string_at(index); |
|
2406 |
anObj->print_value_on(st); |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
2407 |
st->print(" {" PTR_FORMAT "}", p2i(anObj)); |
15799 | 2408 |
} else { |
2409 |
unresolved_string_at(index)->print_value_on(st); |
|
2410 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2411 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2412 |
case JVM_CONSTANT_Integer : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2413 |
st->print("%d", int_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2414 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2415 |
case JVM_CONSTANT_Float : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2416 |
st->print("%f", float_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2417 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2418 |
case JVM_CONSTANT_Long : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2419 |
st->print_jlong(long_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2420 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2421 |
case JVM_CONSTANT_Double : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2422 |
st->print("%lf", double_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2423 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2424 |
case JVM_CONSTANT_NameAndType : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2425 |
st->print("name_index=%d", name_ref_index_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2426 |
st->print(" signature_index=%d", signature_ref_index_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2427 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2428 |
case JVM_CONSTANT_Utf8 : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2429 |
symbol_at(index)->print_value_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2430 |
break; |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2431 |
case JVM_CONSTANT_ClassIndex: { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2432 |
int name_index = *int_at_addr(index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2433 |
st->print("klass_index=%d ", name_index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2434 |
symbol_at(name_index)->print_value_on(st); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2435 |
} |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2436 |
break; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2437 |
case JVM_CONSTANT_UnresolvedClass : // fall-through |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2438 |
case JVM_CONSTANT_UnresolvedClassInError: { |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2439 |
CPKlassSlot kslot = klass_slot_at(index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2440 |
int resolved_klass_index = kslot.resolved_klass_index(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2441 |
int name_index = kslot.name_index(); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2442 |
assert(tag_at(name_index).is_symbol(), "sanity"); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2443 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2444 |
Klass* klass = resolved_klasses()->at(resolved_klass_index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2445 |
if (klass != NULL) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2446 |
klass->print_value_on(st); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2447 |
} else { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2448 |
symbol_at(name_index)->print_value_on(st); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2449 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2450 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2451 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2452 |
case JVM_CONSTANT_MethodHandle : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2453 |
case JVM_CONSTANT_MethodHandleInError : |
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
2454 |
st->print("ref_kind=%d", method_handle_ref_kind_at(index)); |
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
2455 |
st->print(" ref_index=%d", method_handle_index_at(index)); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2456 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2457 |
case JVM_CONSTANT_MethodType : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2458 |
case JVM_CONSTANT_MethodTypeInError : |
37475
0da78fa10d78
8148772: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37451
diff
changeset
|
2459 |
st->print("signature_index=%d", method_type_index_at(index)); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2460 |
break; |
48826 | 2461 |
case JVM_CONSTANT_Dynamic : |
2462 |
case JVM_CONSTANT_DynamicInError : |
|
2463 |
{ |
|
2464 |
st->print("bootstrap_method_index=%d", invoke_dynamic_bootstrap_method_ref_index_at(index)); |
|
2465 |
st->print(" type_index=%d", invoke_dynamic_name_and_type_ref_index_at(index)); |
|
2466 |
int argc = invoke_dynamic_argument_count_at(index); |
|
2467 |
if (argc > 0) { |
|
2468 |
for (int arg_i = 0; arg_i < argc; arg_i++) { |
|
2469 |
int arg = invoke_dynamic_argument_index_at(index, arg_i); |
|
2470 |
st->print((arg_i == 0 ? " arguments={%d" : ", %d"), arg); |
|
2471 |
} |
|
2472 |
st->print("}"); |
|
2473 |
} |
|
2474 |
} |
|
2475 |
break; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2476 |
case JVM_CONSTANT_InvokeDynamic : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2477 |
{ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2478 |
st->print("bootstrap_method_index=%d", invoke_dynamic_bootstrap_method_ref_index_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2479 |
st->print(" name_and_type_index=%d", invoke_dynamic_name_and_type_ref_index_at(index)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2480 |
int argc = invoke_dynamic_argument_count_at(index); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2481 |
if (argc > 0) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2482 |
for (int arg_i = 0; arg_i < argc; arg_i++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2483 |
int arg = invoke_dynamic_argument_index_at(index, arg_i); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2484 |
st->print((arg_i == 0 ? " arguments={%d" : ", %d"), arg); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2485 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2486 |
st->print("}"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2487 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2488 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2489 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2490 |
default: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2491 |
ShouldNotReachHere(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2492 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2493 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2494 |
st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2495 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2496 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2497 |
void ConstantPool::print_value_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2498 |
assert(is_constantPool(), "must be constantPool"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2499 |
st->print("constant pool [%d]", length()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2500 |
if (has_preresolution()) st->print("/preresolution"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2501 |
if (operands() != NULL) st->print("/operands[%d]", operands()->length()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2502 |
print_address_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2503 |
if (pool_holder() != NULL) { |
51338
aa3bfacc912c
8208677: Move inner metaspace cleaning out of class unloading
coleenp
parents:
50971
diff
changeset
|
2504 |
st->print(" for "); |
aa3bfacc912c
8208677: Move inner metaspace cleaning out of class unloading
coleenp
parents:
50971
diff
changeset
|
2505 |
pool_holder()->print_value_on(st); |
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
14385
diff
changeset
|
2506 |
bool extra = (pool_holder()->constants() != this); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2507 |
if (extra) st->print(" (extra)"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2508 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2509 |
if (cache() != NULL) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
2510 |
st->print(" cache=" PTR_FORMAT, p2i(cache())); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2511 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2512 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2513 |
|
15437 | 2514 |
#if INCLUDE_SERVICES |
2515 |
// Size Statistics |
|
2516 |
void ConstantPool::collect_statistics(KlassSizeStats *sz) const { |
|
2517 |
sz->_cp_all_bytes += (sz->_cp_bytes = sz->count(this)); |
|
2518 |
sz->_cp_all_bytes += (sz->_cp_tags_bytes = sz->count_array(tags())); |
|
2519 |
sz->_cp_all_bytes += (sz->_cp_cache_bytes = sz->count(cache())); |
|
2520 |
sz->_cp_all_bytes += (sz->_cp_operands_bytes = sz->count_array(operands())); |
|
2521 |
sz->_cp_all_bytes += (sz->_cp_refmap_bytes = sz->count_array(reference_map())); |
|
2522 |
||
2523 |
sz->_ro_bytes += sz->_cp_operands_bytes + sz->_cp_tags_bytes + |
|
2524 |
sz->_cp_refmap_bytes; |
|
2525 |
sz->_rw_bytes += sz->_cp_bytes + sz->_cp_cache_bytes; |
|
2526 |
} |
|
2527 |
#endif // INCLUDE_SERVICES |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2528 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2529 |
// Verification |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2530 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2531 |
void ConstantPool::verify_on(outputStream* st) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2532 |
guarantee(is_constantPool(), "object must be constant pool"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2533 |
for (int i = 0; i< length(); i++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2534 |
constantTag tag = tag_at(i); |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2535 |
if (tag.is_klass() || tag.is_unresolved_klass()) { |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2536 |
guarantee(klass_name_at(i)->refcount() != 0, "should have nonzero reference count"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2537 |
} else if (tag.is_symbol()) { |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2538 |
CPSlot entry = slot_at(i); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2539 |
guarantee(entry.get_symbol()->refcount() != 0, "should have nonzero reference count"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2540 |
} else if (tag.is_string()) { |
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46329
diff
changeset
|
2541 |
CPSlot entry = slot_at(i); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2542 |
guarantee(entry.get_symbol()->refcount() != 0, "should have nonzero reference count"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2543 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2544 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2545 |
if (cache() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2546 |
// Note: cache() can be NULL before a class is completely setup or |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2547 |
// in temporary constant pools used during constant pool merging |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2548 |
guarantee(cache()->is_constantPoolCache(), "should be constant pool cache"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2549 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2550 |
if (pool_holder() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2551 |
// Note: pool_holder() can be NULL in temporary constant pools |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2552 |
// used during constant pool merging |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2553 |
guarantee(pool_holder()->is_klass(), "should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2554 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2555 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2556 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2557 |
|
49360 | 2558 |
SymbolHashMap::~SymbolHashMap() { |
2559 |
SymbolHashMapEntry* next; |
|
2560 |
for (int i = 0; i < _table_size; i++) { |
|
2561 |
for (SymbolHashMapEntry* cur = bucket(i); cur != NULL; cur = next) { |
|
2562 |
next = cur->next(); |
|
2563 |
delete(cur); |
|
2564 |
} |
|
2565 |
} |
|
2566 |
FREE_C_HEAP_ARRAY(SymbolHashMapBucket, _buckets); |
|
2567 |
} |
|
2568 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
2569 |
void SymbolHashMap::add_entry(Symbol* sym, u2 value) { |
1 | 2570 |
char *str = sym->as_utf8(); |
2571 |
unsigned int hash = compute_hash(str, sym->utf8_length()); |
|
2572 |
unsigned int index = hash % table_size(); |
|
2573 |
||
2574 |
// check if already in map |
|
2575 |
// we prefer the first entry since it is more likely to be what was used in |
|
2576 |
// the class file |
|
2577 |
for (SymbolHashMapEntry *en = bucket(index); en != NULL; en = en->next()) { |
|
2578 |
assert(en->symbol() != NULL, "SymbolHashMapEntry symbol is NULL"); |
|
2579 |
if (en->hash() == hash && en->symbol() == sym) { |
|
2580 |
return; // already there |
|
2581 |
} |
|
2582 |
} |
|
2583 |
||
2584 |
SymbolHashMapEntry* entry = new SymbolHashMapEntry(hash, sym, value); |
|
2585 |
entry->set_next(bucket(index)); |
|
2586 |
_buckets[index].set_entry(entry); |
|
2587 |
assert(entry->symbol() != NULL, "SymbolHashMapEntry symbol is NULL"); |
|
2588 |
} |
|
2589 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7436
diff
changeset
|
2590 |
SymbolHashMapEntry* SymbolHashMap::find_entry(Symbol* sym) { |
1 | 2591 |
assert(sym != NULL, "SymbolHashMap::find_entry - symbol is NULL"); |
2592 |
char *str = sym->as_utf8(); |
|
2593 |
int len = sym->utf8_length(); |
|
2594 |
unsigned int hash = SymbolHashMap::compute_hash(str, len); |
|
2595 |
unsigned int index = hash % table_size(); |
|
2596 |
for (SymbolHashMapEntry *en = bucket(index); en != NULL; en = en->next()) { |
|
2597 |
assert(en->symbol() != NULL, "SymbolHashMapEntry symbol is NULL"); |
|
2598 |
if (en->hash() == hash && en->symbol() == sym) { |
|
2599 |
return en; |
|
2600 |
} |
|
2601 |
} |
|
2602 |
return NULL; |
|
2603 |
} |
|
48157 | 2604 |
|
2605 |
void SymbolHashMap::initialize_table(int table_size) { |
|
2606 |
_table_size = table_size; |
|
2607 |
_buckets = NEW_C_HEAP_ARRAY(SymbolHashMapBucket, table_size, mtSymbol); |
|
2608 |
for (int index = 0; index < table_size; index++) { |
|
2609 |
_buckets[index].clear(); |
|
2610 |
} |
|
2611 |
} |