author | emc |
Mon, 04 Feb 2013 13:05:32 -0500 | |
changeset 15464 | 1f2cca0aa501 |
parent 15437 | eabd4555d072 |
child 15601 | df8faef6efaf |
permissions | -rw-r--r-- |
1 | 1 |
/* |
15437 | 2 |
* Copyright (c) 2003, 2013, 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:
4567
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4567
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:
4567
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OOPS_CONSTMETHODOOP_HPP |
26 |
#define SHARE_VM_OOPS_CONSTMETHODOOP_HPP |
|
27 |
||
28 |
#include "oops/oop.hpp" |
|
29 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
30 |
// An ConstMethod* represents portions of a Java method which |
1 | 31 |
// do not vary. |
32 |
// |
|
33 |
// Memory layout (each line represents a word). Note that most |
|
34 |
// applications load thousands of methods, so keeping the size of this |
|
35 |
// structure small has a big impact on footprint. |
|
36 |
// |
|
37 |
// |------------------------------------------------------| |
|
38 |
// | header | |
|
39 |
// | klass | |
|
40 |
// |------------------------------------------------------| |
|
41 |
// | fingerprint 1 | |
|
42 |
// | fingerprint 2 | |
|
12937
0032fb2caff6
7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents:
7397
diff
changeset
|
43 |
// | constants (oop) | |
1 | 44 |
// | stackmap_data (oop) | |
45 |
// | constMethod_size | |
|
46 |
// | interp_kind | flags | code_size | |
|
47 |
// | name index | signature index | |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
48 |
// | method_idnum | max_stack | |
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
49 |
// | max_locals | size_of_parameters | |
1 | 50 |
// |------------------------------------------------------| |
51 |
// | | |
|
52 |
// | byte codes | |
|
53 |
// | | |
|
54 |
// |------------------------------------------------------| |
|
55 |
// | compressed linenumber table | |
|
56 |
// | (see class CompressedLineNumberReadStream) | |
|
57 |
// | (note that length is unknown until decompressed) | |
|
58 |
// | (access flags bit tells whether table is present) | |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
59 |
// | (indexed from start of ConstMethod*) | |
1 | 60 |
// | (elements not necessarily sorted!) | |
61 |
// |------------------------------------------------------| |
|
62 |
// | localvariable table elements + length (length last) | |
|
63 |
// | (length is u2, elements are 6-tuples of u2) | |
|
64 |
// | (see class LocalVariableTableElement) | |
|
65 |
// | (access flags bit tells whether table is present) | |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
66 |
// | (indexed from end of ConstMethod*) | |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
67 |
// |------------------------------------------------------| |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
68 |
// | exception table + length (length last) | |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
69 |
// | (length is u2, elements are 4-tuples of u2) | |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
70 |
// | (see class ExceptionTableElement) | |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
71 |
// | (access flags bit tells whether table is present) | |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
72 |
// | (indexed from end of ConstMethod*) | |
1 | 73 |
// |------------------------------------------------------| |
74 |
// | checked exceptions elements + length (length last) | |
|
75 |
// | (length is u2, elements are u2) | |
|
76 |
// | (see class CheckedExceptionElement) | |
|
77 |
// | (access flags bit tells whether table is present) | |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
78 |
// | (indexed from end of ConstMethod*) | |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
79 |
// |------------------------------------------------------| |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
80 |
// | method parameters elements + length (length last) | |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
81 |
// | (length is u2, elements are u2, u4 structures) | |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
82 |
// | (see class MethodParametersElement) | |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
83 |
// | (access flags bit tells whether table is present) | |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
84 |
// | (indexed from end of ConstMethod*) | |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
85 |
// |------------------------------------------------------| |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
86 |
// | generic signature index (u2) | |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
87 |
// | (indexed from start of constMethodOop) | |
1 | 88 |
// |------------------------------------------------------| |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
89 |
// |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
90 |
// IMPORTANT: If anything gets added here, there need to be changes to |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
91 |
// ensure that ServicabilityAgent doesn't get broken as a result! |
1 | 92 |
|
93 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
94 |
// Utitily class decribing elements in checked exceptions table inlined in Method*. |
1 | 95 |
class CheckedExceptionElement VALUE_OBJ_CLASS_SPEC { |
96 |
public: |
|
97 |
u2 class_cp_index; |
|
98 |
}; |
|
99 |
||
100 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
101 |
// Utitily class decribing elements in local variable table inlined in Method*. |
1 | 102 |
class LocalVariableTableElement VALUE_OBJ_CLASS_SPEC { |
103 |
public: |
|
104 |
u2 start_bci; |
|
105 |
u2 length; |
|
106 |
u2 name_cp_index; |
|
107 |
u2 descriptor_cp_index; |
|
108 |
u2 signature_cp_index; |
|
109 |
u2 slot; |
|
110 |
}; |
|
111 |
||
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
112 |
// Utitily class describing elements in exception table |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
113 |
class ExceptionTableElement VALUE_OBJ_CLASS_SPEC { |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
114 |
public: |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
115 |
u2 start_pc; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
116 |
u2 end_pc; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
117 |
u2 handler_pc; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
118 |
u2 catch_type_index; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
119 |
}; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
120 |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
121 |
// Utility class describing elements in method parameters |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
122 |
class MethodParametersElement VALUE_OBJ_CLASS_SPEC { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
123 |
public: |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
124 |
u2 name_cp_index; |
15464
1f2cca0aa501
8006949: Update hotspot for MethodParameters format change
emc
parents:
15437
diff
changeset
|
125 |
u2 flags; |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
126 |
}; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
127 |
|
15437 | 128 |
class KlassSizeStats; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
129 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
130 |
class ConstMethod : public MetaspaceObj { |
1 | 131 |
friend class VMStructs; |
14385 | 132 |
|
133 |
public: |
|
134 |
typedef enum { NORMAL, OVERPASS } MethodType; |
|
135 |
||
1 | 136 |
private: |
137 |
enum { |
|
138 |
_has_linenumber_table = 1, |
|
139 |
_has_checked_exceptions = 2, |
|
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
140 |
_has_localvariable_table = 4, |
14385 | 141 |
_has_exception_table = 8, |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
142 |
_has_generic_signature = 16, |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
143 |
_has_method_parameters = 32, |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
144 |
_is_overpass = 64 |
1 | 145 |
}; |
146 |
||
147 |
// Bit vector of signature |
|
148 |
// Callers interpret 0=not initialized yet and |
|
149 |
// -1=too many args to fix, must parse the slow way. |
|
150 |
// The real initial value is special to account for nonatomicity of 64 bit |
|
151 |
// loads and stores. This value may updated and read without a lock by |
|
152 |
// multiple threads, so is volatile. |
|
153 |
volatile uint64_t _fingerprint; |
|
154 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
155 |
ConstantPool* _constants; // Constant pool |
1 | 156 |
|
157 |
// Raw stackmap data for the method |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
158 |
Array<u1>* _stackmap_data; |
1 | 159 |
|
160 |
int _constMethod_size; |
|
161 |
jbyte _interpreter_kind; |
|
162 |
jbyte _flags; |
|
163 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
164 |
// Size of Java bytecodes allocated immediately after Method*. |
1 | 165 |
u2 _code_size; |
166 |
u2 _name_index; // Method name (index in constant pool) |
|
167 |
u2 _signature_index; // Method signature (index in constant pool) |
|
168 |
u2 _method_idnum; // unique identification number for the method within the class |
|
169 |
// initially corresponds to the index into the methods array. |
|
170 |
// but this may change with redefinition |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
171 |
u2 _max_stack; // Maximum number of entries on the expression stack |
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
172 |
u2 _max_locals; // Number of local variables used by this method |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
173 |
u2 _size_of_parameters; // size of the parameter block (receiver + arguments) in words |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
174 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
175 |
// Constructor |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
176 |
ConstMethod(int byte_code_size, |
14385 | 177 |
int compressed_line_number_size, |
178 |
int localvariable_table_length, |
|
179 |
int exception_table_length, |
|
180 |
int checked_exceptions_length, |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
181 |
int method_parameters_length, |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
182 |
u2 generic_signature_index, |
14385 | 183 |
MethodType is_overpass, |
184 |
int size); |
|
1 | 185 |
public: |
14385 | 186 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
187 |
static ConstMethod* allocate(ClassLoaderData* loader_data, |
14385 | 188 |
int byte_code_size, |
189 |
int compressed_line_number_size, |
|
190 |
int localvariable_table_length, |
|
191 |
int exception_table_length, |
|
192 |
int checked_exceptions_length, |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
193 |
int method_parameters_length, |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
194 |
u2 generic_signature_index, |
14385 | 195 |
MethodType mt, |
196 |
TRAPS); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
197 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
198 |
bool is_constMethod() const { return true; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
199 |
|
1 | 200 |
// Inlined tables |
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
201 |
void set_inlined_tables_length(u2 generic_signature_index, |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
202 |
int checked_exceptions_len, |
1 | 203 |
int compressed_line_number_size, |
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
204 |
int localvariable_table_len, |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
205 |
int exception_table_len, |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
206 |
int method_parameters_length); |
1 | 207 |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
208 |
bool has_generic_signature() const |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
209 |
{ return (_flags & _has_generic_signature) != 0; } |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
210 |
|
1 | 211 |
bool has_linenumber_table() const |
212 |
{ return (_flags & _has_linenumber_table) != 0; } |
|
213 |
||
214 |
bool has_checked_exceptions() const |
|
215 |
{ return (_flags & _has_checked_exceptions) != 0; } |
|
216 |
||
217 |
bool has_localvariable_table() const |
|
218 |
{ return (_flags & _has_localvariable_table) != 0; } |
|
219 |
||
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
220 |
bool has_exception_handler() const |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
221 |
{ return (_flags & _has_exception_table) != 0; } |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
222 |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
223 |
bool has_method_parameters() const |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
224 |
{ return (_flags & _has_method_parameters) != 0; } |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
225 |
|
14385 | 226 |
MethodType method_type() const { |
227 |
return ((_flags & _is_overpass) == 0) ? NORMAL : OVERPASS; |
|
228 |
} |
|
229 |
||
230 |
void set_method_type(MethodType mt) { |
|
231 |
if (mt == NORMAL) { |
|
232 |
_flags &= ~(_is_overpass); |
|
233 |
} else { |
|
234 |
_flags |= _is_overpass; |
|
235 |
} |
|
236 |
} |
|
237 |
||
238 |
||
1 | 239 |
void set_interpreter_kind(int kind) { _interpreter_kind = kind; } |
240 |
int interpreter_kind(void) const { return _interpreter_kind; } |
|
241 |
||
12937
0032fb2caff6
7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents:
7397
diff
changeset
|
242 |
// constant pool |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
243 |
ConstantPool* constants() const { return _constants; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
244 |
void set_constants(ConstantPool* c) { _constants = c; } |
1 | 245 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
246 |
Method* method() const; |
1 | 247 |
|
248 |
// stackmap table data |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
249 |
Array<u1>* stackmap_data() const { return _stackmap_data; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
250 |
void set_stackmap_data(Array<u1>* sd) { _stackmap_data = sd; } |
1 | 251 |
bool has_stackmap_table() const { return _stackmap_data != NULL; } |
252 |
||
253 |
void init_fingerprint() { |
|
254 |
const uint64_t initval = CONST64(0x8000000000000000); |
|
255 |
_fingerprint = initval; |
|
256 |
} |
|
257 |
||
258 |
uint64_t fingerprint() const { |
|
259 |
// Since reads aren't atomic for 64 bits, if any of the high or low order |
|
260 |
// word is the initial value, return 0. See init_fingerprint for initval. |
|
261 |
uint high_fp = (uint)(_fingerprint >> 32); |
|
262 |
if ((int) _fingerprint == 0 || high_fp == 0x80000000) { |
|
263 |
return 0L; |
|
264 |
} else { |
|
265 |
return _fingerprint; |
|
266 |
} |
|
267 |
} |
|
268 |
||
269 |
uint64_t set_fingerprint(uint64_t new_fingerprint) { |
|
270 |
#ifdef ASSERT |
|
271 |
// Assert only valid if complete/valid 64 bit _fingerprint value is read. |
|
272 |
uint64_t oldfp = fingerprint(); |
|
273 |
#endif // ASSERT |
|
274 |
_fingerprint = new_fingerprint; |
|
275 |
assert(oldfp == 0L || new_fingerprint == oldfp, |
|
276 |
"fingerprint cannot change"); |
|
277 |
assert(((new_fingerprint >> 32) != 0x80000000) && (int)new_fingerprint !=0, |
|
278 |
"fingerprint should call init to set initial value"); |
|
279 |
return new_fingerprint; |
|
280 |
} |
|
281 |
||
282 |
// name |
|
283 |
int name_index() const { return _name_index; } |
|
284 |
void set_name_index(int index) { _name_index = index; } |
|
285 |
||
286 |
// signature |
|
287 |
int signature_index() const { return _signature_index; } |
|
288 |
void set_signature_index(int index) { _signature_index = index; } |
|
289 |
||
290 |
// generics support |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
291 |
int generic_signature_index() const { |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
292 |
if (has_generic_signature()) { |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
293 |
return *generic_signature_index_addr(); |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
294 |
} else { |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
295 |
return 0; |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
296 |
} |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
297 |
} |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
298 |
void set_generic_signature_index(u2 index) { |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
299 |
assert(has_generic_signature(), ""); |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
300 |
u2* addr = generic_signature_index_addr(); |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
301 |
*addr = index; |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
302 |
} |
1 | 303 |
|
304 |
// Sizing |
|
305 |
static int header_size() { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
306 |
return sizeof(ConstMethod)/HeapWordSize; |
1 | 307 |
} |
308 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
309 |
// Size needed |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
310 |
static int size(int code_size, int compressed_line_number_size, |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
311 |
int local_variable_table_length, |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
312 |
int exception_table_length, |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
313 |
int checked_exceptions_length, |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
314 |
int method_parameters_length, |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
315 |
u2 generic_signature_index); |
1 | 316 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
317 |
int size() const { return _constMethod_size;} |
1 | 318 |
void set_constMethod_size(int size) { _constMethod_size = size; } |
15437 | 319 |
#if INCLUDE_SERVICES |
320 |
void collect_statistics(KlassSizeStats *sz) const; |
|
321 |
#endif |
|
1 | 322 |
|
323 |
// code size |
|
324 |
int code_size() const { return _code_size; } |
|
325 |
void set_code_size(int size) { |
|
326 |
assert(max_method_code_size < (1 << 16), |
|
327 |
"u2 is too small to hold method code size in general"); |
|
328 |
assert(0 <= size && size <= max_method_code_size, "invalid code size"); |
|
329 |
_code_size = size; |
|
330 |
} |
|
331 |
||
332 |
// linenumber table - note that length is unknown until decompression, |
|
333 |
// see class CompressedLineNumberReadStream. |
|
334 |
u_char* compressed_linenumber_table() const; // not preserved by gc |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
335 |
u2* generic_signature_index_addr() const; |
1 | 336 |
u2* checked_exceptions_length_addr() const; |
337 |
u2* localvariable_table_length_addr() const; |
|
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
338 |
u2* exception_table_length_addr() const; |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
339 |
u2* method_parameters_length_addr() const; |
1 | 340 |
|
341 |
// checked exceptions |
|
342 |
int checked_exceptions_length() const; |
|
343 |
CheckedExceptionElement* checked_exceptions_start() const; |
|
344 |
||
345 |
// localvariable table |
|
346 |
int localvariable_table_length() const; |
|
347 |
LocalVariableTableElement* localvariable_table_start() const; |
|
348 |
||
13282
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
349 |
// exception table |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
350 |
int exception_table_length() const; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
351 |
ExceptionTableElement* exception_table_start() const; |
9872915dd78d
7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents:
12937
diff
changeset
|
352 |
|
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
353 |
// method parameters table |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
354 |
int method_parameters_length() const; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
355 |
MethodParametersElement* method_parameters_start() const; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14745
diff
changeset
|
356 |
|
1 | 357 |
// byte codes |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
2105
diff
changeset
|
358 |
void set_code(address code) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
2105
diff
changeset
|
359 |
if (code_size() > 0) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
2105
diff
changeset
|
360 |
memcpy(code_base(), code, code_size()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
2105
diff
changeset
|
361 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
2105
diff
changeset
|
362 |
} |
1 | 363 |
address code_base() const { return (address) (this+1); } |
364 |
address code_end() const { return code_base() + code_size(); } |
|
365 |
bool contains(address bcp) const { return code_base() <= bcp |
|
366 |
&& bcp < code_end(); } |
|
367 |
// Offset to bytecodes |
|
368 |
static ByteSize codes_offset() |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
369 |
{ return in_ByteSize(sizeof(ConstMethod)); } |
1 | 370 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
371 |
static ByteSize constants_offset() |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
372 |
{ return byte_offset_of(ConstMethod, _constants); } |
1 | 373 |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
374 |
static ByteSize max_stack_offset() |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
375 |
{ return byte_offset_of(ConstMethod, _max_stack); } |
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
376 |
static ByteSize size_of_locals_offset() |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
377 |
{ return byte_offset_of(ConstMethod, _max_locals); } |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
378 |
static ByteSize size_of_parameters_offset() |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
379 |
{ return byte_offset_of(ConstMethod, _size_of_parameters); } |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
380 |
|
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
381 |
|
1 | 382 |
// Unique id for the method |
383 |
static const u2 MAX_IDNUM; |
|
384 |
static const u2 UNSET_IDNUM; |
|
385 |
u2 method_idnum() const { return _method_idnum; } |
|
386 |
void set_method_idnum(u2 idnum) { _method_idnum = idnum; } |
|
387 |
||
14586
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
388 |
// max stack |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
389 |
int max_stack() const { return _max_stack; } |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
390 |
void set_max_stack(int size) { _max_stack = size; } |
1262473e8fc1
8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents:
14385
diff
changeset
|
391 |
|
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
392 |
// max locals |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
393 |
int max_locals() const { return _max_locals; } |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
394 |
void set_max_locals(int size) { _max_locals = size; } |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
395 |
|
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
396 |
// size of parameters |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
397 |
int size_of_parameters() const { return _size_of_parameters; } |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
398 |
void set_size_of_parameters(int size) { _size_of_parameters = size; } |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14586
diff
changeset
|
399 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
400 |
// Deallocation for RedefineClasses |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
401 |
void deallocate_contents(ClassLoaderData* loader_data); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
402 |
bool is_klass() const { return false; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
403 |
DEBUG_ONLY(bool on_stack() { return false; }) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
404 |
|
1 | 405 |
private: |
406 |
// Since the size of the compressed line number table is unknown, the |
|
407 |
// offsets of the other variable sized sections are computed backwards |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
408 |
// from the end of the ConstMethod*. |
1 | 409 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
410 |
// First byte after ConstMethod* |
1 | 411 |
address constMethod_end() const |
412 |
{ return (address)((oop*)this + _constMethod_size); } |
|
413 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
414 |
// Last short in ConstMethod* |
1 | 415 |
u2* last_u2_element() const |
416 |
{ return (u2*)constMethod_end() - 1; } |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
417 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
418 |
public: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
419 |
// Printing |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
420 |
void print_on (outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
421 |
void print_value_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
422 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
423 |
const char* internal_name() const { return "{constMethod}"; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
424 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
425 |
// Verify |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13282
diff
changeset
|
426 |
void verify_on(outputStream* st); |
1 | 427 |
}; |
7397 | 428 |
|
429 |
#endif // SHARE_VM_OOPS_CONSTMETHODOOP_HPP |