author | dcubed |
Wed, 22 Nov 2017 17:54:50 -0800 | |
changeset 48105 | 8d15b1369c7a |
parent 47216 | 71c04702a3d5 |
child 49449 | ef5d5d343e2a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33593
diff
changeset
|
2 |
* Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_PRIMS_JVMTICLASSFILERECONSTITUTER_HPP |
26 |
#define SHARE_VM_PRIMS_JVMTICLASSFILERECONSTITUTER_HPP |
|
27 |
||
28 |
#include "jvmtifiles/jvmtiEnv.hpp" |
|
29 |
||
1 | 30 |
|
31 |
class JvmtiConstantPoolReconstituter : public StackObj { |
|
32 |
private: |
|
33 |
int _cpool_size; |
|
34 |
SymbolHashMap* _symmap; |
|
35 |
SymbolHashMap* _classmap; |
|
36 |
constantPoolHandle _cpool; |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33593
diff
changeset
|
37 |
InstanceKlass* _ik; |
1 | 38 |
jvmtiError _err; |
39 |
||
40 |
protected: |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33593
diff
changeset
|
41 |
InstanceKlass* ik() { return _ik; }; |
1 | 42 |
constantPoolHandle cpool() { return _cpool; }; |
43 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
44 |
u2 symbol_to_cpool_index(Symbol* sym) { |
1 | 45 |
return _symmap->symbol_to_value(sym); |
46 |
} |
|
47 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
48 |
u2 class_symbol_to_cpool_index(Symbol* sym) { |
1 | 49 |
return _classmap->symbol_to_value(sym); |
50 |
} |
|
51 |
||
52 |
public: |
|
53 |
// Calls to this constructor must be proceeded by a ResourceMark |
|
54 |
// and a HandleMark |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33593
diff
changeset
|
55 |
JvmtiConstantPoolReconstituter(InstanceKlass* ik){ |
1 | 56 |
set_error(JVMTI_ERROR_NONE); |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33593
diff
changeset
|
57 |
_ik = ik; |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33593
diff
changeset
|
58 |
_cpool = constantPoolHandle(Thread::current(), ik->constants()); |
1 | 59 |
_symmap = new SymbolHashMap(); |
60 |
_classmap = new SymbolHashMap(); |
|
61 |
_cpool_size = _cpool->hash_entries_to(_symmap, _classmap); |
|
62 |
if (_cpool_size == 0) { |
|
63 |
set_error(JVMTI_ERROR_OUT_OF_MEMORY); |
|
64 |
} else if (_cpool_size < 0) { |
|
65 |
set_error(JVMTI_ERROR_INTERNAL); |
|
66 |
} |
|
67 |
} |
|
68 |
||
69 |
~JvmtiConstantPoolReconstituter() { |
|
70 |
if (_symmap != NULL) { |
|
28625 | 71 |
delete _symmap; |
1 | 72 |
_symmap = NULL; |
73 |
} |
|
74 |
if (_classmap != NULL) { |
|
28625 | 75 |
delete _classmap; |
1 | 76 |
_classmap = NULL; |
77 |
} |
|
78 |
} |
|
79 |
||
80 |
||
81 |
void set_error(jvmtiError err) { _err = err; } |
|
82 |
jvmtiError get_error() { return _err; } |
|
83 |
||
84 |
int cpool_size() { return _cpool_size; } |
|
85 |
||
86 |
void copy_cpool_bytes(unsigned char *cpool_bytes) { |
|
87 |
if (cpool_bytes == NULL) { |
|
88 |
assert(cpool_bytes != NULL, "cpool_bytes pointer must not be NULL"); |
|
89 |
return; |
|
90 |
} |
|
91 |
cpool()->copy_cpool_bytes(cpool_size(), _symmap, cpool_bytes); |
|
92 |
} |
|
93 |
}; |
|
94 |
||
95 |
||
96 |
class JvmtiClassFileReconstituter : public JvmtiConstantPoolReconstituter { |
|
97 |
private: |
|
98 |
size_t _buffer_size; |
|
99 |
u1* _buffer; |
|
100 |
u1* _buffer_ptr; |
|
101 |
Thread* _thread; |
|
102 |
||
103 |
enum { |
|
104 |
// initial size should be power of two |
|
105 |
initial_buffer_size = 1024 |
|
106 |
}; |
|
107 |
||
108 |
inline Thread* thread() { return _thread; } |
|
109 |
||
110 |
void write_class_file_format(); |
|
111 |
void write_field_infos(); |
|
112 |
void write_method_infos(); |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
28625
diff
changeset
|
113 |
void write_method_info(const methodHandle& method); |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
28625
diff
changeset
|
114 |
void write_code_attribute(const methodHandle& method); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
115 |
void write_exceptions_attribute(ConstMethod* const_method); |
1 | 116 |
void write_synthetic_attribute(); |
117 |
void write_class_attributes(); |
|
118 |
void write_source_file_attribute(); |
|
119 |
void write_source_debug_extension_attribute(); |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
28625
diff
changeset
|
120 |
u2 line_number_table_entries(const methodHandle& method); |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
28625
diff
changeset
|
121 |
void write_line_number_table_attribute(const methodHandle& method, u2 num_entries); |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
28625
diff
changeset
|
122 |
void write_local_variable_table_attribute(const methodHandle& method, u2 num_entries); |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
28625
diff
changeset
|
123 |
void write_local_variable_type_table_attribute(const methodHandle& method, u2 num_entries); |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
28625
diff
changeset
|
124 |
void write_stackmap_table_attribute(const methodHandle& method, int stackmap_table_len); |
1 | 125 |
u2 inner_classes_attribute_length(); |
126 |
void write_inner_classes_attribute(int length); |
|
127 |
void write_signature_attribute(u2 generic_signaure_index); |
|
128 |
void write_attribute_name_index(const char* name); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
129 |
void write_annotations_attribute(const char* attr_name, AnnotationArray* annos); |
17309
83ac929d332a
8014044: Spelling error in JDK-8009615: boostrapmethod
sla
parents:
17307
diff
changeset
|
130 |
void write_bootstrapmethod_attribute(); |
1 | 131 |
|
132 |
address writeable_address(size_t size); |
|
133 |
void write_u1(u1 x); |
|
134 |
void write_u2(u2 x); |
|
135 |
void write_u4(u4 x); |
|
136 |
void write_u8(u8 x); |
|
137 |
||
138 |
public: |
|
139 |
// Calls to this constructor must be proceeded by a ResourceMark |
|
140 |
// and a HandleMark |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33593
diff
changeset
|
141 |
JvmtiClassFileReconstituter(InstanceKlass* ik) : |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33593
diff
changeset
|
142 |
JvmtiConstantPoolReconstituter(ik) { |
1 | 143 |
_buffer_size = initial_buffer_size; |
144 |
_buffer = _buffer_ptr = NEW_RESOURCE_ARRAY(u1, _buffer_size); |
|
145 |
_thread = Thread::current(); |
|
146 |
write_class_file_format(); |
|
147 |
}; |
|
148 |
||
149 |
size_t class_file_size() { return _buffer_ptr - _buffer; } |
|
150 |
||
151 |
u1* class_file_bytes() { return _buffer; } |
|
152 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
28625
diff
changeset
|
153 |
static void copy_bytecodes(const methodHandle& method, unsigned char* bytecodes); |
1 | 154 |
}; |
7397 | 155 |
|
156 |
#endif // SHARE_VM_PRIMS_JVMTICLASSFILERECONSTITUTER_HPP |