author | kbarrett |
Tue, 13 Jan 2015 14:30:53 -0500 | |
changeset 28477 | 157314902d78 |
parent 27658 | 90cae28ee3cb |
child 30764 | fec48bf5a827 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
2 |
* Copyright (c) 2003, 2014, 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:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
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:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
26 |
#include "interpreter/interpreter.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
27 |
#include "memory/gcLocker.hpp" |
15437 | 28 |
#include "memory/heapInspection.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
29 |
#include "memory/metadataFactory.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
30 |
#include "oops/constMethod.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
31 |
#include "oops/method.hpp" |
1 | 32 |
|
33 |
// Static initialization |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
34 |
const u2 ConstMethod::MAX_IDNUM = 0xFFFE; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
35 |
const u2 ConstMethod::UNSET_IDNUM = 0xFFFF; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
36 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
37 |
ConstMethod* ConstMethod::allocate(ClassLoaderData* loader_data, |
14385 | 38 |
int byte_code_size, |
15601 | 39 |
InlineTableSizes* sizes, |
14385 | 40 |
MethodType method_type, |
41 |
TRAPS) { |
|
15601 | 42 |
int size = ConstMethod::size(byte_code_size, sizes); |
17858
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
16588
diff
changeset
|
43 |
return new (loader_data, size, true, MetaspaceObj::ConstMethodType, THREAD) ConstMethod( |
15601 | 44 |
byte_code_size, sizes, method_type, size); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
45 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
46 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
47 |
ConstMethod::ConstMethod(int byte_code_size, |
15601 | 48 |
InlineTableSizes* sizes, |
14385 | 49 |
MethodType method_type, |
50 |
int size) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
51 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
52 |
No_Safepoint_Verifier no_safepoint; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
53 |
init_fingerprint(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
54 |
set_constants(NULL); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
55 |
set_stackmap_data(NULL); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
56 |
set_code_size(byte_code_size); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
57 |
set_constMethod_size(size); |
15931
c4fc378a132b
8009836: nsk/regression/b4222717 fails with empty stack trace
coleenp
parents:
15928
diff
changeset
|
58 |
set_inlined_tables_length(sizes); // sets _flags |
14385 | 59 |
set_method_type(method_type); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
60 |
assert(this->size() == size, "wrong size for object"); |
15928
f9d5c6e4107f
8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents:
15601
diff
changeset
|
61 |
set_name_index(0); |
f9d5c6e4107f
8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents:
15601
diff
changeset
|
62 |
set_signature_index(0); |
f9d5c6e4107f
8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents:
15601
diff
changeset
|
63 |
set_constants(NULL); |
f9d5c6e4107f
8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents:
15601
diff
changeset
|
64 |
set_max_stack(0); |
f9d5c6e4107f
8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents:
15601
diff
changeset
|
65 |
set_max_locals(0); |
f9d5c6e4107f
8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents:
15601
diff
changeset
|
66 |
set_method_idnum(0); |
15931
c4fc378a132b
8009836: nsk/regression/b4222717 fails with empty stack trace
coleenp
parents:
15928
diff
changeset
|
67 |
set_size_of_parameters(0); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
68 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
69 |
|
15935
50da9e5eb858
8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents:
15931
diff
changeset
|
70 |
// Accessor that copies to metadata. |
50da9e5eb858
8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents:
15931
diff
changeset
|
71 |
void ConstMethod::copy_stackmap_data(ClassLoaderData* loader_data, |
50da9e5eb858
8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents:
15931
diff
changeset
|
72 |
u1* sd, int length, TRAPS) { |
50da9e5eb858
8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents:
15931
diff
changeset
|
73 |
_stackmap_data = MetadataFactory::new_array<u1>(loader_data, length, CHECK); |
50da9e5eb858
8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents:
15931
diff
changeset
|
74 |
memcpy((void*)_stackmap_data->adr_at(0), (void*)sd, length); |
50da9e5eb858
8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents:
15931
diff
changeset
|
75 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
76 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
77 |
// Deallocate metadata fields associated with ConstMethod* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
78 |
void ConstMethod::deallocate_contents(ClassLoaderData* loader_data) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
79 |
if (stackmap_data() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
80 |
MetadataFactory::free_array<u1>(loader_data, stackmap_data()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
81 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
82 |
set_stackmap_data(NULL); |
15601 | 83 |
|
84 |
// deallocate annotation arrays |
|
85 |
if (has_method_annotations()) |
|
86 |
MetadataFactory::free_array<u1>(loader_data, method_annotations()); |
|
87 |
if (has_parameter_annotations()) |
|
88 |
MetadataFactory::free_array<u1>(loader_data, parameter_annotations()); |
|
89 |
if (has_type_annotations()) |
|
90 |
MetadataFactory::free_array<u1>(loader_data, type_annotations()); |
|
91 |
if (has_default_annotations()) |
|
92 |
MetadataFactory::free_array<u1>(loader_data, default_annotations()); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
93 |
} |
1 | 94 |
|
95 |
// How big must this constMethodObject be? |
|
96 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
97 |
int ConstMethod::size(int code_size, |
15601 | 98 |
InlineTableSizes* sizes) { |
1 | 99 |
int extra_bytes = code_size; |
15601 | 100 |
if (sizes->compressed_linenumber_size() > 0) { |
101 |
extra_bytes += sizes->compressed_linenumber_size(); |
|
1 | 102 |
} |
15601 | 103 |
if (sizes->checked_exceptions_length() > 0) { |
1 | 104 |
extra_bytes += sizeof(u2); |
15601 | 105 |
extra_bytes += sizes->checked_exceptions_length() * sizeof(CheckedExceptionElement); |
1 | 106 |
} |
15601 | 107 |
if (sizes->localvariable_table_length() > 0) { |
1 | 108 |
extra_bytes += sizeof(u2); |
109 |
extra_bytes += |
|
15601 | 110 |
sizes->localvariable_table_length() * sizeof(LocalVariableTableElement); |
1 | 111 |
} |
15601 | 112 |
if (sizes->exception_table_length() > 0) { |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
113 |
extra_bytes += sizeof(u2); |
15601 | 114 |
extra_bytes += sizes->exception_table_length() * sizeof(ExceptionTableElement); |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
115 |
} |
15601 | 116 |
if (sizes->generic_signature_index() != 0) { |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
117 |
extra_bytes += sizeof(u2); |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
118 |
} |
27612
7201412afbd0
8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents:
24424
diff
changeset
|
119 |
// This has to be a less-than-or-equal check, because we might be |
7201412afbd0
8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents:
24424
diff
changeset
|
120 |
// storing information from a zero-length MethodParameters |
7201412afbd0
8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents:
24424
diff
changeset
|
121 |
// attribute. We have to store these, because in some cases, they |
7201412afbd0
8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents:
24424
diff
changeset
|
122 |
// cause the reflection API to throw a MalformedParametersException. |
7201412afbd0
8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents:
24424
diff
changeset
|
123 |
if (sizes->method_parameters_length() >= 0) { |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
124 |
extra_bytes += sizeof(u2); |
15601 | 125 |
extra_bytes += sizes->method_parameters_length() * sizeof(MethodParametersElement); |
126 |
} |
|
127 |
||
128 |
// Align sizes up to a word. |
|
129 |
extra_bytes = align_size_up(extra_bytes, BytesPerWord); |
|
130 |
||
131 |
// One pointer per annotation array |
|
132 |
if (sizes->method_annotations_length() > 0) { |
|
133 |
extra_bytes += sizeof(AnnotationArray*); |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
134 |
} |
15601 | 135 |
if (sizes->parameter_annotations_length() > 0) { |
136 |
extra_bytes += sizeof(AnnotationArray*); |
|
137 |
} |
|
138 |
if (sizes->type_annotations_length() > 0) { |
|
139 |
extra_bytes += sizeof(AnnotationArray*); |
|
140 |
} |
|
141 |
if (sizes->default_annotations_length() > 0) { |
|
142 |
extra_bytes += sizeof(AnnotationArray*); |
|
143 |
} |
|
144 |
||
1 | 145 |
int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord; |
15601 | 146 |
assert(extra_words == extra_bytes/BytesPerWord, "should already be aligned"); |
1 | 147 |
return align_object_size(header_size() + extra_words); |
148 |
} |
|
149 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
150 |
Method* ConstMethod::method() const { |
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
14385
diff
changeset
|
151 |
return _constants->pool_holder()->method_with_idnum(_method_idnum); |
12937
0032fb2caff6
7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents:
7397
diff
changeset
|
152 |
} |
1 | 153 |
|
154 |
// linenumber table - note that length is unknown until decompression, |
|
155 |
// see class CompressedLineNumberReadStream. |
|
156 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
157 |
u_char* ConstMethod::compressed_linenumber_table() const { |
1 | 158 |
// Located immediately following the bytecodes. |
159 |
assert(has_linenumber_table(), "called only if table is present"); |
|
160 |
return code_end(); |
|
161 |
} |
|
162 |
||
15601 | 163 |
// Last short in ConstMethod* before annotations |
164 |
u2* ConstMethod::last_u2_element() const { |
|
165 |
int offset = 0; |
|
166 |
if (has_method_annotations()) offset++; |
|
167 |
if (has_parameter_annotations()) offset++; |
|
168 |
if (has_type_annotations()) offset++; |
|
169 |
if (has_default_annotations()) offset++; |
|
170 |
return (u2*)((AnnotationArray**)constMethod_end() - offset) - 1; |
|
171 |
} |
|
172 |
||
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
173 |
u2* ConstMethod::generic_signature_index_addr() const { |
1 | 174 |
// Located at the end of the constMethod. |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
175 |
assert(has_generic_signature(), "called only if generic signature exists"); |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
176 |
return last_u2_element(); |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
177 |
} |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
178 |
|
15601 | 179 |
u2* ConstMethod::method_parameters_length_addr() const { |
180 |
assert(has_method_parameters(), "called only if table is present"); |
|
181 |
return has_generic_signature() ? (last_u2_element() - 1) : |
|
182 |
last_u2_element(); |
|
183 |
} |
|
184 |
||
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
185 |
u2* ConstMethod::checked_exceptions_length_addr() const { |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
186 |
// Located immediately before the generic signature index. |
1 | 187 |
assert(has_checked_exceptions(), "called only if table is present"); |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
188 |
if(has_method_parameters()) { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
189 |
// If method parameters present, locate immediately before them. |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
190 |
return (u2*)method_parameters_start() - 1; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
191 |
} else { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
192 |
// Else, the exception table is at the end of the constMethod. |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
193 |
return has_generic_signature() ? (last_u2_element() - 1) : |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
194 |
last_u2_element(); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
195 |
} |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
196 |
} |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
197 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
198 |
u2* ConstMethod::exception_table_length_addr() const { |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
199 |
assert(has_exception_handler(), "called only if table is present"); |
1 | 200 |
if (has_checked_exceptions()) { |
201 |
// If checked_exception present, locate immediately before them. |
|
202 |
return (u2*) checked_exceptions_start() - 1; |
|
203 |
} else { |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
204 |
if(has_method_parameters()) { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
205 |
// If method parameters present, locate immediately before them. |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
206 |
return (u2*)method_parameters_start() - 1; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
207 |
} else { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
208 |
// Else, the exception table is at the end of the constMethod. |
15601 | 209 |
return has_generic_signature() ? (last_u2_element() - 1) : |
210 |
last_u2_element(); |
|
211 |
} |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
212 |
} |
1 | 213 |
} |
214 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
215 |
u2* ConstMethod::localvariable_table_length_addr() const { |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
216 |
assert(has_localvariable_table(), "called only if table is present"); |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
217 |
if (has_exception_handler()) { |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
218 |
// If exception_table present, locate immediately before them. |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
219 |
return (u2*) exception_table_start() - 1; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
220 |
} else { |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
221 |
if (has_checked_exceptions()) { |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
222 |
// If checked_exception present, locate immediately before them. |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
223 |
return (u2*) checked_exceptions_start() - 1; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
224 |
} else { |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
225 |
if(has_method_parameters()) { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
226 |
// If method parameters present, locate immediately before them. |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
227 |
return (u2*)method_parameters_start() - 1; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
228 |
} else { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
229 |
// Else, the exception table is at the end of the constMethod. |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
230 |
return has_generic_signature() ? (last_u2_element() - 1) : |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
231 |
last_u2_element(); |
15601 | 232 |
} |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
233 |
} |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
234 |
} |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
235 |
} |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
236 |
|
1 | 237 |
// Update the flags to indicate the presence of these optional fields. |
15601 | 238 |
void ConstMethod::set_inlined_tables_length(InlineTableSizes* sizes) { |
239 |
_flags = 0; |
|
240 |
if (sizes->compressed_linenumber_size() > 0) |
|
1 | 241 |
_flags |= _has_linenumber_table; |
15601 | 242 |
if (sizes->generic_signature_index() != 0) |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14391
diff
changeset
|
243 |
_flags |= _has_generic_signature; |
27612
7201412afbd0
8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents:
24424
diff
changeset
|
244 |
if (sizes->method_parameters_length() >= 0) |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
245 |
_flags |= _has_method_parameters; |
15601 | 246 |
if (sizes->checked_exceptions_length() > 0) |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
247 |
_flags |= _has_checked_exceptions; |
15601 | 248 |
if (sizes->exception_table_length() > 0) |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
249 |
_flags |= _has_exception_table; |
15601 | 250 |
if (sizes->localvariable_table_length() > 0) |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
251 |
_flags |= _has_localvariable_table; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
252 |
|
15601 | 253 |
// annotations, they are all pointer sized embedded objects so don't have |
254 |
// a length embedded also. |
|
255 |
if (sizes->method_annotations_length() > 0) |
|
256 |
_flags |= _has_method_annotations; |
|
257 |
if (sizes->parameter_annotations_length() > 0) |
|
258 |
_flags |= _has_parameter_annotations; |
|
259 |
if (sizes->type_annotations_length() > 0) |
|
260 |
_flags |= _has_type_annotations; |
|
261 |
if (sizes->default_annotations_length() > 0) |
|
262 |
_flags |= _has_default_annotations; |
|
263 |
||
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
264 |
// This code is extremely brittle and should possibly be revised. |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
265 |
// The *_length_addr functions walk backwards through the |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
266 |
// constMethod data, using each of the length indexes ahead of them, |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
267 |
// as well as the flags variable. Therefore, the indexes must be |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
268 |
// initialized in reverse order, or else they will compute the wrong |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
269 |
// offsets. Moving the initialization of _flags into a separate |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
270 |
// block solves *half* of the problem, but the following part will |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
271 |
// still break if the order is not exactly right. |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
272 |
// |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
273 |
// Also, the servicability agent needs to be informed anytime |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
274 |
// anything is added here. It might be advisable to have some sort |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
275 |
// of indication of this inline. |
15601 | 276 |
if (sizes->generic_signature_index() != 0) |
277 |
*(generic_signature_index_addr()) = sizes->generic_signature_index(); |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
278 |
// New data should probably go here. |
27612
7201412afbd0
8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents:
24424
diff
changeset
|
279 |
if (sizes->method_parameters_length() >= 0) |
15601 | 280 |
*(method_parameters_length_addr()) = sizes->method_parameters_length(); |
281 |
if (sizes->checked_exceptions_length() > 0) |
|
282 |
*(checked_exceptions_length_addr()) = sizes->checked_exceptions_length(); |
|
283 |
if (sizes->exception_table_length() > 0) |
|
284 |
*(exception_table_length_addr()) = sizes->exception_table_length(); |
|
285 |
if (sizes->localvariable_table_length() > 0) |
|
286 |
*(localvariable_table_length_addr()) = sizes->localvariable_table_length(); |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
287 |
} |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
288 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
289 |
int ConstMethod::method_parameters_length() const { |
27612
7201412afbd0
8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents:
24424
diff
changeset
|
290 |
return has_method_parameters() ? *(method_parameters_length_addr()) : -1; |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
291 |
} |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
292 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
293 |
MethodParametersElement* ConstMethod::method_parameters_start() const { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
294 |
u2* addr = method_parameters_length_addr(); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
295 |
u2 length = *addr; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
296 |
addr -= length * sizeof(MethodParametersElement) / sizeof(u2); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
297 |
return (MethodParametersElement*) addr; |
1 | 298 |
} |
299 |
||
300 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
301 |
int ConstMethod::checked_exceptions_length() const { |
1 | 302 |
return has_checked_exceptions() ? *(checked_exceptions_length_addr()) : 0; |
303 |
} |
|
304 |
||
305 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
306 |
CheckedExceptionElement* ConstMethod::checked_exceptions_start() const { |
1 | 307 |
u2* addr = checked_exceptions_length_addr(); |
308 |
u2 length = *addr; |
|
309 |
assert(length > 0, "should only be called if table is present"); |
|
310 |
addr -= length * sizeof(CheckedExceptionElement) / sizeof(u2); |
|
311 |
return (CheckedExceptionElement*) addr; |
|
312 |
} |
|
313 |
||
314 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
315 |
int ConstMethod::localvariable_table_length() const { |
1 | 316 |
return has_localvariable_table() ? *(localvariable_table_length_addr()) : 0; |
317 |
} |
|
318 |
||
319 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
320 |
LocalVariableTableElement* ConstMethod::localvariable_table_start() const { |
1 | 321 |
u2* addr = localvariable_table_length_addr(); |
322 |
u2 length = *addr; |
|
323 |
assert(length > 0, "should only be called if table is present"); |
|
324 |
addr -= length * sizeof(LocalVariableTableElement) / sizeof(u2); |
|
325 |
return (LocalVariableTableElement*) addr; |
|
326 |
} |
|
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
327 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
328 |
int ConstMethod::exception_table_length() const { |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
329 |
return has_exception_handler() ? *(exception_table_length_addr()) : 0; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
330 |
} |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
331 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
332 |
ExceptionTableElement* ConstMethod::exception_table_start() const { |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
333 |
u2* addr = exception_table_length_addr(); |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
334 |
u2 length = *addr; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
335 |
assert(length > 0, "should only be called if table is present"); |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
336 |
addr -= length * sizeof(ExceptionTableElement) / sizeof(u2); |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
337 |
return (ExceptionTableElement*)addr; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
338 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
339 |
|
15601 | 340 |
AnnotationArray** ConstMethod::method_annotations_addr() const { |
341 |
assert(has_method_annotations(), "should only be called if method annotations are present"); |
|
342 |
return (AnnotationArray**)constMethod_end() - 1; |
|
343 |
} |
|
344 |
||
345 |
AnnotationArray** ConstMethod::parameter_annotations_addr() const { |
|
346 |
assert(has_parameter_annotations(), "should only be called if method parameter annotations are present"); |
|
347 |
int offset = 1; |
|
348 |
if (has_method_annotations()) offset++; |
|
349 |
return (AnnotationArray**)constMethod_end() - offset; |
|
350 |
} |
|
351 |
||
352 |
AnnotationArray** ConstMethod::type_annotations_addr() const { |
|
353 |
assert(has_type_annotations(), "should only be called if method type annotations are present"); |
|
354 |
int offset = 1; |
|
355 |
if (has_method_annotations()) offset++; |
|
356 |
if (has_parameter_annotations()) offset++; |
|
357 |
return (AnnotationArray**)constMethod_end() - offset; |
|
358 |
} |
|
359 |
||
360 |
AnnotationArray** ConstMethod::default_annotations_addr() const { |
|
361 |
assert(has_default_annotations(), "should only be called if method default annotations are present"); |
|
362 |
int offset = 1; |
|
363 |
if (has_method_annotations()) offset++; |
|
364 |
if (has_parameter_annotations()) offset++; |
|
365 |
if (has_type_annotations()) offset++; |
|
366 |
return (AnnotationArray**)constMethod_end() - offset; |
|
367 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
368 |
|
16588
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
369 |
// copy annotations from 'cm' to 'this' |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
370 |
void ConstMethod::copy_annotations_from(ConstMethod* cm) { |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
371 |
if (cm->has_method_annotations()) { |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
372 |
assert(has_method_annotations(), "should be allocated already"); |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
373 |
set_method_annotations(cm->method_annotations()); |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
374 |
} |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
375 |
if (cm->has_parameter_annotations()) { |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
376 |
assert(has_parameter_annotations(), "should be allocated already"); |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
377 |
set_parameter_annotations(cm->parameter_annotations()); |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
378 |
} |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
379 |
if (cm->has_type_annotations()) { |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
380 |
assert(has_type_annotations(), "should be allocated already"); |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
381 |
set_type_annotations(cm->type_annotations()); |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
382 |
} |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
383 |
if (cm->has_default_annotations()) { |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
384 |
assert(has_default_annotations(), "should be allocated already"); |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
385 |
set_default_annotations(cm->default_annotations()); |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
386 |
} |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
387 |
} |
7e90e795813e
8009531: Crash when redefining class with annotated method
coleenp
parents:
15935
diff
changeset
|
388 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
389 |
// Printing |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
390 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
391 |
void ConstMethod::print_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
392 |
ResourceMark rm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
393 |
assert(is_constMethod(), "must be constMethod"); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
394 |
st->print_cr("%s", internal_name()); |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
395 |
st->print(" - method: " INTPTR_FORMAT " ", p2i((address)method())); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
396 |
method()->print_value_on(st); st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
397 |
if (has_stackmap_table()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
398 |
st->print(" - stackmap data: "); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
399 |
stackmap_data()->print_value_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
400 |
st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
401 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
402 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
403 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
404 |
// Short version of printing ConstMethod* - just print the name of the |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
405 |
// method it belongs to. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
406 |
void ConstMethod::print_value_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
407 |
assert(is_constMethod(), "must be constMethod"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
408 |
st->print(" const part of method " ); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
409 |
method()->print_value_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
410 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
411 |
|
15437 | 412 |
#if INCLUDE_SERVICES |
413 |
// Size Statistics |
|
414 |
void ConstMethod::collect_statistics(KlassSizeStats *sz) const { |
|
415 |
int n1, n2, n3; |
|
416 |
sz->_const_method_bytes += (n1 = sz->count(this)); |
|
417 |
sz->_bytecode_bytes += (n2 = code_size()); |
|
418 |
sz->_stackmap_bytes += (n3 = sz->count_array(stackmap_data())); |
|
419 |
||
15601 | 420 |
// Count method annotations |
421 |
int a1 = 0, a2 = 0, a3 = 0, a4 = 0; |
|
422 |
if (has_method_annotations()) { |
|
423 |
sz->_methods_annotations_bytes += (a1 = sz->count_array(method_annotations())); |
|
424 |
} |
|
425 |
if (has_parameter_annotations()) { |
|
426 |
sz->_methods_parameter_annotations_bytes += (a2 = sz->count_array(parameter_annotations())); |
|
427 |
} |
|
428 |
if (has_type_annotations()) { |
|
429 |
sz->_methods_type_annotations_bytes += (a3 = sz->count_array(type_annotations())); |
|
430 |
} |
|
431 |
if (has_default_annotations()) { |
|
432 |
sz->_methods_default_annotations_bytes += (a4 = sz->count_array(default_annotations())); |
|
433 |
} |
|
434 |
||
435 |
int size_annotations = a1 + a2 + a3 + a4; |
|
436 |
||
437 |
sz->_method_all_bytes += n1 + n3 + size_annotations; // note: n2 is part of n3 |
|
438 |
sz->_ro_bytes += n1 + n3 + size_annotations; |
|
15437 | 439 |
} |
440 |
#endif // INCLUDE_SERVICES |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
441 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
442 |
// Verification |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
443 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
444 |
void ConstMethod::verify_on(outputStream* st) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
445 |
guarantee(is_constMethod(), "object must be constMethod"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
446 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
447 |
// Verification can occur during oop construction before the method or |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
448 |
// other fields have been initialized. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
449 |
guarantee(method()->is_method(), "should be method"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
450 |
|
15601 | 451 |
address m_end = (address)((intptr_t) this + size()); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
452 |
address compressed_table_start = code_end(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
453 |
guarantee(compressed_table_start <= m_end, "invalid method layout"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
454 |
address compressed_table_end = compressed_table_start; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
455 |
// Verify line number table |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
456 |
if (has_linenumber_table()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
457 |
CompressedLineNumberReadStream stream(compressed_linenumber_table()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
458 |
while (stream.read_pair()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
459 |
guarantee(stream.bci() >= 0 && stream.bci() <= code_size(), "invalid bci in line number table"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
460 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
461 |
compressed_table_end += stream.position(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
462 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
463 |
guarantee(compressed_table_end <= m_end, "invalid method layout"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
464 |
// Verify checked exceptions, exception table and local variable tables |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
465 |
if (has_method_parameters()) { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
466 |
u2* addr = method_parameters_length_addr(); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
467 |
guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout"); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
468 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
469 |
if (has_checked_exceptions()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
470 |
u2* addr = checked_exceptions_length_addr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
471 |
guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
472 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
473 |
if (has_exception_handler()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
474 |
u2* addr = exception_table_length_addr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
475 |
guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
476 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
477 |
if (has_localvariable_table()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
478 |
u2* addr = localvariable_table_length_addr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
479 |
guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
480 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
481 |
// Check compressed_table_end relative to uncompressed_table_start |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
482 |
u2* uncompressed_table_start; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
483 |
if (has_localvariable_table()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
484 |
uncompressed_table_start = (u2*) localvariable_table_start(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
485 |
} else if (has_exception_handler()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
486 |
uncompressed_table_start = (u2*) exception_table_start(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
487 |
} else if (has_checked_exceptions()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
488 |
uncompressed_table_start = (u2*) checked_exceptions_start(); |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
489 |
} else if (has_method_parameters()) { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
490 |
uncompressed_table_start = (u2*) method_parameters_start(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
491 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
492 |
uncompressed_table_start = (u2*) m_end; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
493 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
494 |
int gap = (intptr_t) uncompressed_table_start - (intptr_t) compressed_table_end; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
495 |
int max_gap = align_object_size(1)*BytesPerWord; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
496 |
guarantee(gap >= 0 && gap < max_gap, "invalid method layout"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
497 |
} |