author | simonis |
Tue, 19 Jun 2018 09:43:53 +0200 | |
changeset 50625 | d9753e3db0c6 |
parent 50532 | a18c60527166 |
child 50634 | c349d409262a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
48619
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
2 |
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5420
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5420
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:
5420
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_CLASSFILE_JAVACLASSES_HPP |
26 |
#define SHARE_VM_CLASSFILE_JAVACLASSES_HPP |
|
27 |
||
28 |
#include "classfile/systemDictionary.hpp" |
|
29 |
#include "jvmtifiles/jvmti.h" |
|
30 |
#include "oops/oop.hpp" |
|
31 |
#include "runtime/os.hpp" |
|
32 |
#include "utilities/utf8.hpp" |
|
33 |
||
1 | 34 |
// Interface for manipulating the basic Java classes. |
35 |
// |
|
36 |
// All dependencies on layout of actual Java classes should be kept here. |
|
37 |
// If the layout of any of the classes above changes the offsets must be adjusted. |
|
38 |
// |
|
39 |
// For most classes we hardwire the offsets for performance reasons. In certain |
|
40 |
// cases (e.g. java.security.AccessControlContext) we compute the offsets at |
|
41 |
// startup since the layout here differs between JDK1.2 and JDK1.3. |
|
42 |
// |
|
43 |
// Note that fields (static and non-static) are arranged with oops before non-oops |
|
44 |
// on a per class basis. The offsets below have to reflect this ordering. |
|
45 |
// |
|
46 |
// When editing the layouts please update the check_offset verification code |
|
47 |
// correspondingly. The names in the enums must be identical to the actual field |
|
48 |
// names in order for the verification code to work. |
|
49 |
||
50 |
||
51 |
// Interface to java.lang.String objects |
|
52 |
||
53 |
class java_lang_String : AllStatic { |
|
54 |
private: |
|
55 |
static int value_offset; |
|
56 |
static int hash_offset; |
|
33628 | 57 |
static int coder_offset; |
1 | 58 |
|
12623 | 59 |
static bool initialized; |
60 |
||
33628 | 61 |
static Handle basic_create(int length, bool byte_arr, TRAPS); |
1 | 62 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
63 |
static inline void set_coder(oop string, jbyte coder); |
1 | 64 |
|
65 |
public: |
|
33628 | 66 |
|
67 |
// Coders |
|
68 |
enum Coder { |
|
69 |
CODER_LATIN1 = 0, |
|
70 |
CODER_UTF16 = 1 |
|
71 |
}; |
|
72 |
||
12623 | 73 |
static void compute_offsets(); |
49329 | 74 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
12623 | 75 |
|
1 | 76 |
// Instance creation |
77 |
static Handle create_from_unicode(jchar* unicode, int len, TRAPS); |
|
78 |
static oop create_oop_from_unicode(jchar* unicode, int len, TRAPS); |
|
79 |
static Handle create_from_str(const char* utf8_str, TRAPS); |
|
80 |
static oop create_oop_from_str(const char* utf8_str, TRAPS); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
81 |
static Handle create_from_symbol(Symbol* symbol, TRAPS); |
1 | 82 |
static Handle create_from_platform_dependent_str(const char* str, TRAPS); |
83 |
static Handle char_converter(Handle java_string, jchar from_char, jchar to_char, TRAPS); |
|
84 |
||
33628 | 85 |
static void set_compact_strings(bool value); |
12623 | 86 |
|
87 |
static int value_offset_in_bytes() { |
|
88 |
assert(initialized && (value_offset > 0), "Must be initialized"); |
|
89 |
return value_offset; |
|
90 |
} |
|
91 |
static int hash_offset_in_bytes() { |
|
92 |
assert(initialized && (hash_offset > 0), "Must be initialized"); |
|
93 |
return hash_offset; |
|
94 |
} |
|
33628 | 95 |
static int coder_offset_in_bytes() { |
96 |
assert(initialized && (coder_offset > 0), "Must be initialized"); |
|
97 |
return coder_offset; |
|
98 |
} |
|
1 | 99 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
100 |
static inline void set_value_raw(oop string, typeArrayOop buffer); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
101 |
static inline void set_value(oop string, typeArrayOop buffer); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
102 |
static inline void set_hash(oop string, unsigned int hash); |
23472 | 103 |
|
1 | 104 |
// Accessors |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
105 |
static inline typeArrayOop value(oop java_string); |
48618
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
47998
diff
changeset
|
106 |
static inline typeArrayOop value_no_keepalive(oop java_string); |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
107 |
static inline unsigned int hash(oop java_string); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
108 |
static inline bool is_latin1(oop java_string); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
109 |
static inline int length(oop java_string); |
1 | 110 |
static int utf8_length(oop java_string); |
111 |
||
112 |
// String converters |
|
113 |
static char* as_utf8_string(oop java_string); |
|
7414
940d84ca7fca
6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents:
7397
diff
changeset
|
114 |
static char* as_utf8_string(oop java_string, char* buf, int buflen); |
1 | 115 |
static char* as_utf8_string(oop java_string, int start, int len); |
24237
7b210ef8c830
6664815: Eliminate redundant memcpy operation in jni_GetStringUTFRegion
mgerdin
parents:
23872
diff
changeset
|
116 |
static char* as_utf8_string(oop java_string, int start, int len, char* buf, int buflen); |
195
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
117 |
static char* as_platform_dependent_str(Handle java_string, TRAPS); |
17081
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
17029
diff
changeset
|
118 |
static jchar* as_unicode_string(oop java_string, int& length, TRAPS); |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
119 |
// produce an ascii string with all other values quoted using \u#### |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
120 |
static char* as_quoted_ascii(oop java_string); |
1 | 121 |
|
8885
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
122 |
// Compute the hash value for a java.lang.String object which would |
13087 | 123 |
// contain the characters passed in. |
8885
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
124 |
// |
13087 | 125 |
// As the hash value used by the String object itself, in |
126 |
// String.hashCode(). This value is normally calculated in Java code |
|
127 |
// in the String.hashCode method(), but is precomputed for String |
|
128 |
// objects in the shared archive file. |
|
129 |
// hash P(31) from Kernighan & Ritchie |
|
8885
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
130 |
// |
14742
b2a47eb99404
8004661: Comment and function name java_lang_String::toHash is wrong
brutisso
parents:
14588
diff
changeset
|
131 |
// For this reason, THIS ALGORITHM MUST MATCH String.hashCode(). |
33628 | 132 |
static unsigned int hash_code(const jchar* s, int len) { |
8885
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
133 |
unsigned int h = 0; |
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
134 |
while (len-- > 0) { |
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
135 |
h = 31*h + (unsigned int) *s; |
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
136 |
s++; |
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
137 |
} |
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
138 |
return h; |
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
139 |
} |
33628 | 140 |
|
141 |
static unsigned int hash_code(const jbyte* s, int len) { |
|
142 |
unsigned int h = 0; |
|
143 |
while (len-- > 0) { |
|
144 |
h = 31*h + (((unsigned int) *s) & 0xFF); |
|
145 |
s++; |
|
146 |
} |
|
147 |
return h; |
|
148 |
} |
|
149 |
||
14742
b2a47eb99404
8004661: Comment and function name java_lang_String::toHash is wrong
brutisso
parents:
14588
diff
changeset
|
150 |
static unsigned int hash_code(oop java_string); |
8885
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8725
diff
changeset
|
151 |
|
1 | 152 |
static bool equals(oop java_string, jchar* chars, int len); |
20053
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
19266
diff
changeset
|
153 |
static bool equals(oop str1, oop str2); |
1 | 154 |
|
155 |
// Conversion between '.' and '/' formats |
|
156 |
static Handle externalize_classname(Handle java_string, TRAPS) { return char_converter(java_string, '/', '.', THREAD); } |
|
157 |
static Handle internalize_classname(Handle java_string, TRAPS) { return char_converter(java_string, '.', '/', THREAD); } |
|
158 |
||
159 |
// Conversion |
|
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
46257
diff
changeset
|
160 |
static Symbol* as_symbol(oop java_string, TRAPS); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
161 |
static Symbol* as_symbol_or_null(oop java_string); |
1 | 162 |
|
163 |
// Testers |
|
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
164 |
static bool is_instance(oop obj); |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
165 |
static inline bool is_instance_inlined(oop obj); |
1 | 166 |
|
167 |
// Debugging |
|
22907
f978a4a64728
8035648: Don't use Handle in java_lang_String::print
stefank
parents:
20053
diff
changeset
|
168 |
static void print(oop java_string, outputStream* st); |
1 | 169 |
friend class JavaClasses; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31046
diff
changeset
|
170 |
friend class StringTable; |
1 | 171 |
}; |
172 |
||
173 |
||
174 |
// Interface to java.lang.Class objects |
|
175 |
||
10546 | 176 |
#define CLASS_INJECTED_FIELDS(macro) \ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
177 |
macro(java_lang_Class, klass, intptr_signature, false) \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
178 |
macro(java_lang_Class, array_klass, intptr_signature, false) \ |
10546 | 179 |
macro(java_lang_Class, oop_size, int_signature, false) \ |
17826
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
180 |
macro(java_lang_Class, static_oop_field_count, int_signature, false) \ |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
181 |
macro(java_lang_Class, protection_domain, object_signature, false) \ |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
182 |
macro(java_lang_Class, signers, object_signature, false) |
10546 | 183 |
|
1 | 184 |
class java_lang_Class : AllStatic { |
10546 | 185 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
34317
diff
changeset
|
186 |
friend class JVMCIVMStructs; |
10546 | 187 |
|
1 | 188 |
private: |
189 |
// The fake offsets are added by the class loader when java.lang.Class is loaded |
|
190 |
||
10546 | 191 |
static int _klass_offset; |
192 |
static int _array_klass_offset; |
|
1 | 193 |
|
10546 | 194 |
static int _oop_size_offset; |
195 |
static int _static_oop_field_count_offset; |
|
1 | 196 |
|
17826
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
197 |
static int _protection_domain_offset; |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
198 |
static int _init_lock_offset; |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
199 |
static int _signers_offset; |
25326
85b2f2e63e3e
6642881: Improve performance of Class.getClassLoader()
coleenp
parents:
24831
diff
changeset
|
200 |
static int _class_loader_offset; |
36508 | 201 |
static int _module_offset; |
25465
17a6bddcfa5d
8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents:
25326
diff
changeset
|
202 |
static int _component_mirror_offset; |
17826
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
203 |
|
1 | 204 |
static bool offsets_computed; |
205 |
static int classRedefinedCount_offset; |
|
25326
85b2f2e63e3e
6642881: Improve performance of Class.getClassLoader()
coleenp
parents:
24831
diff
changeset
|
206 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
207 |
static GrowableArray<Klass*>* _fixup_mirror_list; |
36508 | 208 |
static GrowableArray<Klass*>* _fixup_module_field_list; |
1 | 209 |
|
17826
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
210 |
static void set_init_lock(oop java_class, oop init_lock); |
18690
e3a2db7d95b0
8014399: Remove JVM_SetProtectionDomain from hotspot
hseigel
parents:
18065
diff
changeset
|
211 |
static void set_protection_domain(oop java_class, oop protection_domain); |
25326
85b2f2e63e3e
6642881: Improve performance of Class.getClassLoader()
coleenp
parents:
24831
diff
changeset
|
212 |
static void set_class_loader(oop java_class, oop class_loader); |
25465
17a6bddcfa5d
8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents:
25326
diff
changeset
|
213 |
static void set_component_mirror(oop java_class, oop comp_mirror); |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46327
diff
changeset
|
214 |
static void initialize_mirror_fields(Klass* k, Handle mirror, Handle protection_domain, TRAPS); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46327
diff
changeset
|
215 |
static void set_mirror_module_field(Klass* K, Handle mirror, Handle module, TRAPS); |
1 | 216 |
public: |
46772
902c68ab7f57
8185103: TestThreadDumpMonitorContention.java crashed due to SIGSEGV in G1SATBCardTableModRefBS::write_ref_field_pre_work
hseigel
parents:
46722
diff
changeset
|
217 |
static void allocate_fixup_lists(); |
10546 | 218 |
static void compute_offsets(); |
219 |
||
1 | 220 |
// Instance creation |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46327
diff
changeset
|
221 |
static void create_mirror(Klass* k, Handle class_loader, Handle module, |
25326
85b2f2e63e3e
6642881: Improve performance of Class.getClassLoader()
coleenp
parents:
24831
diff
changeset
|
222 |
Handle protection_domain, TRAPS); |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46327
diff
changeset
|
223 |
static void fixup_mirror(Klass* k, TRAPS); |
1 | 224 |
static oop create_basic_type_mirror(const char* basic_type_name, BasicType type, TRAPS); |
36508 | 225 |
|
49329 | 226 |
// Archiving |
227 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
|
228 |
static void archive_basic_type_mirrors(TRAPS) NOT_CDS_JAVA_HEAP_RETURN; |
|
229 |
static oop archive_mirror(Klass* k, TRAPS) NOT_CDS_JAVA_HEAP_RETURN_(NULL); |
|
230 |
static oop process_archived_mirror(Klass* k, oop mirror, oop archived_mirror, Thread *THREAD) |
|
231 |
NOT_CDS_JAVA_HEAP_RETURN_(NULL); |
|
50532 | 232 |
static bool restore_archived_mirror(Klass *k, Handle class_loader, Handle module, |
233 |
Handle protection_domain, |
|
234 |
TRAPS) NOT_CDS_JAVA_HEAP_RETURN_(false); |
|
49329 | 235 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46327
diff
changeset
|
236 |
static void fixup_module_field(Klass* k, Handle module); |
36508 | 237 |
|
1 | 238 |
// Conversion |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
239 |
static Klass* as_Klass(oop java_class); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
240 |
static void set_klass(oop java_class, Klass* klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
241 |
static BasicType as_BasicType(oop java_class, Klass** reference_klass = NULL); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
242 |
static Symbol* as_signature(oop java_class, bool intern_if_not_found, TRAPS); |
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2105
diff
changeset
|
243 |
static void print_signature(oop java_class, outputStream *st); |
31970
4bb8e8a13f6a
8048353: jstack -l crashes VM when a Java mirror for a primitive type is locked
vkempik
parents:
31345
diff
changeset
|
244 |
static const char* as_external_name(oop java_class); |
1 | 245 |
// Testing |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
246 |
static bool is_instance(oop obj); |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
247 |
|
1 | 248 |
static bool is_primitive(oop java_class); |
249 |
static BasicType primitive_type(oop java_class); |
|
250 |
static oop primitive_mirror(BasicType t); |
|
251 |
// JVM_NewArray support |
|
46722
ae2cfffe2e64
8185296: java_lang_Class::array_klass should be array_klass_acquire
coleenp
parents:
46710
diff
changeset
|
252 |
static Klass* array_klass_acquire(oop java_class); |
46710
941f16147746
8182397: Race in field updates when creating ArrayKlasses can lead to crash
coleenp
parents:
46505
diff
changeset
|
253 |
static void release_set_array_klass(oop java_class, Klass* klass); |
1 | 254 |
// compiler support for class operations |
10546 | 255 |
static int klass_offset_in_bytes() { return _klass_offset; } |
256 |
static int array_klass_offset_in_bytes() { return _array_klass_offset; } |
|
1 | 257 |
// Support for classRedefinedCount field |
258 |
static int classRedefinedCount(oop the_class_mirror); |
|
259 |
static void set_classRedefinedCount(oop the_class_mirror, int value); |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
260 |
|
17826
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
261 |
// Support for embedded per-class oops |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
262 |
static oop protection_domain(oop java_class); |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
263 |
static oop init_lock(oop java_class); |
25465
17a6bddcfa5d
8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents:
25326
diff
changeset
|
264 |
static oop component_mirror(oop java_class); |
17826
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
265 |
static objArrayOop signers(oop java_class); |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
266 |
static void set_signers(oop java_class, objArrayOop signers); |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
17081
diff
changeset
|
267 |
|
25326
85b2f2e63e3e
6642881: Improve performance of Class.getClassLoader()
coleenp
parents:
24831
diff
changeset
|
268 |
static oop class_loader(oop java_class); |
36508 | 269 |
static void set_module(oop java_class, oop module); |
270 |
static oop module(oop java_class); |
|
25326
85b2f2e63e3e
6642881: Improve performance of Class.getClassLoader()
coleenp
parents:
24831
diff
changeset
|
271 |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
272 |
static int oop_size(oop java_class); |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
273 |
static void set_oop_size(oop java_class, int size); |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
274 |
static int static_oop_field_count(oop java_class); |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
275 |
static void set_static_oop_field_count(oop java_class, int size); |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
276 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
277 |
static GrowableArray<Klass*>* fixup_mirror_list() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
278 |
return _fixup_mirror_list; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
279 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
280 |
static void set_fixup_mirror_list(GrowableArray<Klass*>* v) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
281 |
_fixup_mirror_list = v; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
282 |
} |
36508 | 283 |
|
284 |
static GrowableArray<Klass*>* fixup_module_field_list() { |
|
285 |
return _fixup_module_field_list; |
|
286 |
} |
|
287 |
static void set_fixup_module_field_list(GrowableArray<Klass*>* v) { |
|
288 |
_fixup_module_field_list = v; |
|
289 |
} |
|
290 |
||
1 | 291 |
// Debugging |
292 |
friend class JavaClasses; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
293 |
friend class InstanceKlass; // verification code accesses offsets |
1 | 294 |
friend class ClassFileParser; // access to number_of_fake_fields |
295 |
}; |
|
296 |
||
297 |
// Interface to java.lang.Thread objects |
|
298 |
||
299 |
class java_lang_Thread : AllStatic { |
|
300 |
private: |
|
301 |
// Note that for this class the layout changed between JDK1.2 and JDK1.3, |
|
302 |
// so we compute the offsets at startup rather than hard-wiring them. |
|
303 |
static int _name_offset; |
|
304 |
static int _group_offset; |
|
305 |
static int _contextClassLoader_offset; |
|
306 |
static int _inheritedAccessControlContext_offset; |
|
307 |
static int _priority_offset; |
|
308 |
static int _eetop_offset; |
|
309 |
static int _daemon_offset; |
|
310 |
static int _stillborn_offset; |
|
311 |
static int _stackSize_offset; |
|
312 |
static int _tid_offset; |
|
313 |
static int _thread_status_offset; |
|
314 |
static int _park_blocker_offset; |
|
315 |
static int _park_event_offset ; |
|
316 |
||
317 |
static void compute_offsets(); |
|
318 |
||
319 |
public: |
|
49329 | 320 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
321 |
||
1 | 322 |
// Instance creation |
323 |
static oop create(); |
|
324 |
// Returns the JavaThread associated with the thread obj |
|
325 |
static JavaThread* thread(oop java_thread); |
|
326 |
// Set JavaThread for instance |
|
327 |
static void set_thread(oop java_thread, JavaThread* thread); |
|
328 |
// Name |
|
27654 | 329 |
static oop name(oop java_thread); |
330 |
static void set_name(oop java_thread, oop name); |
|
1 | 331 |
// Priority |
332 |
static ThreadPriority priority(oop java_thread); |
|
333 |
static void set_priority(oop java_thread, ThreadPriority priority); |
|
334 |
// Thread group |
|
335 |
static oop threadGroup(oop java_thread); |
|
336 |
// Stillborn |
|
337 |
static bool is_stillborn(oop java_thread); |
|
338 |
static void set_stillborn(oop java_thread); |
|
339 |
// Alive (NOTE: this is not really a field, but provides the correct |
|
340 |
// definition without doing a Java call) |
|
341 |
static bool is_alive(oop java_thread); |
|
342 |
// Daemon |
|
343 |
static bool is_daemon(oop java_thread); |
|
344 |
static void set_daemon(oop java_thread); |
|
345 |
// Context ClassLoader |
|
346 |
static oop context_class_loader(oop java_thread); |
|
347 |
// Control context |
|
348 |
static oop inherited_access_control_context(oop java_thread); |
|
349 |
// Stack size hint |
|
350 |
static jlong stackSize(oop java_thread); |
|
351 |
// Thread ID |
|
352 |
static jlong thread_id(oop java_thread); |
|
353 |
||
354 |
// Blocker object responsible for thread parking |
|
355 |
static oop park_blocker(oop java_thread); |
|
356 |
||
357 |
// Pointer to type-stable park handler, encoded as jlong. |
|
358 |
// Should be set when apparently null |
|
359 |
// For details, see unsafe.cpp Unsafe_Unpark |
|
360 |
static jlong park_event(oop java_thread); |
|
361 |
static bool set_park_event(oop java_thread, jlong ptr); |
|
362 |
||
363 |
// Java Thread Status for JVMTI and M&M use. |
|
364 |
// This thread status info is saved in threadStatus field of |
|
365 |
// java.lang.Thread java class. |
|
366 |
enum ThreadStatus { |
|
367 |
NEW = 0, |
|
368 |
RUNNABLE = JVMTI_THREAD_STATE_ALIVE + // runnable / running |
|
369 |
JVMTI_THREAD_STATE_RUNNABLE, |
|
370 |
SLEEPING = JVMTI_THREAD_STATE_ALIVE + // Thread.sleep() |
|
371 |
JVMTI_THREAD_STATE_WAITING + |
|
372 |
JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT + |
|
373 |
JVMTI_THREAD_STATE_SLEEPING, |
|
374 |
IN_OBJECT_WAIT = JVMTI_THREAD_STATE_ALIVE + // Object.wait() |
|
375 |
JVMTI_THREAD_STATE_WAITING + |
|
376 |
JVMTI_THREAD_STATE_WAITING_INDEFINITELY + |
|
377 |
JVMTI_THREAD_STATE_IN_OBJECT_WAIT, |
|
378 |
IN_OBJECT_WAIT_TIMED = JVMTI_THREAD_STATE_ALIVE + // Object.wait(long) |
|
379 |
JVMTI_THREAD_STATE_WAITING + |
|
380 |
JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT + |
|
381 |
JVMTI_THREAD_STATE_IN_OBJECT_WAIT, |
|
382 |
PARKED = JVMTI_THREAD_STATE_ALIVE + // LockSupport.park() |
|
383 |
JVMTI_THREAD_STATE_WAITING + |
|
384 |
JVMTI_THREAD_STATE_WAITING_INDEFINITELY + |
|
385 |
JVMTI_THREAD_STATE_PARKED, |
|
386 |
PARKED_TIMED = JVMTI_THREAD_STATE_ALIVE + // LockSupport.park(long) |
|
387 |
JVMTI_THREAD_STATE_WAITING + |
|
388 |
JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT + |
|
389 |
JVMTI_THREAD_STATE_PARKED, |
|
390 |
BLOCKED_ON_MONITOR_ENTER = JVMTI_THREAD_STATE_ALIVE + // (re-)entering a synchronization block |
|
391 |
JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER, |
|
392 |
TERMINATED = JVMTI_THREAD_STATE_TERMINATED |
|
393 |
}; |
|
394 |
// Write thread status info to threadStatus field of java.lang.Thread. |
|
395 |
static void set_thread_status(oop java_thread_oop, ThreadStatus status); |
|
396 |
// Read thread status info from threadStatus field of java.lang.Thread. |
|
397 |
static ThreadStatus get_thread_status(oop java_thread_oop); |
|
398 |
||
399 |
static const char* thread_status_name(oop java_thread_oop); |
|
400 |
||
401 |
// Debugging |
|
402 |
friend class JavaClasses; |
|
403 |
}; |
|
404 |
||
405 |
// Interface to java.lang.ThreadGroup objects |
|
406 |
||
407 |
class java_lang_ThreadGroup : AllStatic { |
|
408 |
private: |
|
409 |
static int _parent_offset; |
|
410 |
static int _name_offset; |
|
411 |
static int _threads_offset; |
|
412 |
static int _groups_offset; |
|
413 |
static int _maxPriority_offset; |
|
414 |
static int _destroyed_offset; |
|
415 |
static int _daemon_offset; |
|
416 |
static int _nthreads_offset; |
|
417 |
static int _ngroups_offset; |
|
418 |
||
419 |
static void compute_offsets(); |
|
420 |
||
421 |
public: |
|
49329 | 422 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
423 |
||
1 | 424 |
// parent ThreadGroup |
425 |
static oop parent(oop java_thread_group); |
|
426 |
// name |
|
33628 | 427 |
static const char* name(oop java_thread_group); |
1 | 428 |
// ("name as oop" accessor is not necessary) |
429 |
// Number of threads in group |
|
430 |
static int nthreads(oop java_thread_group); |
|
431 |
// threads |
|
432 |
static objArrayOop threads(oop java_thread_group); |
|
433 |
// Number of threads in group |
|
434 |
static int ngroups(oop java_thread_group); |
|
435 |
// groups |
|
436 |
static objArrayOop groups(oop java_thread_group); |
|
437 |
// maxPriority in group |
|
438 |
static ThreadPriority maxPriority(oop java_thread_group); |
|
439 |
// Destroyed |
|
440 |
static bool is_destroyed(oop java_thread_group); |
|
441 |
// Daemon |
|
442 |
static bool is_daemon(oop java_thread_group); |
|
443 |
// Debugging |
|
444 |
friend class JavaClasses; |
|
445 |
}; |
|
446 |
||
447 |
||
448 |
||
449 |
// Interface to java.lang.Throwable objects |
|
450 |
||
451 |
class java_lang_Throwable: AllStatic { |
|
452 |
friend class BacktraceBuilder; |
|
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
453 |
friend class BacktraceIterator; |
1 | 454 |
|
455 |
private: |
|
456 |
// Offsets |
|
457 |
enum { |
|
458 |
hc_backtrace_offset = 0, |
|
459 |
hc_detailMessage_offset = 1, |
|
460 |
hc_cause_offset = 2, // New since 1.4 |
|
461 |
hc_stackTrace_offset = 3 // New since 1.4 |
|
462 |
}; |
|
463 |
// Trace constants |
|
464 |
enum { |
|
465 |
trace_methods_offset = 0, |
|
466 |
trace_bcis_offset = 1, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
467 |
trace_mirrors_offset = 2, |
46257
3e95288ce4ca
8140685: Fix backtrace building to not rely on constant pool merging
coleenp
parents:
42627
diff
changeset
|
468 |
trace_names_offset = 3, |
30107
e3d259b825a1
8067662: "java.lang.NullPointerException: Method name is null" from StackTraceElement.<init>
sspitsyn
parents:
29081
diff
changeset
|
469 |
trace_next_offset = 4, |
e3d259b825a1
8067662: "java.lang.NullPointerException: Method name is null" from StackTraceElement.<init>
sspitsyn
parents:
29081
diff
changeset
|
470 |
trace_size = 5, |
1 | 471 |
trace_chunk_size = 32 |
472 |
}; |
|
473 |
||
474 |
static int backtrace_offset; |
|
475 |
static int detailMessage_offset; |
|
476 |
static int stackTrace_offset; |
|
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
477 |
static int depth_offset; |
10233
b40fd2bd2fac
7046490: Preallocated OOME objects should obey Throwable stack trace protocol
dholmes
parents:
10008
diff
changeset
|
478 |
static int static_unassigned_stacktrace_offset; |
1 | 479 |
|
480 |
// StackTrace (programmatic access, new since 1.4) |
|
481 |
static void clear_stacktrace(oop throwable); |
|
10233
b40fd2bd2fac
7046490: Preallocated OOME objects should obey Throwable stack trace protocol
dholmes
parents:
10008
diff
changeset
|
482 |
// Stacktrace (post JDK 1.7.0 to allow immutability protocol to be followed) |
b40fd2bd2fac
7046490: Preallocated OOME objects should obey Throwable stack trace protocol
dholmes
parents:
10008
diff
changeset
|
483 |
static void set_stacktrace(oop throwable, oop st_element_array); |
b40fd2bd2fac
7046490: Preallocated OOME objects should obey Throwable stack trace protocol
dholmes
parents:
10008
diff
changeset
|
484 |
static oop unassigned_stacktrace(); |
1 | 485 |
|
486 |
public: |
|
487 |
// Backtrace |
|
488 |
static oop backtrace(oop throwable); |
|
489 |
static void set_backtrace(oop throwable, oop value); |
|
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
490 |
static int depth(oop throwable); |
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
491 |
static void set_depth(oop throwable, int value); |
1 | 492 |
// Needed by JVMTI to filter out this internal field. |
493 |
static int get_backtrace_offset() { return backtrace_offset;} |
|
494 |
static int get_detailMessage_offset() { return detailMessage_offset;} |
|
495 |
// Message |
|
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
46257
diff
changeset
|
496 |
static oop message(oop throwable); |
1 | 497 |
static void set_message(oop throwable, oop value); |
25624
b3bd733f04e9
8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
25465
diff
changeset
|
498 |
static Symbol* detail_message(oop throwable); |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
499 |
static void print_stack_element(outputStream *st, const methodHandle& method, int bci); |
1 | 500 |
static void print_stack_usage(Handle stream); |
501 |
||
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
502 |
static void compute_offsets(); |
49329 | 503 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
504 |
|
1 | 505 |
// Allocate space for backtrace (created but stack trace not filled in) |
506 |
static void allocate_backtrace(Handle throwable, TRAPS); |
|
507 |
// Fill in current stack trace for throwable with preallocated backtrace (no GC) |
|
508 |
static void fill_in_stack_trace_of_preallocated_backtrace(Handle throwable); |
|
509 |
// Fill in current stack trace, can cause GC |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
510 |
static void fill_in_stack_trace(Handle throwable, const methodHandle& method, TRAPS); |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
511 |
static void fill_in_stack_trace(Handle throwable, const methodHandle& method = methodHandle()); |
1 | 512 |
// Programmatic access to stack trace |
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
513 |
static void get_stack_trace_elements(Handle throwable, objArrayHandle stack_trace, TRAPS); |
1 | 514 |
// Printing |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
46257
diff
changeset
|
515 |
static void print(oop throwable, outputStream* st); |
35143
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35123
diff
changeset
|
516 |
static void print_stack_trace(Handle throwable, outputStream* st); |
35557
029dcb9bfa8b
8146246: JVMCICompiler::abort_on_pending_exception: assert(!thread->owns_locks()) failed: must release all locks when leaving VM
twisti
parents:
35143
diff
changeset
|
517 |
static void java_printStackTrace(Handle throwable, TRAPS); |
1 | 518 |
// Debugging |
519 |
friend class JavaClasses; |
|
520 |
}; |
|
521 |
||
522 |
||
523 |
// Interface to java.lang.reflect.AccessibleObject objects |
|
524 |
||
525 |
class java_lang_reflect_AccessibleObject: AllStatic { |
|
526 |
private: |
|
527 |
// Note that to reduce dependencies on the JDK we compute these |
|
528 |
// offsets at run-time. |
|
529 |
static int override_offset; |
|
530 |
||
531 |
static void compute_offsets(); |
|
532 |
||
533 |
public: |
|
49329 | 534 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
535 |
||
1 | 536 |
// Accessors |
537 |
static jboolean override(oop reflect); |
|
538 |
static void set_override(oop reflect, jboolean value); |
|
539 |
||
540 |
// Debugging |
|
541 |
friend class JavaClasses; |
|
542 |
}; |
|
543 |
||
544 |
||
545 |
// Interface to java.lang.reflect.Method objects |
|
546 |
||
547 |
class java_lang_reflect_Method : public java_lang_reflect_AccessibleObject { |
|
548 |
private: |
|
549 |
// Note that to reduce dependencies on the JDK we compute these |
|
550 |
// offsets at run-time. |
|
551 |
static int clazz_offset; |
|
552 |
static int name_offset; |
|
553 |
static int returnType_offset; |
|
554 |
static int parameterTypes_offset; |
|
555 |
static int exceptionTypes_offset; |
|
556 |
static int slot_offset; |
|
557 |
static int modifiers_offset; |
|
558 |
static int signature_offset; |
|
559 |
static int annotations_offset; |
|
560 |
static int parameter_annotations_offset; |
|
561 |
static int annotation_default_offset; |
|
15097
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
562 |
static int type_annotations_offset; |
1 | 563 |
|
564 |
static void compute_offsets(); |
|
565 |
||
566 |
public: |
|
49329 | 567 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
568 |
||
1 | 569 |
// Allocation |
570 |
static Handle create(TRAPS); |
|
571 |
||
572 |
// Accessors |
|
573 |
static oop clazz(oop reflect); |
|
574 |
static void set_clazz(oop reflect, oop value); |
|
575 |
||
576 |
static oop name(oop method); |
|
577 |
static void set_name(oop method, oop value); |
|
578 |
||
579 |
static oop return_type(oop method); |
|
580 |
static void set_return_type(oop method, oop value); |
|
581 |
||
582 |
static oop parameter_types(oop method); |
|
583 |
static void set_parameter_types(oop method, oop value); |
|
584 |
||
585 |
static oop exception_types(oop method); |
|
586 |
static void set_exception_types(oop method, oop value); |
|
587 |
||
588 |
static int slot(oop reflect); |
|
589 |
static void set_slot(oop reflect, int value); |
|
590 |
||
591 |
static int modifiers(oop method); |
|
592 |
static void set_modifiers(oop method, int value); |
|
593 |
||
594 |
static bool has_signature_field(); |
|
595 |
static oop signature(oop method); |
|
596 |
static void set_signature(oop method, oop value); |
|
597 |
||
598 |
static bool has_annotations_field(); |
|
599 |
static oop annotations(oop method); |
|
600 |
static void set_annotations(oop method, oop value); |
|
601 |
||
602 |
static bool has_parameter_annotations_field(); |
|
603 |
static oop parameter_annotations(oop method); |
|
604 |
static void set_parameter_annotations(oop method, oop value); |
|
605 |
||
606 |
static bool has_annotation_default_field(); |
|
607 |
static oop annotation_default(oop method); |
|
608 |
static void set_annotation_default(oop method, oop value); |
|
609 |
||
15097
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
610 |
static bool has_type_annotations_field(); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
611 |
static oop type_annotations(oop method); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
612 |
static void set_type_annotations(oop method, oop value); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
613 |
|
1 | 614 |
// Debugging |
615 |
friend class JavaClasses; |
|
616 |
}; |
|
617 |
||
618 |
||
619 |
// Interface to java.lang.reflect.Constructor objects |
|
620 |
||
621 |
class java_lang_reflect_Constructor : public java_lang_reflect_AccessibleObject { |
|
622 |
private: |
|
623 |
// Note that to reduce dependencies on the JDK we compute these |
|
624 |
// offsets at run-time. |
|
625 |
static int clazz_offset; |
|
626 |
static int parameterTypes_offset; |
|
627 |
static int exceptionTypes_offset; |
|
628 |
static int slot_offset; |
|
629 |
static int modifiers_offset; |
|
630 |
static int signature_offset; |
|
631 |
static int annotations_offset; |
|
632 |
static int parameter_annotations_offset; |
|
15097
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
633 |
static int type_annotations_offset; |
1 | 634 |
|
635 |
static void compute_offsets(); |
|
636 |
||
637 |
public: |
|
49329 | 638 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
639 |
||
1 | 640 |
// Allocation |
641 |
static Handle create(TRAPS); |
|
642 |
||
643 |
// Accessors |
|
644 |
static oop clazz(oop reflect); |
|
645 |
static void set_clazz(oop reflect, oop value); |
|
646 |
||
647 |
static oop parameter_types(oop constructor); |
|
648 |
static void set_parameter_types(oop constructor, oop value); |
|
649 |
||
650 |
static oop exception_types(oop constructor); |
|
651 |
static void set_exception_types(oop constructor, oop value); |
|
652 |
||
653 |
static int slot(oop reflect); |
|
654 |
static void set_slot(oop reflect, int value); |
|
655 |
||
656 |
static int modifiers(oop constructor); |
|
657 |
static void set_modifiers(oop constructor, int value); |
|
658 |
||
659 |
static bool has_signature_field(); |
|
660 |
static oop signature(oop constructor); |
|
661 |
static void set_signature(oop constructor, oop value); |
|
662 |
||
663 |
static bool has_annotations_field(); |
|
664 |
static oop annotations(oop constructor); |
|
665 |
static void set_annotations(oop constructor, oop value); |
|
666 |
||
667 |
static bool has_parameter_annotations_field(); |
|
668 |
static oop parameter_annotations(oop method); |
|
669 |
static void set_parameter_annotations(oop method, oop value); |
|
670 |
||
15097
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
671 |
static bool has_type_annotations_field(); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
672 |
static oop type_annotations(oop constructor); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
673 |
static void set_type_annotations(oop constructor, oop value); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
674 |
|
1 | 675 |
// Debugging |
676 |
friend class JavaClasses; |
|
677 |
}; |
|
678 |
||
679 |
||
680 |
// Interface to java.lang.reflect.Field objects |
|
681 |
||
682 |
class java_lang_reflect_Field : public java_lang_reflect_AccessibleObject { |
|
683 |
private: |
|
684 |
// Note that to reduce dependencies on the JDK we compute these |
|
685 |
// offsets at run-time. |
|
686 |
static int clazz_offset; |
|
687 |
static int name_offset; |
|
688 |
static int type_offset; |
|
689 |
static int slot_offset; |
|
690 |
static int modifiers_offset; |
|
691 |
static int signature_offset; |
|
692 |
static int annotations_offset; |
|
15097
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
693 |
static int type_annotations_offset; |
1 | 694 |
|
695 |
static void compute_offsets(); |
|
696 |
||
697 |
public: |
|
49329 | 698 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
699 |
||
1 | 700 |
// Allocation |
701 |
static Handle create(TRAPS); |
|
702 |
||
703 |
// Accessors |
|
704 |
static oop clazz(oop reflect); |
|
705 |
static void set_clazz(oop reflect, oop value); |
|
706 |
||
707 |
static oop name(oop field); |
|
708 |
static void set_name(oop field, oop value); |
|
709 |
||
710 |
static oop type(oop field); |
|
711 |
static void set_type(oop field, oop value); |
|
712 |
||
713 |
static int slot(oop reflect); |
|
714 |
static void set_slot(oop reflect, int value); |
|
715 |
||
716 |
static int modifiers(oop field); |
|
717 |
static void set_modifiers(oop field, int value); |
|
718 |
||
719 |
static bool has_signature_field(); |
|
720 |
static oop signature(oop constructor); |
|
721 |
static void set_signature(oop constructor, oop value); |
|
722 |
||
723 |
static bool has_annotations_field(); |
|
724 |
static oop annotations(oop constructor); |
|
725 |
static void set_annotations(oop constructor, oop value); |
|
726 |
||
727 |
static bool has_parameter_annotations_field(); |
|
728 |
static oop parameter_annotations(oop method); |
|
729 |
static void set_parameter_annotations(oop method, oop value); |
|
730 |
||
731 |
static bool has_annotation_default_field(); |
|
732 |
static oop annotation_default(oop method); |
|
733 |
static void set_annotation_default(oop method, oop value); |
|
734 |
||
15097
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
735 |
static bool has_type_annotations_field(); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
736 |
static oop type_annotations(oop field); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
737 |
static void set_type_annotations(oop field, oop value); |
9db149412e0e
8004823: Add VM support for type annotation reflection
stefank
parents:
14588
diff
changeset
|
738 |
|
1 | 739 |
// Debugging |
740 |
friend class JavaClasses; |
|
741 |
}; |
|
742 |
||
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
743 |
class java_lang_reflect_Parameter { |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
744 |
private: |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
745 |
// Note that to reduce dependencies on the JDK we compute these |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
746 |
// offsets at run-time. |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
747 |
static int name_offset; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
748 |
static int modifiers_offset; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
749 |
static int index_offset; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
750 |
static int executable_offset; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
751 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
752 |
static void compute_offsets(); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
753 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
754 |
public: |
49329 | 755 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
756 |
||
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
757 |
// Allocation |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
758 |
static Handle create(TRAPS); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
759 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
760 |
// Accessors |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
761 |
static oop name(oop field); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
762 |
static void set_name(oop field, oop value); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
763 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
764 |
static int index(oop reflect); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
765 |
static void set_index(oop reflect, int value); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
766 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
767 |
static int modifiers(oop reflect); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
768 |
static void set_modifiers(oop reflect, int value); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
769 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
770 |
static oop executable(oop constructor); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
771 |
static void set_executable(oop constructor, oop value); |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
772 |
|
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
773 |
friend class JavaClasses; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
774 |
}; |
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
15098
diff
changeset
|
775 |
|
36508 | 776 |
#define MODULE_INJECTED_FIELDS(macro) \ |
44520
0553e129e0ec
8177530: Module system implementation refresh (4/2017)
alanb
parents:
43929
diff
changeset
|
777 |
macro(java_lang_Module, module_entry, intptr_signature, false) |
36508 | 778 |
|
44520
0553e129e0ec
8177530: Module system implementation refresh (4/2017)
alanb
parents:
43929
diff
changeset
|
779 |
class java_lang_Module { |
36508 | 780 |
private: |
781 |
static int loader_offset; |
|
782 |
static int name_offset; |
|
783 |
static int _module_entry_offset; |
|
784 |
static void compute_offsets(); |
|
785 |
||
786 |
public: |
|
49329 | 787 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
788 |
||
36508 | 789 |
// Allocation |
790 |
static Handle create(Handle loader, Handle module_name, TRAPS); |
|
791 |
||
792 |
// Testers |
|
793 |
static bool is_instance(oop obj); |
|
794 |
||
795 |
// Accessors |
|
796 |
static oop loader(oop module); |
|
797 |
static void set_loader(oop module, oop value); |
|
798 |
||
799 |
static oop name(oop module); |
|
800 |
static void set_name(oop module, oop value); |
|
801 |
||
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
49329
diff
changeset
|
802 |
static ModuleEntry* module_entry(oop module); |
36508 | 803 |
static void set_module_entry(oop module, ModuleEntry* module_entry); |
804 |
||
805 |
friend class JavaClasses; |
|
806 |
}; |
|
807 |
||
37301
a936b4e01afb
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
37179
diff
changeset
|
808 |
// Interface to jdk.internal.reflect.ConstantPool objects |
a936b4e01afb
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
37179
diff
changeset
|
809 |
class reflect_ConstantPool { |
1 | 810 |
private: |
811 |
// Note that to reduce dependencies on the JDK we compute these |
|
812 |
// offsets at run-time. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
813 |
static int _oop_offset; |
1 | 814 |
|
815 |
static void compute_offsets(); |
|
816 |
||
817 |
public: |
|
49329 | 818 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
819 |
||
1 | 820 |
// Allocation |
821 |
static Handle create(TRAPS); |
|
822 |
||
823 |
// Accessors |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
824 |
static void set_cp(oop reflect, ConstantPool* value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
825 |
static int oop_offset() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
826 |
return _oop_offset; |
1 | 827 |
} |
828 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
829 |
static ConstantPool* get_cp(oop reflect); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
830 |
|
1 | 831 |
// Debugging |
832 |
friend class JavaClasses; |
|
833 |
}; |
|
834 |
||
37301
a936b4e01afb
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
37179
diff
changeset
|
835 |
// Interface to jdk.internal.reflect.UnsafeStaticFieldAccessorImpl objects |
a936b4e01afb
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
37179
diff
changeset
|
836 |
class reflect_UnsafeStaticFieldAccessorImpl { |
1 | 837 |
private: |
838 |
static int _base_offset; |
|
839 |
static void compute_offsets(); |
|
840 |
||
841 |
public: |
|
49329 | 842 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
843 |
||
1 | 844 |
static int base_offset() { |
845 |
return _base_offset; |
|
846 |
} |
|
847 |
||
848 |
// Debugging |
|
849 |
friend class JavaClasses; |
|
850 |
}; |
|
851 |
||
852 |
// Interface to java.lang primitive type boxing objects: |
|
853 |
// - java.lang.Boolean |
|
854 |
// - java.lang.Character |
|
855 |
// - java.lang.Float |
|
856 |
// - java.lang.Double |
|
857 |
// - java.lang.Byte |
|
858 |
// - java.lang.Short |
|
859 |
// - java.lang.Integer |
|
860 |
// - java.lang.Long |
|
861 |
||
862 |
// This could be separated out into 8 individual classes. |
|
863 |
||
864 |
class java_lang_boxing_object: AllStatic { |
|
865 |
private: |
|
866 |
enum { |
|
867 |
hc_value_offset = 0 |
|
868 |
}; |
|
869 |
static int value_offset; |
|
591
04d2e26e6d69
6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents:
379
diff
changeset
|
870 |
static int long_value_offset; |
1 | 871 |
|
379
10767ca40189
6652736: well known classes in system dictionary are inefficiently processed
jrose
parents:
360
diff
changeset
|
872 |
static oop initialize_and_allocate(BasicType type, TRAPS); |
1 | 873 |
public: |
874 |
// Allocation. Returns a boxed value, or NULL for invalid type. |
|
875 |
static oop create(BasicType type, jvalue* value, TRAPS); |
|
876 |
// Accessors. Returns the basic type being boxed, or T_ILLEGAL for invalid oop. |
|
877 |
static BasicType get_value(oop box, jvalue* value); |
|
878 |
static BasicType set_value(oop box, jvalue* value); |
|
379
10767ca40189
6652736: well known classes in system dictionary are inefficiently processed
jrose
parents:
360
diff
changeset
|
879 |
static BasicType basic_type(oop box); |
10767ca40189
6652736: well known classes in system dictionary are inefficiently processed
jrose
parents:
360
diff
changeset
|
880 |
static bool is_instance(oop box) { return basic_type(box) != T_ILLEGAL; } |
10767ca40189
6652736: well known classes in system dictionary are inefficiently processed
jrose
parents:
360
diff
changeset
|
881 |
static bool is_instance(oop box, BasicType type) { return basic_type(box) == type; } |
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2105
diff
changeset
|
882 |
static void print(oop box, outputStream* st) { jvalue value; print(get_value(box, &value), &value, st); } |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2105
diff
changeset
|
883 |
static void print(BasicType type, jvalue* value, outputStream* st); |
1 | 884 |
|
591
04d2e26e6d69
6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents:
379
diff
changeset
|
885 |
static int value_offset_in_bytes(BasicType type) { |
04d2e26e6d69
6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents:
379
diff
changeset
|
886 |
return ( type == T_LONG || type == T_DOUBLE ) ? long_value_offset : |
04d2e26e6d69
6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents:
379
diff
changeset
|
887 |
value_offset; |
04d2e26e6d69
6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents:
379
diff
changeset
|
888 |
} |
1 | 889 |
|
890 |
// Debugging |
|
891 |
friend class JavaClasses; |
|
892 |
}; |
|
893 |
||
894 |
||
895 |
||
896 |
// Interface to java.lang.ref.Reference objects |
|
897 |
||
898 |
class java_lang_ref_Reference: AllStatic { |
|
899 |
public: |
|
900 |
enum { |
|
901 |
hc_referent_offset = 0, |
|
902 |
hc_queue_offset = 1, |
|
903 |
hc_next_offset = 2, |
|
904 |
hc_discovered_offset = 3 // Is not last, see SoftRefs. |
|
905 |
}; |
|
906 |
||
907 |
static int referent_offset; |
|
908 |
static int queue_offset; |
|
909 |
static int next_offset; |
|
910 |
static int discovered_offset; |
|
911 |
||
912 |
// Accessors |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
913 |
static inline oop referent(oop ref); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
914 |
static inline void set_referent(oop ref, oop value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
915 |
static inline void set_referent_raw(oop ref, oop value); |
49041
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48620
diff
changeset
|
916 |
static inline HeapWord* referent_addr_raw(oop ref); |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
917 |
static inline oop next(oop ref); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
918 |
static inline void set_next(oop ref, oop value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
919 |
static inline void set_next_raw(oop ref, oop value); |
49041
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48620
diff
changeset
|
920 |
static inline HeapWord* next_addr_raw(oop ref); |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
921 |
static inline oop discovered(oop ref); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
922 |
static inline void set_discovered(oop ref, oop value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34317
diff
changeset
|
923 |
static inline void set_discovered_raw(oop ref, oop value); |
49041
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48620
diff
changeset
|
924 |
static inline HeapWord* discovered_addr_raw(oop ref); |
49786 | 925 |
static inline oop queue(oop ref); |
926 |
static inline void set_queue(oop ref, oop value); |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47818
diff
changeset
|
927 |
static bool is_referent_field(oop obj, ptrdiff_t offset); |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47818
diff
changeset
|
928 |
static inline bool is_phantom(oop ref); |
1 | 929 |
}; |
930 |
||
931 |
||
932 |
// Interface to java.lang.ref.SoftReference objects |
|
933 |
||
934 |
class java_lang_ref_SoftReference: public java_lang_ref_Reference { |
|
935 |
public: |
|
936 |
static int timestamp_offset; |
|
937 |
static int static_clock_offset; |
|
938 |
||
939 |
// Accessors |
|
940 |
static jlong timestamp(oop ref); |
|
941 |
||
942 |
// Accessors for statics |
|
943 |
static jlong clock(); |
|
944 |
static void set_clock(jlong value); |
|
48619
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
945 |
|
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
946 |
static void compute_offsets(); |
49329 | 947 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
1 | 948 |
}; |
949 |
||
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
950 |
// Interface to java.lang.invoke.MethodHandle objects |
2534 | 951 |
|
952 |
class MethodHandleEntry; |
|
953 |
||
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
954 |
class java_lang_invoke_MethodHandle: AllStatic { |
2534 | 955 |
friend class JavaClasses; |
956 |
||
957 |
private: |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
958 |
static int _type_offset; // the MethodType of this MH |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
959 |
static int _form_offset; // the LambdaForm of this MH |
2534 | 960 |
|
961 |
static void compute_offsets(); |
|
962 |
||
963 |
public: |
|
49329 | 964 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
965 |
||
2534 | 966 |
// Accessors |
967 |
static oop type(oop mh); |
|
968 |
static void set_type(oop mh, oop mtype); |
|
969 |
||
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
970 |
static oop form(oop mh); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
971 |
static void set_form(oop mh, oop lform); |
2534 | 972 |
|
973 |
// Testers |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
974 |
static bool is_subclass(Klass* klass) { |
14488 | 975 |
return klass->is_subclass_of(SystemDictionary::MethodHandle_klass()); |
2534 | 976 |
} |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
977 |
static bool is_instance(oop obj); |
2534 | 978 |
|
979 |
// Accessors for code generation: |
|
980 |
static int type_offset_in_bytes() { return _type_offset; } |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
981 |
static int form_offset_in_bytes() { return _form_offset; } |
2534 | 982 |
}; |
983 |
||
19266
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
984 |
// Interface to java.lang.invoke.DirectMethodHandle objects |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
985 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
986 |
class java_lang_invoke_DirectMethodHandle: AllStatic { |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
987 |
friend class JavaClasses; |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
988 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
989 |
private: |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
990 |
static int _member_offset; // the MemberName of this DMH |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
991 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
992 |
static void compute_offsets(); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
993 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
994 |
public: |
49329 | 995 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
996 |
||
19266
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
997 |
// Accessors |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
998 |
static oop member(oop mh); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
999 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1000 |
// Testers |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1001 |
static bool is_subclass(Klass* klass) { |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1002 |
return klass->is_subclass_of(SystemDictionary::DirectMethodHandle_klass()); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1003 |
} |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
1004 |
static bool is_instance(oop obj); |
19266
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1005 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1006 |
// Accessors for code generation: |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1007 |
static int member_offset_in_bytes() { return _member_offset; } |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1008 |
}; |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18690
diff
changeset
|
1009 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1010 |
// Interface to java.lang.invoke.LambdaForm objects |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1011 |
// (These are a private interface for managing adapter code generation.) |
10546 | 1012 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1013 |
class java_lang_invoke_LambdaForm: AllStatic { |
2534 | 1014 |
friend class JavaClasses; |
1015 |
||
1016 |
private: |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1017 |
static int _vmentry_offset; // type is MemberName |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1018 |
|
2534 | 1019 |
static void compute_offsets(); |
1020 |
||
1021 |
public: |
|
49329 | 1022 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
1023 |
||
2534 | 1024 |
// Accessors |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1025 |
static oop vmentry(oop lform); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1026 |
static void set_vmentry(oop lform, oop invoker); |
2534 | 1027 |
|
1028 |
// Testers |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1029 |
static bool is_subclass(Klass* klass) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1030 |
return SystemDictionary::LambdaForm_klass() != NULL && |
14488 | 1031 |
klass->is_subclass_of(SystemDictionary::LambdaForm_klass()); |
2534 | 1032 |
} |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
1033 |
static bool is_instance(oop obj); |
2534 | 1034 |
|
1035 |
// Accessors for code generation: |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1036 |
static int vmentry_offset_in_bytes() { return _vmentry_offset; } |
2534 | 1037 |
}; |
1038 |
||
10514
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10233
diff
changeset
|
1039 |
|
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
1040 |
// Interface to java.lang.invoke.MemberName objects |
2534 | 1041 |
// (These are a private interface for Java code to query the class hierarchy.) |
1042 |
||
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1043 |
#define RESOLVEDMETHOD_INJECTED_FIELDS(macro) \ |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1044 |
macro(java_lang_invoke_ResolvedMethodName, vmholder, object_signature, false) \ |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1045 |
macro(java_lang_invoke_ResolvedMethodName, vmtarget, intptr_signature, false) |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1046 |
|
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1047 |
class java_lang_invoke_ResolvedMethodName : AllStatic { |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1048 |
friend class JavaClasses; |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1049 |
|
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1050 |
static int _vmtarget_offset; |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1051 |
static int _vmholder_offset; |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1052 |
|
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1053 |
static void compute_offsets(); |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1054 |
public: |
49329 | 1055 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
1056 |
||
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1057 |
static int vmtarget_offset_in_bytes() { return _vmtarget_offset; } |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1058 |
|
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1059 |
static Method* vmtarget(oop resolved_method); |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1060 |
static void set_vmtarget(oop resolved_method, Method* method); |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1061 |
|
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1062 |
// find or create resolved member name |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1063 |
static oop find_resolved_method(const methodHandle& m, TRAPS); |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1064 |
|
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1065 |
static bool is_instance(oop resolved_method); |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1066 |
}; |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1067 |
|
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1068 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1069 |
#define MEMBERNAME_INJECTED_FIELDS(macro) \ |
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1070 |
macro(java_lang_invoke_MemberName, vmindex, intptr_signature, false) |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1071 |
|
10546 | 1072 |
|
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
1073 |
class java_lang_invoke_MemberName: AllStatic { |
2534 | 1074 |
friend class JavaClasses; |
1075 |
||
1076 |
private: |
|
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
1077 |
// From java.lang.invoke.MemberName: |
2534 | 1078 |
// private Class<?> clazz; // class in which the method is defined |
1079 |
// private String name; // may be null if not yet materialized |
|
1080 |
// private Object type; // may be null if not yet materialized |
|
1081 |
// private int flags; // modifier bits; see reflect.Modifier |
|
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1082 |
// private ResolvedMethodName method; // holds VM-specific target value |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1083 |
// private intptr_t vmindex; // member index within class or interface |
2534 | 1084 |
static int _clazz_offset; |
1085 |
static int _name_offset; |
|
1086 |
static int _type_offset; |
|
1087 |
static int _flags_offset; |
|
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1088 |
static int _method_offset; |
2534 | 1089 |
static int _vmindex_offset; |
1090 |
||
1091 |
static void compute_offsets(); |
|
1092 |
||
1093 |
public: |
|
49329 | 1094 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
2534 | 1095 |
// Accessors |
1096 |
static oop clazz(oop mname); |
|
1097 |
static void set_clazz(oop mname, oop clazz); |
|
1098 |
||
1099 |
static oop type(oop mname); |
|
1100 |
static void set_type(oop mname, oop type); |
|
1101 |
||
1102 |
static oop name(oop mname); |
|
1103 |
static void set_name(oop mname, oop name); |
|
1104 |
||
1105 |
static int flags(oop mname); |
|
1106 |
static void set_flags(oop mname, int flags); |
|
1107 |
||
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1108 |
// Link through ResolvedMethodName field to get Method* |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1109 |
static Method* vmtarget(oop mname); |
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1110 |
static void set_method(oop mname, oop method); |
2534 | 1111 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1112 |
static intptr_t vmindex(oop mname); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1113 |
static void set_vmindex(oop mname, intptr_t index); |
2534 | 1114 |
|
1115 |
// Testers |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1116 |
static bool is_subclass(Klass* klass) { |
14488 | 1117 |
return klass->is_subclass_of(SystemDictionary::MemberName_klass()); |
2534 | 1118 |
} |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
1119 |
static bool is_instance(oop obj); |
2534 | 1120 |
|
27674
00cabfc45357
8042235: redefining method used by multiple MethodHandles crashes VM
coleenp
parents:
27654
diff
changeset
|
1121 |
static bool is_method(oop obj); |
00cabfc45357
8042235: redefining method used by multiple MethodHandles crashes VM
coleenp
parents:
27654
diff
changeset
|
1122 |
|
2534 | 1123 |
// Relevant integer codes (keep these in synch. with MethodHandleNatives.Constants): |
1124 |
enum { |
|
16617
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
15232
diff
changeset
|
1125 |
MN_IS_METHOD = 0x00010000, // method (not constructor) |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
15232
diff
changeset
|
1126 |
MN_IS_CONSTRUCTOR = 0x00020000, // constructor |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
15232
diff
changeset
|
1127 |
MN_IS_FIELD = 0x00040000, // field |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
15232
diff
changeset
|
1128 |
MN_IS_TYPE = 0x00080000, // nested type |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
15232
diff
changeset
|
1129 |
MN_CALLER_SENSITIVE = 0x00100000, // @CallerSensitive annotation detected |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1130 |
MN_REFERENCE_KIND_SHIFT = 24, // refKind |
16617
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
15232
diff
changeset
|
1131 |
MN_REFERENCE_KIND_MASK = 0x0F000000 >> MN_REFERENCE_KIND_SHIFT, |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1132 |
// The SEARCH_* bits are not for MN.flags but for the matchFlags argument of MHN.getMembers: |
16617
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
15232
diff
changeset
|
1133 |
MN_SEARCH_SUPERCLASSES = 0x00100000, // walk super classes |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
15232
diff
changeset
|
1134 |
MN_SEARCH_INTERFACES = 0x00200000 // walk implemented interfaces |
2534 | 1135 |
}; |
1136 |
||
1137 |
// Accessors for code generation: |
|
1138 |
static int clazz_offset_in_bytes() { return _clazz_offset; } |
|
1139 |
static int type_offset_in_bytes() { return _type_offset; } |
|
1140 |
static int name_offset_in_bytes() { return _name_offset; } |
|
1141 |
static int flags_offset_in_bytes() { return _flags_offset; } |
|
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1142 |
static int method_offset_in_bytes() { return _method_offset; } |
2534 | 1143 |
static int vmindex_offset_in_bytes() { return _vmindex_offset; } |
1144 |
}; |
|
1145 |
||
1146 |
||
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
1147 |
// Interface to java.lang.invoke.MethodType objects |
2534 | 1148 |
|
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
1149 |
class java_lang_invoke_MethodType: AllStatic { |
2534 | 1150 |
friend class JavaClasses; |
1151 |
||
1152 |
private: |
|
1153 |
static int _rtype_offset; |
|
1154 |
static int _ptypes_offset; |
|
1155 |
||
1156 |
static void compute_offsets(); |
|
1157 |
||
1158 |
public: |
|
49329 | 1159 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
2534 | 1160 |
// Accessors |
1161 |
static oop rtype(oop mt); |
|
1162 |
static objArrayOop ptypes(oop mt); |
|
1163 |
||
1164 |
static oop ptype(oop mt, int index); |
|
4562
5d93cb2d2090
6894206: JVM needs a way to traverse method handle structures
twisti
parents:
4429
diff
changeset
|
1165 |
static int ptype_count(oop mt); |
2534 | 1166 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1167 |
static int ptype_slot_count(oop mt); // extra counts for long/double |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1168 |
static int rtype_slot_count(oop mt); // extra counts for long/double |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1169 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1170 |
static Symbol* as_signature(oop mt, bool intern_if_not_found, TRAPS); |
2534 | 1171 |
static void print_signature(oop mt, outputStream* st); |
1172 |
||
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
1173 |
static bool is_instance(oop obj); |
2534 | 1174 |
|
10008
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9630
diff
changeset
|
1175 |
static bool equals(oop mt1, oop mt2); |
d84de97ad847
7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents:
9630
diff
changeset
|
1176 |
|
2534 | 1177 |
// Accessors for code generation: |
1178 |
static int rtype_offset_in_bytes() { return _rtype_offset; } |
|
1179 |
static int ptypes_offset_in_bytes() { return _ptypes_offset; } |
|
1180 |
}; |
|
1181 |
||
1182 |
||
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
1183 |
// Interface to java.lang.invoke.CallSite objects |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1184 |
|
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8076
diff
changeset
|
1185 |
class java_lang_invoke_CallSite: AllStatic { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1186 |
friend class JavaClasses; |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1187 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1188 |
private: |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1189 |
static int _target_offset; |
30296
95baefac8485
8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents:
29081
diff
changeset
|
1190 |
static int _context_offset; |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1191 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1192 |
static void compute_offsets(); |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1193 |
|
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1194 |
public: |
49329 | 1195 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1196 |
// Accessors |
30296
95baefac8485
8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents:
29081
diff
changeset
|
1197 |
static oop target( oop site); |
95baefac8485
8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents:
29081
diff
changeset
|
1198 |
static void set_target( oop site, oop target); |
95baefac8485
8057967: CallSite dependency tracking scales devastatingly poorly
vlivanov
parents:
29081
diff
changeset
|
1199 |
static void set_target_volatile( oop site, oop target); |
10540
92d59dba2407
7085860: JSR 292: implement CallSite.setTargetNormal and setTargetVolatile as native methods
twisti
parents:
10514
diff
changeset
|
1200 |
|
31037
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1201 |
static oop context(oop site); |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1202 |
|
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4562
diff
changeset
|
1203 |
// Testers |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1204 |
static bool is_subclass(Klass* klass) { |
14488 | 1205 |
return klass->is_subclass_of(SystemDictionary::CallSite_klass()); |
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4562
diff
changeset
|
1206 |
} |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
1207 |
static bool is_instance(oop obj); |
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4562
diff
changeset
|
1208 |
|
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1209 |
// Accessors for code generation: |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1210 |
static int target_offset_in_bytes() { return _target_offset; } |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2534
diff
changeset
|
1211 |
}; |
2534 | 1212 |
|
31037
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1213 |
// Interface to java.lang.invoke.MethodHandleNatives$CallSiteContext objects |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1214 |
|
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1215 |
#define CALLSITECONTEXT_INJECTED_FIELDS(macro) \ |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1216 |
macro(java_lang_invoke_MethodHandleNatives_CallSiteContext, vmdependencies, intptr_signature, false) |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1217 |
|
34195
89011d12ebd3
8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents:
33638
diff
changeset
|
1218 |
class DependencyContext; |
89011d12ebd3
8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents:
33638
diff
changeset
|
1219 |
|
31037
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1220 |
class java_lang_invoke_MethodHandleNatives_CallSiteContext : AllStatic { |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1221 |
friend class JavaClasses; |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1222 |
|
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1223 |
private: |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1224 |
static int _vmdependencies_offset; |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1225 |
|
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1226 |
static void compute_offsets(); |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1227 |
|
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1228 |
public: |
49329 | 1229 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
31037
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1230 |
// Accessors |
34195
89011d12ebd3
8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents:
33638
diff
changeset
|
1231 |
static DependencyContext vmdependencies(oop context); |
31037
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1232 |
|
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1233 |
// Testers |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1234 |
static bool is_subclass(Klass* klass) { |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1235 |
return klass->is_subclass_of(SystemDictionary::Context_klass()); |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1236 |
} |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1237 |
static bool is_instance(oop obj); |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1238 |
}; |
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1239 |
|
1 | 1240 |
// Interface to java.security.AccessControlContext objects |
1241 |
||
1242 |
class java_security_AccessControlContext: AllStatic { |
|
1243 |
private: |
|
1244 |
// Note that for this class the layout changed between JDK1.2 and JDK1.3, |
|
1245 |
// so we compute the offsets at startup rather than hard-wiring them. |
|
1246 |
static int _context_offset; |
|
1247 |
static int _privilegedContext_offset; |
|
1248 |
static int _isPrivileged_offset; |
|
18056 | 1249 |
static int _isAuthorized_offset; |
1 | 1250 |
|
1251 |
static void compute_offsets(); |
|
1252 |
public: |
|
49329 | 1253 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
1 | 1254 |
static oop create(objArrayHandle context, bool isPrivileged, Handle privileged_context, TRAPS); |
1255 |
||
18056 | 1256 |
static bool is_authorized(Handle context); |
1257 |
||
1 | 1258 |
// Debugging/initialization |
1259 |
friend class JavaClasses; |
|
1260 |
}; |
|
1261 |
||
1262 |
||
1263 |
// Interface to java.lang.ClassLoader objects |
|
1264 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1265 |
#define CLASSLOADER_INJECTED_FIELDS(macro) \ |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14490
diff
changeset
|
1266 |
macro(java_lang_ClassLoader, loader_data, intptr_signature, false) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1267 |
|
1 | 1268 |
class java_lang_ClassLoader : AllStatic { |
1269 |
private: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1270 |
static int _loader_data_offset; |
10546 | 1271 |
static bool offsets_computed; |
1 | 1272 |
static int parent_offset; |
10546 | 1273 |
static int parallelCapable_offset; |
41877 | 1274 |
static int name_offset; |
36508 | 1275 |
static int unnamedModule_offset; |
10546 | 1276 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1277 |
public: |
10546 | 1278 |
static void compute_offsets(); |
49329 | 1279 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
1 | 1280 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1281 |
static ClassLoaderData* loader_data(oop loader); |
49041
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48620
diff
changeset
|
1282 |
static ClassLoaderData* cmpxchg_loader_data(ClassLoaderData* new_data, oop loader, ClassLoaderData* expected_data); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1283 |
|
1 | 1284 |
static oop parent(oop loader); |
41877 | 1285 |
static oop name(oop loader); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1286 |
static bool isAncestor(oop loader, oop cl); |
1 | 1287 |
|
10546 | 1288 |
// Support for parallelCapable field |
1289 |
static bool parallelCapable(oop the_class_mirror); |
|
1290 |
||
1 | 1291 |
static bool is_trusted_loader(oop loader); |
1292 |
||
42574
25ff9171b28b
8166304: Skipping access check for classes generated by core reflection
hseigel
parents:
41877
diff
changeset
|
1293 |
// Return true if this is one of the class loaders associated with |
25ff9171b28b
8166304: Skipping access check for classes generated by core reflection
hseigel
parents:
41877
diff
changeset
|
1294 |
// the generated bytecodes for reflection. |
25ff9171b28b
8166304: Skipping access check for classes generated by core reflection
hseigel
parents:
41877
diff
changeset
|
1295 |
static bool is_reflection_class_loader(oop loader); |
25ff9171b28b
8166304: Skipping access check for classes generated by core reflection
hseigel
parents:
41877
diff
changeset
|
1296 |
|
1 | 1297 |
// Fix for 4474172 |
1298 |
static oop non_reflection_class_loader(oop loader); |
|
1299 |
||
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1300 |
// Testers |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1301 |
static bool is_subclass(Klass* klass) { |
14488 | 1302 |
return klass->is_subclass_of(SystemDictionary::ClassLoader_klass()); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1303 |
} |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27674
diff
changeset
|
1304 |
static bool is_instance(oop obj); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13091
diff
changeset
|
1305 |
|
36508 | 1306 |
static oop unnamedModule(oop loader); |
1307 |
||
1 | 1308 |
// Debugging |
1309 |
friend class JavaClasses; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1310 |
friend class ClassFileParser; // access to number_of_fake_fields |
50036
e0dbf14885b8
8199852: Print more information about class loaders in LinkageErrors.
goetz
parents:
49786
diff
changeset
|
1311 |
|
e0dbf14885b8
8199852: Print more information about class loaders in LinkageErrors.
goetz
parents:
49786
diff
changeset
|
1312 |
// Describe ClassLoader for exceptions, tracing ... |
e0dbf14885b8
8199852: Print more information about class loaders in LinkageErrors.
goetz
parents:
49786
diff
changeset
|
1313 |
// Prints "<name>" (instance of <classname>, child of "<name>" <classname>). |
e0dbf14885b8
8199852: Print more information about class loaders in LinkageErrors.
goetz
parents:
49786
diff
changeset
|
1314 |
// If a classloader has no name, it prints <unnamed> instead. The output |
e0dbf14885b8
8199852: Print more information about class loaders in LinkageErrors.
goetz
parents:
49786
diff
changeset
|
1315 |
// for well known loaders (system/platform) is abbreviated. |
e0dbf14885b8
8199852: Print more information about class loaders in LinkageErrors.
goetz
parents:
49786
diff
changeset
|
1316 |
static const char* describe_external(const oop loader); |
1 | 1317 |
}; |
1318 |
||
1319 |
||
1320 |
// Interface to java.lang.System objects |
|
1321 |
||
1322 |
class java_lang_System : AllStatic { |
|
1323 |
private: |
|
1324 |
static int static_in_offset; |
|
1325 |
static int static_out_offset; |
|
1326 |
static int static_err_offset; |
|
18056 | 1327 |
static int static_security_offset; |
1 | 1328 |
|
1329 |
public: |
|
1330 |
static int in_offset_in_bytes(); |
|
1331 |
static int out_offset_in_bytes(); |
|
1332 |
static int err_offset_in_bytes(); |
|
1333 |
||
18056 | 1334 |
static bool has_security_manager(); |
1335 |
||
48619
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
1336 |
static void compute_offsets(); |
49329 | 1337 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
48619
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
1338 |
|
1 | 1339 |
// Debugging |
1340 |
friend class JavaClasses; |
|
1341 |
}; |
|
1342 |
||
1343 |
||
1344 |
// Interface to java.lang.StackTraceElement objects |
|
1345 |
||
1346 |
class java_lang_StackTraceElement: AllStatic { |
|
1347 |
private: |
|
42541
308a256d545e
8169389: Use a bitmap to control StackTraceElement::toString format and save footprint
bchristi
parents:
41877
diff
changeset
|
1348 |
static int declaringClassObject_offset; |
41877 | 1349 |
static int classLoaderName_offset; |
36508 | 1350 |
static int moduleName_offset; |
1351 |
static int moduleVersion_offset; |
|
1 | 1352 |
static int declaringClass_offset; |
1353 |
static int methodName_offset; |
|
1354 |
static int fileName_offset; |
|
1355 |
static int lineNumber_offset; |
|
1356 |
||
1357 |
// Setters |
|
41877 | 1358 |
static void set_classLoaderName(oop element, oop value); |
36508 | 1359 |
static void set_moduleName(oop element, oop value); |
1360 |
static void set_moduleVersion(oop element, oop value); |
|
1 | 1361 |
static void set_declaringClass(oop element, oop value); |
1362 |
static void set_methodName(oop element, oop value); |
|
1363 |
static void set_fileName(oop element, oop value); |
|
1364 |
static void set_lineNumber(oop element, int value); |
|
41877 | 1365 |
static void set_declaringClassObject(oop element, oop value); |
1 | 1366 |
|
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
1367 |
public: |
1 | 1368 |
// Create an instance of StackTraceElement |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
1369 |
static oop create(const methodHandle& method, int bci, TRAPS); |
1 | 1370 |
|
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
1371 |
static void fill_in(Handle element, InstanceKlass* holder, const methodHandle& method, |
46257
3e95288ce4ca
8140685: Fix backtrace building to not rely on constant pool merging
coleenp
parents:
42627
diff
changeset
|
1372 |
int version, int bci, Symbol* name, TRAPS); |
37064
5c82fa70d313
8150778: Reduce Throwable.getStackTrace() calls to the JVM
coleenp
parents:
35606
diff
changeset
|
1373 |
|
48619
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
1374 |
static void compute_offsets(); |
49329 | 1375 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
48619
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
1376 |
|
1 | 1377 |
// Debugging |
1378 |
friend class JavaClasses; |
|
1379 |
}; |
|
1380 |
||
1381 |
||
34280 | 1382 |
class Backtrace: AllStatic { |
1383 |
public: |
|
1384 |
// Helper backtrace functions to store bci|version together. |
|
1385 |
static int merge_bci_and_version(int bci, int version); |
|
1386 |
static int merge_mid_and_cpref(int mid, int cpref); |
|
1387 |
static int bci_at(unsigned int merged); |
|
1388 |
static int version_at(unsigned int merged); |
|
1389 |
static int mid_at(unsigned int merged); |
|
1390 |
static int cpref_at(unsigned int merged); |
|
1391 |
static int get_line_number(const methodHandle& method, int bci); |
|
1392 |
static Symbol* get_source_file_name(InstanceKlass* holder, int version); |
|
1393 |
||
1394 |
// Debugging |
|
1395 |
friend class JavaClasses; |
|
1396 |
}; |
|
1397 |
||
1398 |
// Interface to java.lang.StackFrameInfo objects |
|
1399 |
||
1400 |
#define STACKFRAMEINFO_INJECTED_FIELDS(macro) \ |
|
37438 | 1401 |
macro(java_lang_StackFrameInfo, version, short_signature, false) |
34280 | 1402 |
|
1403 |
class java_lang_StackFrameInfo: AllStatic { |
|
1404 |
private: |
|
1405 |
static int _memberName_offset; |
|
1406 |
static int _bci_offset; |
|
1407 |
static int _version_offset; |
|
1408 |
||
1409 |
static Method* get_method(Handle stackFrame, InstanceKlass* holder, TRAPS); |
|
1410 |
||
1411 |
public: |
|
1412 |
// Setters |
|
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1413 |
static void set_method_and_bci(Handle stackFrame, const methodHandle& method, int bci, TRAPS); |
34280 | 1414 |
static void set_bci(oop info, int value); |
1415 |
||
1416 |
static void set_version(oop info, short value); |
|
1417 |
||
1418 |
static void compute_offsets(); |
|
49329 | 1419 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
34280 | 1420 |
|
37438 | 1421 |
static void to_stack_trace_element(Handle stackFrame, Handle stack_trace_element, TRAPS); |
1422 |
||
34280 | 1423 |
// Debugging |
1424 |
friend class JavaClasses; |
|
1425 |
}; |
|
1426 |
||
1427 |
class java_lang_LiveStackFrameInfo: AllStatic { |
|
1428 |
private: |
|
1429 |
static int _monitors_offset; |
|
1430 |
static int _locals_offset; |
|
1431 |
static int _operands_offset; |
|
43677
5228814c1da2
8156073: 2-slot LiveStackFrame locals (long and double) are incorrect
bchristi
parents:
43422
diff
changeset
|
1432 |
static int _mode_offset; |
34280 | 1433 |
|
1434 |
public: |
|
1435 |
static void set_monitors(oop info, oop value); |
|
1436 |
static void set_locals(oop info, oop value); |
|
1437 |
static void set_operands(oop info, oop value); |
|
43677
5228814c1da2
8156073: 2-slot LiveStackFrame locals (long and double) are incorrect
bchristi
parents:
43422
diff
changeset
|
1438 |
static void set_mode(oop info, int value); |
34280 | 1439 |
|
1440 |
static void compute_offsets(); |
|
49329 | 1441 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
34280 | 1442 |
|
1443 |
// Debugging |
|
1444 |
friend class JavaClasses; |
|
1445 |
}; |
|
1446 |
||
1 | 1447 |
// Interface to java.lang.AssertionStatusDirectives objects |
1448 |
||
1449 |
class java_lang_AssertionStatusDirectives: AllStatic { |
|
1450 |
private: |
|
1451 |
static int classes_offset; |
|
1452 |
static int classEnabled_offset; |
|
1453 |
static int packages_offset; |
|
1454 |
static int packageEnabled_offset; |
|
1455 |
static int deflt_offset; |
|
1456 |
||
1457 |
public: |
|
1458 |
// Setters |
|
1459 |
static void set_classes(oop obj, oop val); |
|
1460 |
static void set_classEnabled(oop obj, oop val); |
|
1461 |
static void set_packages(oop obj, oop val); |
|
1462 |
static void set_packageEnabled(oop obj, oop val); |
|
1463 |
static void set_deflt(oop obj, bool val); |
|
48619
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
1464 |
|
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
1465 |
static void compute_offsets(); |
49329 | 1466 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
48619
1703d83b3ffe
8058259: compute_offset() is confusing for static fields
coleenp
parents:
47998
diff
changeset
|
1467 |
|
1 | 1468 |
// Debugging |
1469 |
friend class JavaClasses; |
|
1470 |
}; |
|
1471 |
||
1472 |
||
1473 |
class java_nio_Buffer: AllStatic { |
|
1474 |
private: |
|
1475 |
static int _limit_offset; |
|
1476 |
||
1477 |
public: |
|
1478 |
static int limit_offset(); |
|
1479 |
static void compute_offsets(); |
|
49329 | 1480 |
static void serialize(SerializeClosure* f) NOT_CDS_RETURN; |
1 | 1481 |
}; |
1482 |
||
1483 |
class java_util_concurrent_locks_AbstractOwnableSynchronizer : AllStatic { |
|
1484 |
private: |
|
1485 |
static int _owner_offset; |
|
1486 |
public: |
|
50419
146c60525d4a
8199882: compiler/uncommontrap/TestDeoptOOM.java failed w/ fatal error: ExceptionMark constructor expects no pending exceptions
dholmes
parents:
50063
diff
changeset
|
1487 |
static void compute_offsets(); |
1 | 1488 |
static oop get_owner_threadObj(oop obj); |
1489 |
}; |
|
1490 |
||
10546 | 1491 |
// Use to declare fields that need to be injected into Java classes |
1492 |
// for the JVM to use. The name_index and signature_index are |
|
1493 |
// declared in vmSymbols. The may_be_java flag is used to declare |
|
1494 |
// fields that might already exist in Java but should be injected if |
|
1495 |
// they don't. Otherwise the field is unconditionally injected and |
|
1496 |
// the JVM uses the injected one. This is to ensure that name |
|
1497 |
// collisions don't occur. In general may_be_java should be false |
|
1498 |
// unless there's a good reason. |
|
1499 |
||
1500 |
class InjectedField { |
|
1501 |
public: |
|
1502 |
const SystemDictionary::WKID klass_id; |
|
1503 |
const vmSymbols::SID name_index; |
|
1504 |
const vmSymbols::SID signature_index; |
|
1505 |
const bool may_be_java; |
|
1506 |
||
1507 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1508 |
Klass* klass() const { return SystemDictionary::well_known_klass(klass_id); } |
10546 | 1509 |
Symbol* name() const { return lookup_symbol(name_index); } |
1510 |
Symbol* signature() const { return lookup_symbol(signature_index); } |
|
1511 |
||
1512 |
int compute_offset(); |
|
1513 |
||
1514 |
// Find the Symbol for this index |
|
1515 |
static Symbol* lookup_symbol(int symbol_index) { |
|
1516 |
return vmSymbols::symbol_at((vmSymbols::SID)symbol_index); |
|
1517 |
} |
|
1518 |
}; |
|
1519 |
||
1520 |
#define DECLARE_INJECTED_FIELD_ENUM(klass, name, signature, may_be_java) \ |
|
1521 |
klass##_##name##_enum, |
|
1522 |
||
1523 |
#define ALL_INJECTED_FIELDS(macro) \ |
|
1524 |
CLASS_INJECTED_FIELDS(macro) \ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1525 |
CLASSLOADER_INJECTED_FIELDS(macro) \ |
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46388
diff
changeset
|
1526 |
RESOLVEDMETHOD_INJECTED_FIELDS(macro) \ |
31037
01a5c5fa5681
8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents:
30310
diff
changeset
|
1527 |
MEMBERNAME_INJECTED_FIELDS(macro) \ |
34280 | 1528 |
CALLSITECONTEXT_INJECTED_FIELDS(macro) \ |
36508 | 1529 |
STACKFRAMEINFO_INJECTED_FIELDS(macro) \ |
1530 |
MODULE_INJECTED_FIELDS(macro) |
|
10546 | 1531 |
|
1 | 1532 |
// Interface to hard-coded offset checking |
1533 |
||
1534 |
class JavaClasses : AllStatic { |
|
1535 |
private: |
|
10546 | 1536 |
|
1537 |
static InjectedField _injected_fields[]; |
|
1538 |
||
1 | 1539 |
static bool check_offset(const char *klass_name, int offset, const char *field_name, const char* field_sig) PRODUCT_RETURN0; |
1540 |
public: |
|
10546 | 1541 |
enum InjectedFieldID { |
1542 |
ALL_INJECTED_FIELDS(DECLARE_INJECTED_FIELD_ENUM) |
|
1543 |
MAX_enum |
|
1544 |
}; |
|
1545 |
||
1546 |
static int compute_injected_offset(InjectedFieldID id); |
|
1547 |
||
1 | 1548 |
static void compute_hard_coded_offsets(); |
1549 |
static void compute_offsets(); |
|
1550 |
static void check_offsets() PRODUCT_RETURN; |
|
10546 | 1551 |
|
1552 |
static InjectedField* get_injected(Symbol* class_name, int* field_count); |
|
1 | 1553 |
}; |
7397 | 1554 |
|
10546 | 1555 |
#undef DECLARE_INJECTED_FIELD_ENUM |
1556 |
||
7397 | 1557 |
#endif // SHARE_VM_CLASSFILE_JAVACLASSES_HPP |