author | herrick |
Wed, 27 Mar 2019 08:27:58 -0400 | |
branch | JDK-8200758-branch |
changeset 57288 | 0be43184f52a |
parent 53244 | 9807daeb47c4 |
child 54669 | ad45b3802d4e |
permissions | -rw-r--r-- |
33160 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52381
diff
changeset
|
2 |
* Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved. |
33160 | 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 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
*/ |
|
23 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52381
diff
changeset
|
24 |
#ifndef SHARE_JVMCI_JVMCICODEINSTALLER_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52381
diff
changeset
|
25 |
#define SHARE_JVMCI_JVMCICODEINSTALLER_HPP |
33160 | 26 |
|
27 |
#include "jvmci/jvmciCompiler.hpp" |
|
28 |
#include "jvmci/jvmciEnv.hpp" |
|
29 |
#include "code/nativeInst.hpp" |
|
30 |
||
52381
7f90bc64b0fc
8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents:
50729
diff
changeset
|
31 |
#if INCLUDE_AOT |
33160 | 32 |
class RelocBuffer : public StackObj { |
33 |
enum { stack_size = 1024 }; |
|
34 |
public: |
|
35 |
RelocBuffer() : _size(0), _buffer(0) {} |
|
36 |
~RelocBuffer(); |
|
37 |
void ensure_size(size_t bytes); |
|
38 |
void set_size(size_t bytes); |
|
39 |
address begin() const; |
|
40 |
size_t size() const { return _size; } |
|
41 |
private: |
|
42 |
size_t _size; |
|
43 |
char _static_buffer[stack_size]; |
|
44 |
char *_buffer; |
|
45 |
}; |
|
46 |
||
42650 | 47 |
class AOTOopRecorder : public OopRecorder { |
48 |
public: |
|
49 |
AOTOopRecorder(Arena* arena = NULL, bool deduplicate = false); |
|
50 |
||
51 |
virtual int find_index(Metadata* h); |
|
52 |
virtual int find_index(jobject h); |
|
47668 | 53 |
int nr_meta_refs() const; |
54 |
jobject meta_element(int pos) const; |
|
42650 | 55 |
|
56 |
private: |
|
47668 | 57 |
void record_meta_ref(jobject ref, int index); |
42650 | 58 |
|
47668 | 59 |
GrowableArray<jobject>* _meta_refs; |
42650 | 60 |
}; |
61 |
||
33160 | 62 |
class CodeMetadata { |
63 |
public: |
|
64 |
CodeMetadata() {} |
|
65 |
||
66 |
CodeBlob* get_code_blob() const { return _cb; } |
|
67 |
||
68 |
PcDesc* get_pc_desc() const { return _pc_desc; } |
|
69 |
int get_nr_pc_desc() const { return _nr_pc_desc; } |
|
70 |
||
71 |
u_char* get_scopes_desc() const { return _scopes_desc; } |
|
72 |
int get_scopes_size() const { return _nr_scopes_desc; } |
|
73 |
||
74 |
RelocBuffer* get_reloc_buffer() { return &_reloc_buffer; } |
|
75 |
||
42650 | 76 |
AOTOopRecorder* get_oop_recorder() { return _oop_recorder; } |
77 |
||
33160 | 78 |
ExceptionHandlerTable* get_exception_table() { return _exception_table; } |
79 |
||
80 |
void set_pc_desc(PcDesc* desc, int count) { |
|
81 |
_pc_desc = desc; |
|
82 |
_nr_pc_desc = count; |
|
83 |
} |
|
84 |
||
85 |
void set_scopes(u_char* scopes, int size) { |
|
86 |
_scopes_desc = scopes; |
|
87 |
_nr_scopes_desc = size; |
|
88 |
} |
|
89 |
||
42650 | 90 |
void set_oop_recorder(AOTOopRecorder* recorder) { |
91 |
_oop_recorder = recorder; |
|
92 |
} |
|
93 |
||
33160 | 94 |
void set_exception_table(ExceptionHandlerTable* table) { |
95 |
_exception_table = table; |
|
96 |
} |
|
97 |
||
98 |
private: |
|
99 |
CodeBlob* _cb; |
|
100 |
PcDesc* _pc_desc; |
|
101 |
int _nr_pc_desc; |
|
102 |
||
103 |
u_char* _scopes_desc; |
|
104 |
int _nr_scopes_desc; |
|
105 |
||
106 |
RelocBuffer _reloc_buffer; |
|
42650 | 107 |
AOTOopRecorder* _oop_recorder; |
33160 | 108 |
ExceptionHandlerTable* _exception_table; |
109 |
}; |
|
52381
7f90bc64b0fc
8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents:
50729
diff
changeset
|
110 |
#endif // INCLUDE_AOT |
33160 | 111 |
|
112 |
/* |
|
113 |
* This class handles the conversion from a InstalledCode to a CodeBlob or an nmethod. |
|
114 |
*/ |
|
115 |
class CodeInstaller : public StackObj { |
|
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
34502
diff
changeset
|
116 |
friend class JVMCIVMStructs; |
33160 | 117 |
private: |
118 |
enum MarkId { |
|
42650 | 119 |
VERIFIED_ENTRY = 1, |
120 |
UNVERIFIED_ENTRY = 2, |
|
121 |
OSR_ENTRY = 3, |
|
122 |
EXCEPTION_HANDLER_ENTRY = 4, |
|
123 |
DEOPT_HANDLER_ENTRY = 5, |
|
124 |
INVOKEINTERFACE = 6, |
|
125 |
INVOKEVIRTUAL = 7, |
|
126 |
INVOKESTATIC = 8, |
|
127 |
INVOKESPECIAL = 9, |
|
128 |
INLINE_INVOKE = 10, |
|
129 |
POLL_NEAR = 11, |
|
130 |
POLL_RETURN_NEAR = 12, |
|
131 |
POLL_FAR = 13, |
|
132 |
POLL_RETURN_FAR = 14, |
|
133 |
CARD_TABLE_ADDRESS = 15, |
|
134 |
CARD_TABLE_SHIFT = 16, |
|
135 |
HEAP_TOP_ADDRESS = 17, |
|
136 |
HEAP_END_ADDRESS = 18, |
|
137 |
NARROW_KLASS_BASE_ADDRESS = 19, |
|
43435 | 138 |
NARROW_OOP_BASE_ADDRESS = 20, |
139 |
CRC_TABLE_ADDRESS = 21, |
|
140 |
LOG_OF_HEAP_REGION_GRAIN_BYTES = 22, |
|
141 |
INLINE_CONTIGUOUS_ALLOCATION_SUPPORTED = 23, |
|
42650 | 142 |
INVOKE_INVALID = -1 |
33160 | 143 |
}; |
144 |
||
145 |
Arena _arena; |
|
146 |
||
147 |
jobject _data_section_handle; |
|
148 |
jobject _data_section_patches_handle; |
|
149 |
jobject _sites_handle; |
|
150 |
CodeOffsets _offsets; |
|
151 |
||
152 |
jobject _code_handle; |
|
153 |
jint _code_size; |
|
154 |
jint _total_frame_size; |
|
35823
59a847ec6ee3
8146608: [JVMCI] DebugInfo Tests on DeoptimizeALot runs fails in assert(_pc == *pc_addr || pc == *pc_addr) frame::patch_pc() /frame_x86.cpp:285
rschatz
parents:
35582
diff
changeset
|
155 |
jint _orig_pc_offset; |
33160 | 156 |
jint _parameter_count; |
157 |
jint _constants_size; |
|
158 |
#ifndef PRODUCT |
|
159 |
jobject _comments_handle; |
|
160 |
#endif |
|
161 |
||
162 |
bool _has_wide_vector; |
|
163 |
jobject _word_kind_handle; |
|
164 |
||
165 |
MarkId _next_call_type; |
|
166 |
address _invoke_mark_pc; |
|
167 |
||
168 |
CodeSection* _instructions; |
|
169 |
CodeSection* _constants; |
|
170 |
||
171 |
OopRecorder* _oop_recorder; |
|
172 |
DebugInformationRecorder* _debug_recorder; |
|
173 |
Dependencies* _dependencies; |
|
174 |
ExceptionHandlerTable _exception_handler_table; |
|
175 |
||
42650 | 176 |
bool _immutable_pic_compilation; // Installer is called for Immutable PIC compilation. |
177 |
||
33160 | 178 |
static ConstantOopWriteValue* _oop_null_scope_value; |
179 |
static ConstantIntValue* _int_m1_scope_value; |
|
180 |
static ConstantIntValue* _int_0_scope_value; |
|
181 |
static ConstantIntValue* _int_1_scope_value; |
|
182 |
static ConstantIntValue* _int_2_scope_value; |
|
183 |
static LocationValue* _illegal_value; |
|
184 |
||
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
185 |
jint pd_next_offset(NativeInstruction* inst, jint pc_offset, Handle method, TRAPS); |
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
186 |
void pd_patch_OopConstant(int pc_offset, Handle constant, TRAPS); |
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
187 |
void pd_patch_MetaspaceConstant(int pc_offset, Handle constant, TRAPS); |
36063
96e86c7f8fec
8149689: [JVMCI] CodeInstaller::pd_patch_DataSectionReference should be able to throw exceptions
twisti
parents:
35823
diff
changeset
|
188 |
void pd_patch_DataSectionReference(int pc_offset, int data_offset, TRAPS); |
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
189 |
void pd_relocate_ForeignCall(NativeInstruction* inst, jlong foreign_call_destination, TRAPS); |
48487 | 190 |
void pd_relocate_JavaMethod(CodeBuffer &cbuf, Handle method, jint pc_offset, TRAPS); |
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
191 |
void pd_relocate_poll(address pc, jint mark, TRAPS); |
33160 | 192 |
|
49192
6734eeef4283
8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents:
48487
diff
changeset
|
193 |
objArrayOop sites(); |
6734eeef4283
8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents:
48487
diff
changeset
|
194 |
arrayOop code(); |
6734eeef4283
8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents:
48487
diff
changeset
|
195 |
arrayOop data_section(); |
6734eeef4283
8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents:
48487
diff
changeset
|
196 |
objArrayOop data_section_patches(); |
33160 | 197 |
#ifndef PRODUCT |
49192
6734eeef4283
8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents:
48487
diff
changeset
|
198 |
objArrayOop comments(); |
33160 | 199 |
#endif |
200 |
||
49192
6734eeef4283
8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents:
48487
diff
changeset
|
201 |
oop word_kind(); |
33160 | 202 |
|
203 |
public: |
|
33632 | 204 |
|
42650 | 205 |
CodeInstaller(bool immutable_pic_compilation) : _arena(mtCompiler), _immutable_pic_compilation(immutable_pic_compilation) {} |
33160 | 206 |
|
52381
7f90bc64b0fc
8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents:
50729
diff
changeset
|
207 |
#if INCLUDE_AOT |
34165 | 208 |
JVMCIEnv::CodeInstallResult gather_metadata(Handle target, Handle compiled_code, CodeMetadata& metadata, TRAPS); |
52381
7f90bc64b0fc
8213203: [JVMCI] adopt formatting changes from jvmci 8
never
parents:
50729
diff
changeset
|
209 |
#endif |
34165 | 210 |
JVMCIEnv::CodeInstallResult install(JVMCICompiler* compiler, Handle target, Handle compiled_code, CodeBlob*& cb, Handle installed_code, Handle speculation_log, TRAPS); |
33160 | 211 |
|
212 |
static address runtime_call_target_address(oop runtime_call); |
|
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
213 |
static VMReg get_hotspot_reg(jint jvmciRegisterNumber, TRAPS); |
33160 | 214 |
static bool is_general_purpose_reg(VMReg hotspotRegister); |
215 |
||
216 |
const OopMapSet* oopMapSet() const { return _debug_recorder->_oopmaps; } |
|
217 |
||
218 |
protected: |
|
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
42861
diff
changeset
|
219 |
Location::Type get_oop_type(Thread* thread, Handle value); |
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
220 |
ScopeValue* get_scope_value(Handle value, BasicType type, GrowableArray<ScopeValue*>* objects, ScopeValue* &second, TRAPS); |
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
221 |
MonitorValue* get_monitor_value(Handle value, GrowableArray<ScopeValue*>* objects, TRAPS); |
33160 | 222 |
|
41697
94ef14db8a20
8166869: [JVMCI] record metadata relocations for metadata references
never
parents:
36842
diff
changeset
|
223 |
void* record_metadata_reference(CodeSection* section, address dest, Handle constant, TRAPS); |
33632 | 224 |
#ifdef _LP64 |
41697
94ef14db8a20
8166869: [JVMCI] record metadata relocations for metadata references
never
parents:
36842
diff
changeset
|
225 |
narrowKlass record_narrow_metadata_reference(CodeSection* section, address dest, Handle constant, TRAPS); |
33632 | 226 |
#endif |
227 |
||
35582
c32a0cc19877
8147599: [JVMCI] simplify code installation interface
rschatz
parents:
35123
diff
changeset
|
228 |
// extract the fields of the HotSpotCompiledCode |
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
229 |
void initialize_fields(oop target, oop target_method, TRAPS); |
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
230 |
void initialize_dependencies(oop target_method, OopRecorder* oop_recorder, TRAPS); |
33160 | 231 |
|
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
232 |
int estimate_stubs_size(TRAPS); |
33160 | 233 |
|
234 |
// perform data and call relocation on the CodeBuffer |
|
43416
f8c241512446
8171082: [AOT] AOT'd SystemModules.modules() fails to load when too large
rbackman
parents:
42861
diff
changeset
|
235 |
JVMCIEnv::CodeInstallResult initialize_buffer(CodeBuffer& buffer, bool check_size, TRAPS); |
33160 | 236 |
|
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
42861
diff
changeset
|
237 |
void assumption_NoFinalizableSubclass(Thread* thread, Handle assumption); |
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
42861
diff
changeset
|
238 |
void assumption_ConcreteSubtype(Thread* thread, Handle assumption); |
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
42861
diff
changeset
|
239 |
void assumption_LeafType(Thread* thread, Handle assumption); |
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
42861
diff
changeset
|
240 |
void assumption_ConcreteMethod(Thread* thread, Handle assumption); |
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
42861
diff
changeset
|
241 |
void assumption_CallSiteTargetValue(Thread* thread, Handle assumption); |
33160 | 242 |
|
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
243 |
void site_Safepoint(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS); |
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
244 |
void site_Infopoint(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS); |
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
245 |
void site_Call(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS); |
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
246 |
void site_DataPatch(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS); |
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
247 |
void site_Mark(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS); |
35582
c32a0cc19877
8147599: [JVMCI] simplify code installation interface
rschatz
parents:
35123
diff
changeset
|
248 |
void site_ExceptionHandler(jint pc_offset, Handle site); |
33160 | 249 |
|
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
250 |
OopMap* create_oop_map(Handle debug_info, TRAPS); |
33160 | 251 |
|
34502
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
252 |
/** |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
253 |
* Specifies the level of detail to record for a scope. |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
254 |
*/ |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
255 |
enum ScopeMode { |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
256 |
// Only record a method and BCI |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
257 |
BytecodePosition, |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
258 |
// Record a method, bci and JVM frame state |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
259 |
FullFrame |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
260 |
}; |
1cfcb971cb17
8143730: [JVMCI] infopoint recording is too restrictive
dnsimon
parents:
34165
diff
changeset
|
261 |
|
50729
7755c93d3923
8204209: [Graal] Compilation fails during nmethod printing with "assert(bci == 0 || 0 <= bci && bci < code_size()) failed: illegal bci"
iveresov
parents:
49192
diff
changeset
|
262 |
int map_jvmci_bci(int bci); |
42861
1d4dfdf4390b
8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents:
42650
diff
changeset
|
263 |
void record_scope(jint pc_offset, Handle debug_info, ScopeMode scope_mode, bool return_oop, TRAPS); |
1d4dfdf4390b
8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents:
42650
diff
changeset
|
264 |
void record_scope(jint pc_offset, Handle debug_info, ScopeMode scope_mode, TRAPS) { |
1d4dfdf4390b
8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents:
42650
diff
changeset
|
265 |
record_scope(pc_offset, debug_info, scope_mode, false /* return_oop */, THREAD); |
1d4dfdf4390b
8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents:
42650
diff
changeset
|
266 |
} |
1d4dfdf4390b
8169938: [AOT] SIGSEGV at ~BufferBlob::vtable chunks
dlong
parents:
42650
diff
changeset
|
267 |
void record_scope(jint pc_offset, Handle position, ScopeMode scope_mode, GrowableArray<ScopeValue*>* objects, bool return_oop, TRAPS); |
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
268 |
void record_object_value(ObjectValue* sv, Handle value, GrowableArray<ScopeValue*>* objects, TRAPS); |
33160 | 269 |
|
34153
cbcfa2a6fe0b
8139589: [JVMCI] throw exceptions in faulty code installation operations
twisti
parents:
33632
diff
changeset
|
270 |
GrowableArray<ScopeValue*>* record_virtual_objects(Handle debug_info, TRAPS); |
33160 | 271 |
|
272 |
int estimateStubSpace(int static_call_stubs); |
|
273 |
}; |
|
274 |
||
275 |
/** |
|
276 |
* Gets the Method metaspace object from a HotSpotResolvedJavaMethodImpl Java object. |
|
277 |
*/ |
|
278 |
Method* getMethodFromHotSpotMethod(oop hotspot_method); |
|
279 |
||
280 |
||
281 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52381
diff
changeset
|
282 |
#endif // SHARE_JVMCI_JVMCICODEINSTALLER_HPP |