Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/ci/ciEnv.hpp
40930 views
1
/*
2
* Copyright (c) 1999, 2021, Oracle and/or its affiliates. All rights reserved.
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
*/
24
25
#ifndef SHARE_CI_CIENV_HPP
26
#define SHARE_CI_CIENV_HPP
27
28
#include "ci/ciClassList.hpp"
29
#include "ci/ciObjectFactory.hpp"
30
#include "classfile/vmClassMacros.hpp"
31
#include "code/debugInfoRec.hpp"
32
#include "code/dependencies.hpp"
33
#include "code/exceptionHandlerTable.hpp"
34
#include "compiler/compilerThread.hpp"
35
#include "oops/methodData.hpp"
36
#include "runtime/thread.hpp"
37
38
class CompileTask;
39
class OopMapSet;
40
41
// ciEnv
42
//
43
// This class is the top level broker for requests from the compiler
44
// to the VM.
45
class ciEnv : StackObj {
46
CI_PACKAGE_ACCESS_TO
47
48
friend class CompileBroker;
49
friend class Dependencies; // for get_object, during logging
50
friend class PrepareExtraDataClosure;
51
52
private:
53
Arena* _arena; // Alias for _ciEnv_arena except in init_shared_objects()
54
Arena _ciEnv_arena;
55
ciObjectFactory* _factory;
56
OopRecorder* _oop_recorder;
57
DebugInformationRecorder* _debug_info;
58
Dependencies* _dependencies;
59
const char* _failure_reason;
60
bool _inc_decompile_count_on_failure;
61
int _compilable;
62
bool _break_at_compile;
63
int _num_inlined_bytecodes;
64
CompileTask* _task; // faster access to CompilerThread::task
65
CompileLog* _log; // faster access to CompilerThread::log
66
void* _compiler_data; // compiler-specific stuff, if any
67
68
char* _name_buffer;
69
int _name_buffer_len;
70
71
// Cache Jvmti state
72
uint64_t _jvmti_redefinition_count;
73
bool _jvmti_can_hotswap_or_post_breakpoint;
74
bool _jvmti_can_access_local_variables;
75
bool _jvmti_can_post_on_exceptions;
76
bool _jvmti_can_pop_frame;
77
bool _jvmti_can_get_owned_monitor_info; // includes can_get_owned_monitor_stack_depth_info
78
bool _jvmti_can_walk_any_space;
79
80
// Cache DTrace flags
81
bool _dtrace_extended_probes;
82
bool _dtrace_method_probes;
83
bool _dtrace_alloc_probes;
84
85
// Distinguished instances of certain ciObjects..
86
static ciObject* _null_object_instance;
87
88
#define VM_CLASS_DECL(name, ignore_s) static ciInstanceKlass* _##name;
89
VM_CLASSES_DO(VM_CLASS_DECL)
90
#undef VM_CLASS_DECL
91
92
static ciSymbol* _unloaded_cisymbol;
93
static ciInstanceKlass* _unloaded_ciinstance_klass;
94
static ciObjArrayKlass* _unloaded_ciobjarrayklass;
95
96
static jobject _ArrayIndexOutOfBoundsException_handle;
97
static jobject _ArrayStoreException_handle;
98
static jobject _ClassCastException_handle;
99
100
ciInstance* _NullPointerException_instance;
101
ciInstance* _ArithmeticException_instance;
102
ciInstance* _ArrayIndexOutOfBoundsException_instance;
103
ciInstance* _ArrayStoreException_instance;
104
ciInstance* _ClassCastException_instance;
105
106
ciInstance* _the_null_string; // The Java string "null"
107
ciInstance* _the_min_jint_string; // The Java string "-2147483648"
108
109
// Look up a klass by name from a particular class loader (the accessor's).
110
// If require_local, result must be defined in that class loader, or NULL.
111
// If !require_local, a result from remote class loader may be reported,
112
// if sufficient class loader constraints exist such that initiating
113
// a class loading request from the given loader is bound to return
114
// the class defined in the remote loader (or throw an error).
115
//
116
// Return an unloaded klass if !require_local and no class at all is found.
117
//
118
// The CI treats a klass as loaded if it is consistently defined in
119
// another loader, even if it hasn't yet been loaded in all loaders
120
// that could potentially see it via delegation.
121
ciKlass* get_klass_by_name(ciKlass* accessing_klass,
122
ciSymbol* klass_name,
123
bool require_local);
124
125
// Constant pool access.
126
ciKlass* get_klass_by_index(const constantPoolHandle& cpool,
127
int klass_index,
128
bool& is_accessible,
129
ciInstanceKlass* loading_klass);
130
ciConstant get_constant_by_index(const constantPoolHandle& cpool,
131
int pool_index, int cache_index,
132
ciInstanceKlass* accessor);
133
ciField* get_field_by_index(ciInstanceKlass* loading_klass,
134
int field_index);
135
ciMethod* get_method_by_index(const constantPoolHandle& cpool,
136
int method_index, Bytecodes::Code bc,
137
ciInstanceKlass* loading_klass);
138
139
// Implementation methods for loading and constant pool access.
140
ciKlass* get_klass_by_name_impl(ciKlass* accessing_klass,
141
const constantPoolHandle& cpool,
142
ciSymbol* klass_name,
143
bool require_local);
144
ciKlass* get_klass_by_index_impl(const constantPoolHandle& cpool,
145
int klass_index,
146
bool& is_accessible,
147
ciInstanceKlass* loading_klass);
148
ciConstant get_constant_by_index_impl(const constantPoolHandle& cpool,
149
int pool_index, int cache_index,
150
ciInstanceKlass* loading_klass);
151
ciField* get_field_by_index_impl(ciInstanceKlass* loading_klass,
152
int field_index);
153
ciMethod* get_method_by_index_impl(const constantPoolHandle& cpool,
154
int method_index, Bytecodes::Code bc,
155
ciInstanceKlass* loading_klass);
156
157
// Helper methods
158
bool check_klass_accessibility(ciKlass* accessing_klass,
159
Klass* resolved_klass);
160
Method* lookup_method(ciInstanceKlass* accessor,
161
ciKlass* holder,
162
Symbol* name,
163
Symbol* sig,
164
Bytecodes::Code bc,
165
constantTag tag);
166
167
// Get a ciObject from the object factory. Ensures uniqueness
168
// of ciObjects.
169
ciObject* get_object(oop o) {
170
if (o == NULL) {
171
return _null_object_instance;
172
} else {
173
return _factory->get(o);
174
}
175
}
176
177
ciSymbol* get_symbol(Symbol* o) {
178
if (o == NULL) {
179
ShouldNotReachHere();
180
return NULL;
181
} else {
182
return _factory->get_symbol(o);
183
}
184
}
185
186
ciMetadata* get_metadata(Metadata* o) {
187
if (o == NULL) {
188
return NULL;
189
} else {
190
return _factory->get_metadata(o);
191
}
192
}
193
194
ciMetadata* cached_metadata(Metadata* o) {
195
return _factory->cached_metadata(o);
196
}
197
198
ciInstance* get_instance(oop o) {
199
if (o == NULL) return NULL;
200
return get_object(o)->as_instance();
201
}
202
ciObjArrayKlass* get_obj_array_klass(Klass* o) {
203
if (o == NULL) return NULL;
204
return get_metadata(o)->as_obj_array_klass();
205
}
206
ciTypeArrayKlass* get_type_array_klass(Klass* o) {
207
if (o == NULL) return NULL;
208
return get_metadata(o)->as_type_array_klass();
209
}
210
ciKlass* get_klass(Klass* o) {
211
if (o == NULL) return NULL;
212
return get_metadata(o)->as_klass();
213
}
214
ciInstanceKlass* get_instance_klass(Klass* o) {
215
if (o == NULL) return NULL;
216
return get_metadata(o)->as_instance_klass();
217
}
218
ciMethod* get_method(Method* o) {
219
if (o == NULL) return NULL;
220
return get_metadata(o)->as_method();
221
}
222
ciMethodData* get_method_data(MethodData* o) {
223
if (o == NULL) return NULL;
224
return get_metadata(o)->as_method_data();
225
}
226
227
ciMethod* get_method_from_handle(Method* method);
228
229
ciInstance* get_or_create_exception(jobject& handle, Symbol* name);
230
231
// Get a ciMethod representing either an unfound method or
232
// a method with an unloaded holder. Ensures uniqueness of
233
// the result.
234
ciMethod* get_unloaded_method(ciKlass* holder,
235
ciSymbol* name,
236
ciSymbol* signature,
237
ciInstanceKlass* accessor) {
238
ciInstanceKlass* declared_holder = get_instance_klass_for_declared_method_holder(holder);
239
return _factory->get_unloaded_method(declared_holder, name, signature, accessor);
240
}
241
242
// Get a ciKlass representing an unloaded klass.
243
// Ensures uniqueness of the result.
244
ciKlass* get_unloaded_klass(ciKlass* accessing_klass,
245
ciSymbol* name) {
246
return _factory->get_unloaded_klass(accessing_klass, name, true);
247
}
248
249
// Get a ciKlass representing an unloaded klass mirror.
250
// Result is not necessarily unique, but will be unloaded.
251
ciInstance* get_unloaded_klass_mirror(ciKlass* type) {
252
return _factory->get_unloaded_klass_mirror(type);
253
}
254
255
// Get a ciInstance representing an unresolved method handle constant.
256
ciInstance* get_unloaded_method_handle_constant(ciKlass* holder,
257
ciSymbol* name,
258
ciSymbol* signature,
259
int ref_kind) {
260
return _factory->get_unloaded_method_handle_constant(holder, name, signature, ref_kind);
261
}
262
263
// Get a ciInstance representing an unresolved method type constant.
264
ciInstance* get_unloaded_method_type_constant(ciSymbol* signature) {
265
return _factory->get_unloaded_method_type_constant(signature);
266
}
267
268
// See if we already have an unloaded klass for the given name
269
// or return NULL if not.
270
ciKlass *check_get_unloaded_klass(ciKlass* accessing_klass, ciSymbol* name) {
271
return _factory->get_unloaded_klass(accessing_klass, name, false);
272
}
273
274
// Get a ciReturnAddress corresponding to the given bci.
275
// Ensures uniqueness of the result.
276
ciReturnAddress* get_return_address(int bci) {
277
return _factory->get_return_address(bci);
278
}
279
280
// Get a ciMethodData representing the methodData for a method
281
// with none.
282
ciMethodData* get_empty_methodData() {
283
return _factory->get_empty_methodData();
284
}
285
286
// General utility : get a buffer of some required length.
287
// Used in symbol creation.
288
char* name_buffer(int req_len);
289
290
// Is this thread currently in the VM state?
291
static bool is_in_vm();
292
293
// Helper routine for determining the validity of a compilation with
294
// respect to method dependencies (e.g. concurrent class loading).
295
void validate_compile_task_dependencies(ciMethod* target);
296
public:
297
enum {
298
MethodCompilable,
299
MethodCompilable_not_at_tier,
300
MethodCompilable_never
301
};
302
303
ciEnv(CompileTask* task);
304
// Used only during initialization of the ci
305
ciEnv(Arena* arena);
306
~ciEnv();
307
308
OopRecorder* oop_recorder() { return _oop_recorder; }
309
void set_oop_recorder(OopRecorder* r) { _oop_recorder = r; }
310
311
DebugInformationRecorder* debug_info() { return _debug_info; }
312
void set_debug_info(DebugInformationRecorder* i) { _debug_info = i; }
313
314
Dependencies* dependencies() { return _dependencies; }
315
void set_dependencies(Dependencies* d) { _dependencies = d; }
316
317
// This is true if the compilation is not going to produce code.
318
// (It is reasonable to retry failed compilations.)
319
bool failing() { return _failure_reason != NULL; }
320
321
// Reason this compilation is failing, such as "too many basic blocks".
322
const char* failure_reason() { return _failure_reason; }
323
324
// Return state of appropriate compilability
325
int compilable() { return _compilable; }
326
327
const char* retry_message() const {
328
switch (_compilable) {
329
case ciEnv::MethodCompilable_not_at_tier:
330
return "retry at different tier";
331
case ciEnv::MethodCompilable_never:
332
return "not retryable";
333
case ciEnv::MethodCompilable:
334
return NULL;
335
default:
336
ShouldNotReachHere();
337
return NULL;
338
}
339
}
340
341
bool break_at_compile() { return _break_at_compile; }
342
void set_break_at_compile(bool z) { _break_at_compile = z; }
343
344
// Cache Jvmti state
345
bool cache_jvmti_state();
346
bool jvmti_state_changed() const;
347
bool should_retain_local_variables() const {
348
return _jvmti_can_access_local_variables || _jvmti_can_pop_frame;
349
}
350
bool jvmti_can_hotswap_or_post_breakpoint() const { return _jvmti_can_hotswap_or_post_breakpoint; }
351
bool jvmti_can_post_on_exceptions() const { return _jvmti_can_post_on_exceptions; }
352
bool jvmti_can_get_owned_monitor_info() const { return _jvmti_can_get_owned_monitor_info; }
353
bool jvmti_can_walk_any_space() const { return _jvmti_can_walk_any_space; }
354
355
// Cache DTrace flags
356
void cache_dtrace_flags();
357
bool dtrace_extended_probes() const { return _dtrace_extended_probes; }
358
bool dtrace_method_probes() const { return _dtrace_method_probes; }
359
bool dtrace_alloc_probes() const { return _dtrace_alloc_probes; }
360
361
// The compiler task which has created this env.
362
// May be useful to find out compile_id, comp_level, etc.
363
CompileTask* task() { return _task; }
364
365
// Handy forwards to the task:
366
int comp_level(); // task()->comp_level()
367
uint compile_id(); // task()->compile_id()
368
369
// Register the result of a compilation.
370
void register_method(ciMethod* target,
371
int entry_bci,
372
CodeOffsets* offsets,
373
int orig_pc_offset,
374
CodeBuffer* code_buffer,
375
int frame_words,
376
OopMapSet* oop_map_set,
377
ExceptionHandlerTable* handler_table,
378
ImplicitExceptionTable* inc_table,
379
AbstractCompiler* compiler,
380
bool has_unsafe_access,
381
bool has_wide_vectors,
382
RTMState rtm_state = NoRTM,
383
const GrowableArrayView<RuntimeStub*>& native_invokers = GrowableArrayView<RuntimeStub*>::EMPTY);
384
385
386
// Access to certain well known ciObjects.
387
#define VM_CLASS_FUNC(name, ignore_s) \
388
ciInstanceKlass* name() { \
389
return _##name;\
390
}
391
VM_CLASSES_DO(VM_CLASS_FUNC)
392
#undef VM_CLASS_FUNC
393
394
ciInstance* NullPointerException_instance() {
395
assert(_NullPointerException_instance != NULL, "initialization problem");
396
return _NullPointerException_instance;
397
}
398
ciInstance* ArithmeticException_instance() {
399
assert(_ArithmeticException_instance != NULL, "initialization problem");
400
return _ArithmeticException_instance;
401
}
402
403
// Lazy constructors:
404
ciInstance* ArrayIndexOutOfBoundsException_instance();
405
ciInstance* ArrayStoreException_instance();
406
ciInstance* ClassCastException_instance();
407
408
ciInstance* the_null_string();
409
ciInstance* the_min_jint_string();
410
411
static ciSymbol* unloaded_cisymbol() {
412
return _unloaded_cisymbol;
413
}
414
static ciObjArrayKlass* unloaded_ciobjarrayklass() {
415
return _unloaded_ciobjarrayklass;
416
}
417
static ciInstanceKlass* unloaded_ciinstance_klass() {
418
return _unloaded_ciinstance_klass;
419
}
420
ciInstance* unloaded_ciinstance();
421
422
// Note: To find a class from its name string, use ciSymbol::make,
423
// but consider adding to vmSymbols.hpp instead.
424
425
// converts the ciKlass* representing the holder of a method into a
426
// ciInstanceKlass*. This is needed since the holder of a method in
427
// the bytecodes could be an array type. Basically this converts
428
// array types into java/lang/Object and other types stay as they are.
429
static ciInstanceKlass* get_instance_klass_for_declared_method_holder(ciKlass* klass);
430
431
// Access to the compile-lifetime allocation arena.
432
Arena* arena() { return _arena; }
433
434
// What is the current compilation environment?
435
static ciEnv* current() { return CompilerThread::current()->env(); }
436
437
// Overload with current thread argument
438
static ciEnv* current(CompilerThread *thread) { return thread->env(); }
439
440
// Per-compiler data. (Used by C2 to publish the Compile* pointer.)
441
void* compiler_data() { return _compiler_data; }
442
void set_compiler_data(void* x) { _compiler_data = x; }
443
444
// Notice that a method has been inlined in the current compile;
445
// used only for statistics.
446
void notice_inlined_method(ciMethod* method);
447
448
// Total number of bytecodes in inlined methods in this compile
449
int num_inlined_bytecodes() const;
450
451
// Output stream for logging compilation info.
452
CompileLog* log() { return _log; }
453
void set_log(CompileLog* log) { _log = log; }
454
455
void record_failure(const char* reason); // Record failure and report later
456
void report_failure(const char* reason); // Report failure immediately
457
void record_method_not_compilable(const char* reason, bool all_tiers = false);
458
void record_out_of_memory_failure();
459
460
// RedefineClasses support
461
void metadata_do(MetadataClosure* f) { _factory->metadata_do(f); }
462
463
// Dump the compilation replay data for the ciEnv to the stream.
464
void dump_replay_data(int compile_id);
465
void dump_inline_data(int compile_id);
466
void dump_replay_data(outputStream* out);
467
void dump_replay_data_unsafe(outputStream* out);
468
void dump_compile_data(outputStream* out);
469
};
470
471
#endif // SHARE_CI_CIENV_HPP
472
473