annotate src/share/vm/oops/constMethod.hpp @ 8837:0c3ee6f1fa23

8009531: Crash when redefining class with annotated method Summary: Neglected to copy the annotations in clone_with_new_data when they were moved to ConstMethod. Reviewed-by: acorn, sspitsyn, dcubed
author coleenp
date Wed, 27 Mar 2013 08:19:50 -0400
parents c8b31b461e1a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 7588
diff changeset
2 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_OOPS_CONSTMETHODOOP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_OOPS_CONSTMETHODOOP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "oops/oop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
30 // An ConstMethod* represents portions of a Java method which
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // do not vary.
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // Memory layout (each line represents a word). Note that most
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // applications load thousands of methods, so keeping the size of this
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // structure small has a big impact on footprint.
a61af66fc99e Initial load
duke
parents:
diff changeset
36 //
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // |------------------------------------------------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // | header |
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // | klass |
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // |------------------------------------------------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // | fingerprint 1 |
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // | fingerprint 2 |
6123
2fe087c3e814 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 1972
diff changeset
43 // | constants (oop) |
0
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // | stackmap_data (oop) |
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // | constMethod_size |
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // | interp_kind | flags | code_size |
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // | name index | signature index |
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
48 // | method_idnum | max_stack |
7402
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
49 // | max_locals | size_of_parameters |
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // |------------------------------------------------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // | byte codes |
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // |------------------------------------------------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // | compressed linenumber table |
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // | (see class CompressedLineNumberReadStream) |
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // | (note that length is unknown until decompressed) |
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // | (access flags bit tells whether table is present) |
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
59 // | (indexed from start of ConstMethod*) |
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // | (elements not necessarily sorted!) |
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // |------------------------------------------------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // | localvariable table elements + length (length last) |
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // | (length is u2, elements are 6-tuples of u2) |
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // | (see class LocalVariableTableElement) |
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // | (access flags bit tells whether table is present) |
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
66 // | (indexed from end of ConstMethod*) |
6213
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
67 // |------------------------------------------------------|
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
68 // | exception table + length (length last) |
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
69 // | (length is u2, elements are 4-tuples of u2) |
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
70 // | (see class ExceptionTableElement) |
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
71 // | (access flags bit tells whether table is present) |
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
72 // | (indexed from end of ConstMethod*) |
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // |------------------------------------------------------|
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // | checked exceptions elements + length (length last) |
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // | (length is u2, elements are u2) |
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // | (see class CheckedExceptionElement) |
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // | (access flags bit tells whether table is present) |
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
78 // | (indexed from end of ConstMethod*) |
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
79 // |------------------------------------------------------|
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
80 // | method parameters elements + length (length last) |
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
81 // | (length is u2, elements are u2, u4 structures) |
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
82 // | (see class MethodParametersElement) |
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
83 // | (access flags bit tells whether table is present) |
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
84 // | (indexed from end of ConstMethod*) |
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
85 // |------------------------------------------------------|
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
86 // | generic signature index (u2) |
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
87 // | (indexed from start of constMethodOop) |
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // |------------------------------------------------------|
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
89 // | annotations arrays - method, parameter, type, default|
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
90 // | pointer to Array<u1> if annotation is present |
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
91 // |------------------------------------------------------|
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
92 //
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
93 // IMPORTANT: If anything gets added here, there need to be changes to
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
94 // ensure that ServicabilityAgent doesn't get broken as a result!
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
97 // Utility class describing elements in checked exceptions table inlined in Method*.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98 class CheckedExceptionElement VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
100 u2 class_cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 };
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
104 // Utility class describing elements in local variable table inlined in Method*.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105 class LocalVariableTableElement VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
107 u2 start_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 u2 length;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 u2 name_cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 u2 descriptor_cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 u2 signature_cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 u2 slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 };
a61af66fc99e Initial load
duke
parents:
diff changeset
114
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
115 // Utility class describing elements in exception table
6213
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
116 class ExceptionTableElement VALUE_OBJ_CLASS_SPEC {
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
117 public:
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
118 u2 start_pc;
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
119 u2 end_pc;
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
120 u2 handler_pc;
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
121 u2 catch_type_index;
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
122 };
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
123
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
124 // Utility class describing elements in method parameters
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
125 class MethodParametersElement VALUE_OBJ_CLASS_SPEC {
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
126 public:
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
127 u2 name_cp_index;
7983
24a91505f9d5 8006949: Update hotspot for MethodParameters format change
emc
parents: 7956
diff changeset
128 u2 flags;
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
129 };
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
130
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 7588
diff changeset
131 class KlassSizeStats;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
132
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
133 // Class to collect the sizes of ConstMethod inline tables
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
134 #define INLINE_TABLES_DO(do_element) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
135 do_element(localvariable_table_length) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
136 do_element(compressed_linenumber_size) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
137 do_element(exception_table_length) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
138 do_element(checked_exceptions_length) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
139 do_element(method_parameters_length) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
140 do_element(generic_signature_index) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
141 do_element(method_annotations_length) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
142 do_element(parameter_annotations_length) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
143 do_element(type_annotations_length) \
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
144 do_element(default_annotations_length)
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
145
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
146 #define INLINE_TABLE_DECLARE(sym) int _##sym;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
147 #define INLINE_TABLE_PARAM(sym) int sym,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
148 #define INLINE_TABLE_INIT(sym) _##sym(sym),
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
149 #define INLINE_TABLE_NULL(sym) _##sym(0),
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
150 #define INLINE_TABLE_ACCESSOR(sym) int sym() const { return _##sym; }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
151
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
152 class InlineTableSizes : StackObj {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
153 // declarations
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
154 INLINE_TABLES_DO(INLINE_TABLE_DECLARE)
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
155 int _end;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
156 public:
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
157 InlineTableSizes(
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
158 INLINE_TABLES_DO(INLINE_TABLE_PARAM)
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
159 int end) :
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
160 INLINE_TABLES_DO(INLINE_TABLE_INIT)
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
161 _end(end) {}
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
162
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
163 // Default constructor for no inlined tables
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
164 InlineTableSizes() :
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
165 INLINE_TABLES_DO(INLINE_TABLE_NULL)
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
166 _end(0) {}
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
167
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
168 // Accessors
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
169 INLINE_TABLES_DO(INLINE_TABLE_ACCESSOR)
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
170 };
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
171 #undef INLINE_TABLE_ACCESSOR
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
172 #undef INLINE_TABLE_NULL
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
173 #undef INLINE_TABLE_INIT
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
174 #undef INLINE_TABLE_PARAM
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
175 #undef INLINE_TABLE_DECLARE
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
176
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
177
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
178 class ConstMethod : public MetaspaceObj {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179 friend class VMStructs;
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
180
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
181 public:
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
182 typedef enum { NORMAL, OVERPASS } MethodType;
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
183
0
a61af66fc99e Initial load
duke
parents:
diff changeset
184 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
185 enum {
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
186 _has_linenumber_table = 0x0001,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
187 _has_checked_exceptions = 0x0002,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
188 _has_localvariable_table = 0x0004,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
189 _has_exception_table = 0x0008,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
190 _has_generic_signature = 0x0010,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
191 _has_method_parameters = 0x0020,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
192 _is_overpass = 0x0040,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
193 _has_method_annotations = 0x0080,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
194 _has_parameter_annotations = 0x0100,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
195 _has_type_annotations = 0x0200,
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
196 _has_default_annotations = 0x0400
0
a61af66fc99e Initial load
duke
parents:
diff changeset
197 };
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // Bit vector of signature
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Callers interpret 0=not initialized yet and
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // -1=too many args to fix, must parse the slow way.
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // The real initial value is special to account for nonatomicity of 64 bit
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // loads and stores. This value may updated and read without a lock by
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // multiple threads, so is volatile.
a61af66fc99e Initial load
duke
parents:
diff changeset
205 volatile uint64_t _fingerprint;
a61af66fc99e Initial load
duke
parents:
diff changeset
206
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
207 ConstantPool* _constants; // Constant pool
0
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // Raw stackmap data for the method
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
210 Array<u1>* _stackmap_data;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 int _constMethod_size;
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
213 u2 _flags;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
214
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
215 // Size of Java bytecodes allocated immediately after Method*.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 u2 _code_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 u2 _name_index; // Method name (index in constant pool)
a61af66fc99e Initial load
duke
parents:
diff changeset
218 u2 _signature_index; // Method signature (index in constant pool)
a61af66fc99e Initial load
duke
parents:
diff changeset
219 u2 _method_idnum; // unique identification number for the method within the class
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // initially corresponds to the index into the methods array.
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // but this may change with redefinition
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
222 u2 _max_stack; // Maximum number of entries on the expression stack
7402
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
223 u2 _max_locals; // Number of local variables used by this method
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
224 u2 _size_of_parameters; // size of the parameter block (receiver + arguments) in words
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
225
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
226 // Constructor
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
227 ConstMethod(int byte_code_size,
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
228 InlineTableSizes* sizes,
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
229 MethodType is_overpass,
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
230 int size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
231 public:
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
232
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
233 static ConstMethod* allocate(ClassLoaderData* loader_data,
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
234 int byte_code_size,
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
235 InlineTableSizes* sizes,
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
236 MethodType mt,
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
237 TRAPS);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
238
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
239 bool is_constMethod() const { return true; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
240
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // Inlined tables
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
242 void set_inlined_tables_length(InlineTableSizes* sizes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
243
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
244 bool has_generic_signature() const
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
245 { return (_flags & _has_generic_signature) != 0; }
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
246
0
a61af66fc99e Initial load
duke
parents:
diff changeset
247 bool has_linenumber_table() const
a61af66fc99e Initial load
duke
parents:
diff changeset
248 { return (_flags & _has_linenumber_table) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 bool has_checked_exceptions() const
a61af66fc99e Initial load
duke
parents:
diff changeset
251 { return (_flags & _has_checked_exceptions) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 bool has_localvariable_table() const
a61af66fc99e Initial load
duke
parents:
diff changeset
254 { return (_flags & _has_localvariable_table) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
255
6213
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
256 bool has_exception_handler() const
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
257 { return (_flags & _has_exception_table) != 0; }
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
258
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
259 bool has_method_parameters() const
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
260 { return (_flags & _has_method_parameters) != 0; }
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
261
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
262 MethodType method_type() const {
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
263 return ((_flags & _is_overpass) == 0) ? NORMAL : OVERPASS;
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
264 }
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
265
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
266 void set_method_type(MethodType mt) {
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
267 if (mt == NORMAL) {
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
268 _flags &= ~(_is_overpass);
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
269 } else {
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
270 _flags |= _is_overpass;
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
271 }
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
272 }
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6725
diff changeset
273
6123
2fe087c3e814 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 1972
diff changeset
274 // constant pool
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
275 ConstantPool* constants() const { return _constants; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
276 void set_constants(ConstantPool* c) { _constants = c; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
277
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
278 Method* method() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // stackmap table data
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
281 Array<u1>* stackmap_data() const { return _stackmap_data; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
282 void set_stackmap_data(Array<u1>* sd) { _stackmap_data = sd; }
8719
c8b31b461e1a 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 8031
diff changeset
283 void copy_stackmap_data(ClassLoaderData* loader_data, u1* sd, int length, TRAPS);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
284 bool has_stackmap_table() const { return _stackmap_data != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 void init_fingerprint() {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 const uint64_t initval = CONST64(0x8000000000000000);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 _fingerprint = initval;
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 uint64_t fingerprint() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // Since reads aren't atomic for 64 bits, if any of the high or low order
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // word is the initial value, return 0. See init_fingerprint for initval.
a61af66fc99e Initial load
duke
parents:
diff changeset
294 uint high_fp = (uint)(_fingerprint >> 32);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 if ((int) _fingerprint == 0 || high_fp == 0x80000000) {
a61af66fc99e Initial load
duke
parents:
diff changeset
296 return 0L;
a61af66fc99e Initial load
duke
parents:
diff changeset
297 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 return _fingerprint;
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 uint64_t set_fingerprint(uint64_t new_fingerprint) {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // Assert only valid if complete/valid 64 bit _fingerprint value is read.
a61af66fc99e Initial load
duke
parents:
diff changeset
305 uint64_t oldfp = fingerprint();
a61af66fc99e Initial load
duke
parents:
diff changeset
306 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
307 _fingerprint = new_fingerprint;
a61af66fc99e Initial load
duke
parents:
diff changeset
308 assert(oldfp == 0L || new_fingerprint == oldfp,
a61af66fc99e Initial load
duke
parents:
diff changeset
309 "fingerprint cannot change");
a61af66fc99e Initial load
duke
parents:
diff changeset
310 assert(((new_fingerprint >> 32) != 0x80000000) && (int)new_fingerprint !=0,
a61af66fc99e Initial load
duke
parents:
diff changeset
311 "fingerprint should call init to set initial value");
a61af66fc99e Initial load
duke
parents:
diff changeset
312 return new_fingerprint;
a61af66fc99e Initial load
duke
parents:
diff changeset
313 }
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // name
a61af66fc99e Initial load
duke
parents:
diff changeset
316 int name_index() const { return _name_index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 void set_name_index(int index) { _name_index = index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // signature
a61af66fc99e Initial load
duke
parents:
diff changeset
320 int signature_index() const { return _signature_index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
321 void set_signature_index(int index) { _signature_index = index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // generics support
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
324 int generic_signature_index() const {
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
325 if (has_generic_signature()) {
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
326 return *generic_signature_index_addr();
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
327 } else {
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
328 return 0;
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
329 }
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
330 }
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
331 void set_generic_signature_index(u2 index) {
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
332 assert(has_generic_signature(), "");
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
333 u2* addr = generic_signature_index_addr();
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
334 *addr = index;
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
335 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // Sizing
a61af66fc99e Initial load
duke
parents:
diff changeset
338 static int header_size() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
339 return sizeof(ConstMethod)/HeapWordSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
340 }
a61af66fc99e Initial load
duke
parents:
diff changeset
341
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
342 // Size needed
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
343 static int size(int code_size, InlineTableSizes* sizes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
344
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
345 int size() const { return _constMethod_size;}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
346 void set_constMethod_size(int size) { _constMethod_size = size; }
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 7588
diff changeset
347 #if INCLUDE_SERVICES
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 7588
diff changeset
348 void collect_statistics(KlassSizeStats *sz) const;
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 7588
diff changeset
349 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // code size
a61af66fc99e Initial load
duke
parents:
diff changeset
352 int code_size() const { return _code_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
353 void set_code_size(int size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
354 assert(max_method_code_size < (1 << 16),
a61af66fc99e Initial load
duke
parents:
diff changeset
355 "u2 is too small to hold method code size in general");
a61af66fc99e Initial load
duke
parents:
diff changeset
356 assert(0 <= size && size <= max_method_code_size, "invalid code size");
a61af66fc99e Initial load
duke
parents:
diff changeset
357 _code_size = size;
a61af66fc99e Initial load
duke
parents:
diff changeset
358 }
a61af66fc99e Initial load
duke
parents:
diff changeset
359
a61af66fc99e Initial load
duke
parents:
diff changeset
360 // linenumber table - note that length is unknown until decompression,
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // see class CompressedLineNumberReadStream.
a61af66fc99e Initial load
duke
parents:
diff changeset
362 u_char* compressed_linenumber_table() const; // not preserved by gc
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
363 u2* generic_signature_index_addr() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
364 u2* checked_exceptions_length_addr() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
365 u2* localvariable_table_length_addr() const;
6213
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
366 u2* exception_table_length_addr() const;
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
367 u2* method_parameters_length_addr() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // checked exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
370 int checked_exceptions_length() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
371 CheckedExceptionElement* checked_exceptions_start() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 // localvariable table
a61af66fc99e Initial load
duke
parents:
diff changeset
374 int localvariable_table_length() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
375 LocalVariableTableElement* localvariable_table_start() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
376
6213
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
377 // exception table
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
378 int exception_table_length() const;
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
379 ExceptionTableElement* exception_table_start() const;
8150fa46d2ed 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 6123
diff changeset
380
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
381 // method parameters table
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
382 int method_parameters_length() const;
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
383 MethodParametersElement* method_parameters_start() const;
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7402
diff changeset
384
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
385 // method annotations
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
386 bool has_method_annotations() const
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
387 { return (_flags & _has_method_annotations) != 0; }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
388
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
389 bool has_parameter_annotations() const
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
390 { return (_flags & _has_parameter_annotations) != 0; }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
391
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
392 bool has_type_annotations() const
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
393 { return (_flags & _has_type_annotations) != 0; }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
394
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
395 bool has_default_annotations() const
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
396 { return (_flags & _has_default_annotations) != 0; }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
397
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
398
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
399 AnnotationArray** method_annotations_addr() const;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
400 AnnotationArray* method_annotations() const {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
401 return has_method_annotations() ? *(method_annotations_addr()) : NULL;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
402 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
403 void set_method_annotations(AnnotationArray* anno) {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
404 *(method_annotations_addr()) = anno;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
405 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
406
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
407 AnnotationArray** parameter_annotations_addr() const;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
408 AnnotationArray* parameter_annotations() const {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
409 return has_parameter_annotations() ? *(parameter_annotations_addr()) : NULL;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
410 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
411 void set_parameter_annotations(AnnotationArray* anno) {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
412 *(parameter_annotations_addr()) = anno;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
413 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
414
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
415 AnnotationArray** type_annotations_addr() const;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
416 AnnotationArray* type_annotations() const {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
417 return has_type_annotations() ? *(type_annotations_addr()) : NULL;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
418 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
419 void set_type_annotations(AnnotationArray* anno) {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
420 *(type_annotations_addr()) = anno;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
421 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
422
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
423 AnnotationArray** default_annotations_addr() const;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
424 AnnotationArray* default_annotations() const {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
425 return has_default_annotations() ? *(default_annotations_addr()) : NULL;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
426 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
427 void set_default_annotations(AnnotationArray* anno) {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
428 *(default_annotations_addr()) = anno;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
429 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
430
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
431 int method_annotations_length() const {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
432 return has_method_annotations() ? method_annotations()->length() : 0;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
433 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
434 int parameter_annotations_length() const {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
435 return has_parameter_annotations() ? parameter_annotations()->length() : 0;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
436 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
437 int type_annotations_length() const {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
438 return has_type_annotations() ? type_annotations()->length() : 0;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
439 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
440 int default_annotations_length() const {
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
441 return has_default_annotations() ? default_annotations()->length() : 0;
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
442 }
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
443
8837
0c3ee6f1fa23 8009531: Crash when redefining class with annotated method
coleenp
parents: 8719
diff changeset
444 // Copy annotations from other ConstMethod
0c3ee6f1fa23 8009531: Crash when redefining class with annotated method
coleenp
parents: 8719
diff changeset
445 void copy_annotations_from(ConstMethod* cm);
0c3ee6f1fa23 8009531: Crash when redefining class with annotated method
coleenp
parents: 8719
diff changeset
446
0
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // byte codes
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 579
diff changeset
448 void set_code(address code) {
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 579
diff changeset
449 if (code_size() > 0) {
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 579
diff changeset
450 memcpy(code_base(), code, code_size());
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 579
diff changeset
451 }
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 579
diff changeset
452 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
453 address code_base() const { return (address) (this+1); }
a61af66fc99e Initial load
duke
parents:
diff changeset
454 address code_end() const { return code_base() + code_size(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
455 bool contains(address bcp) const { return code_base() <= bcp
a61af66fc99e Initial load
duke
parents:
diff changeset
456 && bcp < code_end(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // Offset to bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
458 static ByteSize codes_offset()
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
459 { return in_ByteSize(sizeof(ConstMethod)); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
460
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
461 static ByteSize constants_offset()
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
462 { return byte_offset_of(ConstMethod, _constants); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
463
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
464 static ByteSize max_stack_offset()
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
465 { return byte_offset_of(ConstMethod, _max_stack); }
7402
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
466 static ByteSize size_of_locals_offset()
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
467 { return byte_offset_of(ConstMethod, _max_locals); }
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
468 static ByteSize size_of_parameters_offset()
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
469 { return byte_offset_of(ConstMethod, _size_of_parameters); }
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
470
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
471
0
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // Unique id for the method
a61af66fc99e Initial load
duke
parents:
diff changeset
473 static const u2 MAX_IDNUM;
a61af66fc99e Initial load
duke
parents:
diff changeset
474 static const u2 UNSET_IDNUM;
a61af66fc99e Initial load
duke
parents:
diff changeset
475 u2 method_idnum() const { return _method_idnum; }
a61af66fc99e Initial load
duke
parents:
diff changeset
476 void set_method_idnum(u2 idnum) { _method_idnum = idnum; }
a61af66fc99e Initial load
duke
parents:
diff changeset
477
7183
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
478 // max stack
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
479 int max_stack() const { return _max_stack; }
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
480 void set_max_stack(int size) { _max_stack = size; }
b2dbd323c668 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 6934
diff changeset
481
7402
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
482 // max locals
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
483 int max_locals() const { return _max_locals; }
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
484 void set_max_locals(int size) { _max_locals = size; }
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
485
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
486 // size of parameters
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
487 int size_of_parameters() const { return _size_of_parameters; }
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
488 void set_size_of_parameters(int size) { _size_of_parameters = size; }
fd74228fd5ca 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 7183
diff changeset
489
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
490 // Deallocation for RedefineClasses
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
491 void deallocate_contents(ClassLoaderData* loader_data);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
492 bool is_klass() const { return false; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
493 DEBUG_ONLY(bool on_stack() { return false; })
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
494
0
a61af66fc99e Initial load
duke
parents:
diff changeset
495 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // Since the size of the compressed line number table is unknown, the
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // offsets of the other variable sized sections are computed backwards
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
498 // from the end of the ConstMethod*.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
499
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
500 // First byte after ConstMethod*
0
a61af66fc99e Initial load
duke
parents:
diff changeset
501 address constMethod_end() const
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
502 { return (address)((intptr_t*)this + _constMethod_size); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
503
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
504 // Last short in ConstMethod*
8031
927a311d00f9 8007320: NPG: move method annotations
coleenp
parents: 7983
diff changeset
505 u2* last_u2_element() const;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
506
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
507 public:
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
508 // Printing
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
509 void print_on (outputStream* st) const;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
510 void print_value_on(outputStream* st) const;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
511
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
512 const char* internal_name() const { return "{constMethod}"; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
513
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
514 // Verify
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6213
diff changeset
515 void verify_on(outputStream* st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
516 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
517
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
518 #endif // SHARE_VM_OOPS_CONSTMETHODOOP_HPP