-
Notifications
You must be signed in to change notification settings - Fork 747
/
Copy pathJ9Compilation.hpp
593 lines (453 loc) · 24 KB
/
J9Compilation.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
/*******************************************************************************
* Copyright IBM Corp. and others 2000
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/
* or the Apache License, Version 2.0 which accompanies this distribution and
* is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* This Source Code may also be made available under the following
* Secondary Licenses when the conditions for such availability set
* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
* General Public License, version 2 with the GNU Classpath
* Exception [1] and GNU General Public License, version 2 with the
* OpenJDK Assembly Exception [2].
*
* [1] https://www.gnu.org/software/classpath/license.html
* [2] https://openjdk.org/legal/assembly-exception.html
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0
*******************************************************************************/
#ifndef TR_J9_COMPILATIONBASE_INCL
#define TR_J9_COMPILATIONBASE_INCL
/*
* The following #define and typedef must appear before any #includes in this file
*/
#ifndef TR_J9_COMPILATIONBASE_CONNECTOR
#define TR_J9_COMPILATIONBASE_CONNECTOR
namespace J9 { class Compilation; }
namespace J9 { typedef J9::Compilation CompilationConnector; }
#endif
#include "compile/OMRCompilation.hpp"
#include "compile/CompilationTypes.hpp"
#include "control/Options.hpp"
#include "control/Options_inlines.hpp"
#include "infra/Statistics.hpp"
#include "env/CompilerEnv.hpp"
#include "env/OMRMemory.hpp"
#include "compile/AOTClassInfo.hpp"
#include "runtime/SymbolValidationManager.hpp"
#include "env/PersistentCollections.hpp"
class TR_AOTGuardSite;
class TR_FrontEnd;
class TR_ResolvedMethod;
class TR_OptimizationPlan;
class TR_J9VMBase;
class TR_ValueProfileInfoManager;
class TR_BranchProfileInfoManager;
class TR_MethodBranchProfileInfo;
class TR_ExternalValueProfileInfo;
class TR_J9VM;
class TR_AccessedProfileInfo;
class TR_RelocationRuntime;
namespace TR { class IlGenRequest; }
#ifdef J9VM_OPT_JITSERVER
struct SerializedRuntimeAssumption;
class ClientSessionData;
class AOTCacheRecord;
class AOTCacheThunkRecord;
#endif /* defined(J9VM_OPT_JITSERVER) */
#define COMPILATION_AOT_HAS_INVOKEHANDLE -9
#define COMPILATION_RESERVE_RESOLVED_TRAMPOLINE_FATAL_ERROR -10
#define COMPILATION_RESERVE_RESOLVED_TRAMPOLINE_INSUFFICIENT_SPACE -11
#define COMPILATION_RESERVE_RESOLVED_TRAMPOLINE_ERROR_INBINARYENCODING -12
#define COMPILATION_RESERVE_RESOLVED_TRAMPOLINE_ERROR -13
#define COMPILATION_RESERVE_UNRESOLVED_TRAMPOLINE_FATAL_ERROR -14
#define COMPILATION_RESERVE_UNRESOLVED_TRAMPOLINE_INSUFFICIENT_SPACE -15
#define COMPILATION_RESERVE_UNRESOLVED_TRAMPOLINE_ERROR_INBINARYENCODING -16
#define COMPILATION_RESERVE_UNRESOLVED_TRAMPOLINE_ERROR -17
#define COMPILATION_RESERVE_NTRAMPOLINES_INSUFFICIENT_SPACE -18
#define COMPILATION_RESERVE_NTRAMPOLINES_ERROR_INBINARYENCODING -19
#define COMPILATION_AOT_RELOCATION_FAILED -20
namespace J9
{
class OMR_EXTENSIBLE Compilation : public OMR::CompilationConnector
{
public:
TR_ALLOC(TR_Memory::Compilation)
Compilation(
int32_t compThreadId,
J9VMThread *j9VMThread,
TR_FrontEnd *,
TR_ResolvedMethod *,
TR::IlGenRequest &,
TR::Options &,
TR::Region &heapMemoryRegion,
TR_Memory *,
TR_OptimizationPlan *optimizationPlan,
TR_RelocationRuntime *reloRuntime,
TR::Environment *target = NULL);
~Compilation();
TR_J9VMBase *fej9();
TR_J9VM *fej9vm();
static void allocateCompYieldStatsMatrix();
static TR_Stats **_compYieldStatsMatrix;
void updateCompYieldStatistics(TR_CallingContext callingContext);
bool getUpdateCompYieldStats() { return _updateCompYieldStats; }
void printCompYieldStats();
uint64_t getMaxYieldInterval() { return _maxYieldInterval; }
static const char * getContextName(TR_CallingContext context);
static void printCompYieldStatsMatrix();
static void printEntryName(int32_t, int32_t);
bool getNeedsClassLookahead() {return _needsClassLookahead;}
void setNeedsClassLookahead(bool b) {_needsClassLookahead = b;}
bool hasBlockFrequencyInfo();
bool isShortRunningMethod(int32_t callerIndex);
int32_t getDltBcIndex() { return _dltBcIndex;}
void setDltBcIndex(int32_t ix) { _dltBcIndex=ix;}
int32_t *getDltSlotDescription() { return _dltSlotDescription;}
void setDltSlotDescription(int32_t *ds) { _dltSlotDescription = ds;}
void *getReservedDataCache() { return _reservedDataCache; }
void setReservedDataCache(void *dataCache) { _reservedDataCache = dataCache; }
uint32_t getTotalNeededDataCacheSpace() { return _totalNeededDataCacheSpace; }
void incrementTotalNeededDataCacheSpace(uint32_t size) { _totalNeededDataCacheSpace += size; }
void * getAotMethodDataStart() const { return _aotMethodDataStart; }
void setAotMethodDataStart(void *p) { _aotMethodDataStart = p; }
TR_AOTMethodHeader * getAotMethodHeaderEntry();
TR::Node *findNullChkInfo(TR::Node *node);
bool isAlignStackMaps() { return J9::Compilation::target().cpu.isARM(); }
void changeOptLevel(TR_Hotness);
// For replay
void *getCurMethodMetadata() {return _curMethodMetadata;}
void setCurMethodMetadata(void *m) {_curMethodMetadata = m;}
void setGetImplInlineable(bool b) { setGetImplAndRefersToInlineable(b); }
/**
* \brief Sets whether the native \c java.lang.ref.Reference
* methods, \c getImpl and \c refersTo, can be inlined.
* \param[in] b A \c bool argument indicating whether \c getImpl
* and \c refersTo can be inlined.
*/
void setGetImplAndRefersToInlineable(bool b) { _getImplAndRefersToInlineable = b; }
/**
* \brief Indicates whether the native \c java.lang.ref.Reference
* methods, \c getImpl and \c refersTo, can be inlined.
*
* \return \c true if they can be inlined; \c false otherwise
*/
bool getGetImplAndRefersToInlineable() { return _getImplAndRefersToInlineable; }
//for converters
bool canTransformConverterMethod(TR::RecognizedMethod method);
bool isConverterMethod(TR::RecognizedMethod method);
bool useCompressedPointers();
bool useAnchors();
bool isRecompilationEnabled();
bool isJProfilingCompilation();
bool pendingPushLivenessDuringIlgen();
TR::list<TR_ExternalValueProfileInfo*> &getExternalVPInfos() { return _externalVPInfoList; }
TR_ValueProfileInfoManager *getValueProfileInfoManager() { return _vpInfoManager;}
void setValueProfileInfoManager(TR_ValueProfileInfoManager * mgr) { _vpInfoManager = mgr; }
TR_BranchProfileInfoManager *getBranchProfileInfoManager() { return _bpInfoManager;}
void setBranchProfileInfoManager(TR_BranchProfileInfoManager * mgr) { _bpInfoManager = mgr; }
TR::list<TR_MethodBranchProfileInfo*> &getMethodBranchInfos() { return _methodBranchInfoList; }
// See if the allocation of an object of the class can be inlined.
bool canAllocateInlineClass(TR_OpaqueClassBlock *clazz);
// See if it is OK to remove an allocation node to e.g. merge it with others
// or allocate it locally on a stack frame.
// If so, return the allocation size. Otherwise return 0.
// The second argument is the returned class information.
//
int32_t canAllocateInlineOnStack(TR::Node* node, TR_OpaqueClassBlock* &classInfo);
int32_t canAllocateInline(TR::Node* node, TR_OpaqueClassBlock* &classInfo);
TR::KnownObjectTable *getOrCreateKnownObjectTable();
void freeKnownObjectTable();
bool compileRelocatableCode();
bool compilePortableCode();
int32_t maxInternalPointers();
bool compilationShouldBeInterrupted(TR_CallingContext);
/* Heuristic Region APIs
*
* Heuristic Regions denotes regions where decisions
* within the region do not need to be remembered. In relocatable compiles,
* when the compiler requests some information via front end query,
* it's possible that the front end might walk a data structure,
* looking at several different possible answers before finally deciding
* on one. For a relocatable compile, only the final answer is important.
* Thus, a heuristic region is used to ignore all of the intermediate
* steps in determining the final answer.
*/
void enterHeuristicRegion();
void exitHeuristicRegion();
/* Used to ensure that a implementer chosen for inlining is valid under
* AOT.
*/
bool validateTargetToBeInlined(TR_ResolvedMethod *implementer);
void reportILGeneratorPhase();
void reportAnalysisPhase(uint8_t id);
void reportOptimizationPhase(OMR::Optimizations);
void reportOptimizationPhaseForSnap(OMR::Optimizations);
CompilationPhase saveCompilationPhase();
void restoreCompilationPhase(CompilationPhase phase);
/**
* \brief
* Answers whether the fact that a method has not been executed yet implies
* that the method is cold.
*
* \return
* true if the fact that a method has not been executed implies it is cold;
* false otherwise
*/
bool notYetRunMeansCold();
// --------------------------------------------------------------------------
// Hardware profiling
//
bool HWProfileDone() { return _doneHWProfile;}
void setHWProfileDone(bool val) {_doneHWProfile = val;}
void addHWPInstruction(TR::Instruction *instruction,
TR_HWPInstructionInfo::type instructionType,
void *data = NULL);
void addHWPCallInstruction(TR::Instruction *instruction, bool indirectCall = false, TR::Instruction *prev = NULL);
void addHWPReturnInstruction(TR::Instruction *instruction);
void addHWPValueProfileInstruction(TR::Instruction *instruction);
void addHWPBCMap(TR_HWPBytecodePCToIAMap map) { _hwpBCMap.add(map); }
TR_Array<TR_HWPInstructionInfo> *getHWPInstructions() { return &_hwpInstructions; }
TR_Array<TR_HWPBytecodePCToIAMap> *getHWPBCMap() { return &_hwpBCMap; }
bool verifyCompressedRefsAnchors(bool anchorize);
void verifyCompressedRefsAnchors();
void verifyCompressedRefsAnchors(TR::Node *parent, TR::Node *node,
TR::TreeTop *tt, vcount_t visitCount);
void verifyCompressedRefsAnchors(TR::Node *parent, TR::Node *node,
TR::TreeTop *tt, vcount_t visitCount,
TR::list<TR_Pair<TR::Node, TR::TreeTop> *> &nodesList);
// CodeGenerator?
TR::list<TR_AOTGuardSite*> *getAOTGuardPatchSites() { return _aotGuardPatchSites; }
TR_AOTGuardSite *addAOTNOPSite();
TR::list<TR_VirtualGuardSite*> *getSideEffectGuardPatchSites() { return &_sideEffectGuardPatchSites; }
TR_VirtualGuardSite *addSideEffectNOPSite();
TR_CHTable *getCHTable() const { return _transientCHTable; }
// Inliner
using OMR::CompilationConnector::incInlineDepth;
bool incInlineDepth(TR::ResolvedMethodSymbol *, TR_ByteCodeInfo &, int32_t cpIndex, TR::SymbolReference *callSymRef, bool directCall, TR_PrexArgInfo *argInfo = 0);
bool isGeneratedReflectionMethod(TR_ResolvedMethod *method);
TR_ExternalRelocationTargetKind getReloTypeForMethodToBeInlined(TR_VirtualGuardSelection *guard, TR::Node *callNode, TR_OpaqueClassBlock *receiverClass);
// cache J9 VM pointers
TR_OpaqueClassBlock *getObjectClassPointer();
TR_OpaqueClassBlock *getRunnableClassPointer();
TR_OpaqueClassBlock *getStringClassPointer();
TR_OpaqueClassBlock *getSystemClassPointer();
TR_OpaqueClassBlock *getReferenceClassPointer();
TR_OpaqueClassBlock *getJITHelpersClassPointer();
TR_OpaqueClassBlock *getClassClassPointer(bool isVettedForAOT = false);
// Monitors
TR_Array<List<TR::RegisterMappedSymbol> * > & getMonitorAutos() { return _monitorAutos; }
void addMonitorAuto(TR::RegisterMappedSymbol *, int32_t callerIndex);
void addAsMonitorAuto(TR::SymbolReference* symRef, bool dontAddIfDLT);
TR::list<TR::SymbolReference*> * getMonitorAutoSymRefsInCompiledMethod() { return &_monitorAutoSymRefsInCompiledMethod; }
// OSR Guard Redefinition Classes
void addClassForOSRRedefinition(TR_OpaqueClassBlock *clazz);
TR_Array<TR_OpaqueClassBlock*> *getClassesForOSRRedefinition() { return &_classForOSRRedefinition; }
void addClassForStaticFinalFieldModification(TR_OpaqueClassBlock *clazz);
TR_Array<TR_OpaqueClassBlock*> *getClassesForStaticFinalFieldModification() { return &_classForStaticFinalFieldModification; }
TR::list<TR::AOTClassInfo*>* _aotClassInfo;
J9VMThread *j9VMThread() { return _j9VMThread; }
// cache profile information
TR_AccessedProfileInfo *getProfileInfo() { return _profileInfo; }
// Flag to test whether early stages of JProfiling ran
void setSkippedJProfilingBlock(bool b = true) { _skippedJProfilingBlock = b; }
bool getSkippedJProfilingBlock() { return _skippedJProfilingBlock; }
//
bool supportsQuadOptimization();
TR_RelocationRuntime *reloRuntime() { return _reloRuntime; }
bool incompleteOptimizerSupportForReadWriteBarriers();
#if defined(J9VM_OPT_JITSERVER)
static bool isOutOfProcessCompilation() { return _outOfProcessCompilation; } // server side
static void setOutOfProcessCompilation() { _outOfProcessCompilation = true; }
bool isRemoteCompilation() const { return _remoteCompilation; } // client side
void setRemoteCompilation() { _remoteCompilation = true; }
TR::list<SerializedRuntimeAssumption *> &getSerializedRuntimeAssumptions() { return _serializedRuntimeAssumptions; }
ClientSessionData *getClientData() const { return _clientData; }
void setClientData(ClientSessionData *clientData) { _clientData = clientData; }
JITServer::ServerStream *getStream() const { return _stream; }
void setStream(JITServer::ServerStream *stream) { _stream = stream; }
void switchToPerClientMemory() { _trMemory = _perClientMemory; }
void switchToGlobalMemory() { _trMemory = &_globalMemory; }
TR::list<TR_OpaqueMethodBlock *> &getMethodsRequiringTrampolines() { return _methodsRequiringTrampolines; }
bool isDeserializedAOTMethod() const { return _deserializedAOTMethod; }
void setDeserializedAOTMethod(bool deserialized) { _deserializedAOTMethod = deserialized; }
bool isDeserializedAOTMethodStore() const { return _deserializedAOTMethodStore; }
void setDeserializedAOTMethodStore(bool deserializedStore) { _deserializedAOTMethodStore = deserializedStore; }
bool isDeserializedAOTMethodUsingSVM() const { return _deserializedAOTMethodUsingSVM; }
void setDeserializedAOTMethodUsingSVM(bool usingSVM) { _deserializedAOTMethodUsingSVM = usingSVM; }
bool isAOTCacheStore() const { return _aotCacheStore; }
void setAOTCacheStore(bool store) { _aotCacheStore = store; }
bool ignoringLocalSCC() const { return _ignoringLocalSCC; }
void setIgnoringLocalSCC(bool ignoringLocalSCC) { _ignoringLocalSCC = ignoringLocalSCC; }
Vector<std::pair<const AOTCacheRecord *, uintptr_t>> &getSerializationRecords() { return _serializationRecords; }
// Adds an AOT cache record and the corresponding offset into AOT relocation data to the list that
// will be used when the result of this out-of-process compilation is serialized and stored in
// JITServer AOT cache. If record is NULL, fails serialization by setting _aotCacheStore to false if we are not
// ignoring the client's SCC, and otherwise fails the compilation entirely.
void addSerializationRecord(const AOTCacheRecord *record, uintptr_t reloDataOffset);
UnorderedSet<const AOTCacheThunkRecord *> &getThunkRecords() { return _thunkRecords; }
// Adds an AOT cache thunk record to the set of thunks that this compilation depends on, and also adds it
// to the list of records that this compilation depends on if the thunk record is new. If the record is NULL,
// fails serialization by setting _aotCacheStore to false if we are not ignoring the client's SCC, and otherwise
// fails the compilation entirely.
void addThunkRecord(const AOTCacheThunkRecord *record);
#else
bool isDeserializedAOTMethod() const { return false; }
bool ignoringLocalSCC() const { return false; }
#endif /* defined(J9VM_OPT_JITSERVER) */
TR::SymbolValidationManager *getSymbolValidationManager() { return _symbolValidationManager; }
/**
* \brief Determine whether it's currently expected to be possible to add
* OSR assumptions and corresponding fear points somewhere in the method.
*
* The result is independent of any particular program point. Even if the
* result is true, there may still be restrictions on the placement of fear
* points. However, if the result is false, then no fear points can be
* placed and no new assumptions can be made.
*
* \param comp the compilation object
* \return true if it's possible in general to add assumptions, false otherwise
*/
bool canAddOSRAssumptions();
/**
* \brief Determine whether fear points may be placed (almost) anywhere.
*
* If the result is true, then prior to fear point analysis, the compiler
* must ensure that OSR induction remains possible at every OSR yield point.
* As such, fear points may be placed almost anywhere in the method.
*
* \warning This does not allow fear points to be placed on the taken side
* of a guard (except after an OSR yield point, e.g. a cold call). That
* restriction is due to a limitation of the fear point analysis.
*
* \return true if fear points may be placed (almost) anywhere
*/
bool isFearPointPlacementUnrestricted() { return false; }
// Flag to record whether fear-point analysis has already been done.
void setFearPointAnalysisDone() { _wasFearPointAnalysisDone = true; }
bool wasFearPointAnalysisDone() { return _wasFearPointAnalysisDone; }
// Flag to record if any optimization has prohibited OSR over a range of trees
void setOSRProhibitedOverRangeOfTrees() { _osrProhibitedOverRangeOfTrees = true; }
bool isOSRProhibitedOverRangeOfTrees() { return _osrProhibitedOverRangeOfTrees; }
#if defined(PERSISTENT_COLLECTIONS_UNSUPPORTED)
void addAOTMethodDependency(TR_OpaqueClassBlock *ramClass) {}
void addAOTMethodDependency(TR_OpaqueClassBlock *ramClass, uintptr_t chainOffset) {}
#else
void addAOTMethodDependency(TR_OpaqueClassBlock *ramClass);
void addAOTMethodDependency(TR_OpaqueClassBlock *ramClass, uintptr_t chainOffset);
uintptr_t populateAOTMethodDependencies(TR_OpaqueClassBlock *definingClass, Vector<uintptr_t> &chainBuffer);
#endif
private:
enum CachedClassPointerId
{
OBJECT_CLASS_POINTER,
RUNNABLE_CLASS_POINTER,
STRING_CLASS_POINTER,
SYSTEM_CLASS_POINTER,
REFERENCE_CLASS_POINTER,
JITHELPERS_CLASS_POINTER,
CACHED_CLASS_POINTER_COUNT,
};
TR_OpaqueClassBlock *getCachedClassPointer(CachedClassPointerId which);
#if !defined(PERSISTENT_COLLECTIONS_UNSUPPORTED)
void addAOTMethodDependency(uintptr_t offset, bool classIsInitialized);
#endif /* !defined(PERSISTENT_COLLECTIONS_UNSUPPORTED) */
J9VMThread *_j9VMThread;
bool _doneHWProfile;
TR_Array<TR_HWPInstructionInfo> _hwpInstructions;
TR_Array<TR_HWPBytecodePCToIAMap> _hwpBCMap;
bool _updateCompYieldStats;
uint64_t _hiresTimeForPreviousCallingContext;
TR_CallingContext _previousCallingContext;
uint64_t _maxYieldInterval;
TR_CallingContext _sourceContextForMaxYieldInterval;
TR_CallingContext _destinationContextForMaxYieldInterval;
static uint64_t _maxYieldIntervalS;
static TR_CallingContext _sourceContextForMaxYieldIntervalS;
static TR_CallingContext _destinationContextForMaxYieldIntervalS;
bool _needsClassLookahead;
int32_t _dltBcIndex;
int32_t * _dltSlotDescription;
void * _reservedDataCache;
uint32_t _totalNeededDataCacheSpace;
void * _aotMethodDataStart; // used at relocation time
void * _curMethodMetadata;
bool _getImplAndRefersToInlineable;
TR_ValueProfileInfoManager *_vpInfoManager;
TR_BranchProfileInfoManager *_bpInfoManager;
TR::list<TR_MethodBranchProfileInfo*> _methodBranchInfoList;
TR::list<TR_ExternalValueProfileInfo*> _externalVPInfoList;
TR::list<TR_AOTGuardSite*>* _aotGuardPatchSites;
TR::list<TR_VirtualGuardSite*> _sideEffectGuardPatchSites;
// cache VM pointers
TR_OpaqueClassBlock *_cachedClassPointers[CACHED_CLASS_POINTER_COUNT];
TR_OpaqueClassBlock *_aotClassClassPointer;
bool _aotClassClassPointerInitialized;
TR_Array<List<TR::RegisterMappedSymbol> *> _monitorAutos;
TR::list<TR::SymbolReference*> _monitorAutoSymRefsInCompiledMethod;
TR_Array<TR_OpaqueClassBlock*> _classForOSRRedefinition;
// Classes that have their static final fields folded and need assumptions
TR_Array<TR_OpaqueClassBlock*> _classForStaticFinalFieldModification;
// cache profile information
TR_AccessedProfileInfo *_profileInfo;
bool _skippedJProfilingBlock;
TR_RelocationRuntime *_reloRuntime;
#if defined(J9VM_OPT_JITSERVER)
// This list contains assumptions created during the compilation at the JITServer
// It needs to be sent to the client at the end of compilation
TR::list<SerializedRuntimeAssumption *> _serializedRuntimeAssumptions;
// The following flag is set when this compilation is performed in a
// VM that does not have the runtime part (server side in JITServer)
static bool _outOfProcessCompilation;
// The following flag is set when a request to complete this compilation
// has been sent to a remote VM (client side in JITServer)
bool _remoteCompilation;
// Client session data for the client that requested this out-of-process
// compilation (at the JITServer); unused (always NULL) at the client side
ClientSessionData *_clientData;
// Server stream used by this out-of-process compilation; always NULL at the client
JITServer::ServerStream *_stream;
TR_Memory *_perClientMemory;
TR_Memory _globalMemory;
// This list contains RAM method pointers of resolved methods
// that require method trampolines.
// It needs to be sent to the client at the end of compilation
// so that trampolines can be reserved there.
TR::list<TR_OpaqueMethodBlock *> _methodsRequiringTrampolines;
// True if this remote compilation resulted in deserializing an AOT method
// received from the JITServer AOT cache; always false at the server
bool _deserializedAOTMethod;
// True if this remote compilation resulted in deserializing an AOT method
// that was compiled as an AOT cache store; always false at the server
bool _deserializedAOTMethodStore;
// True if this deserialized AOT method received from the
// JITServer AOT cache uses SVM; always false at the server
bool _deserializedAOTMethodUsingSVM;
// True if the result of this out-of-process compilation will be
// stored in JITServer AOT cache; always false at the client
bool _aotCacheStore;
// True at the client if the compilation is to be stored in the AOT cache at the server and the
// client is ignoring the local SCC; always false at the server
bool _ignoringLocalSCC;
// List of AOT cache records and corresponding offsets into AOT relocation data that will
// be used to store the result of this compilation in AOT cache; always empty at the client
Vector<std::pair<const AOTCacheRecord *, uintptr_t>> _serializationRecords;
// Set of AOT cache thunk records that this compilation depends on; always empty at the client
UnorderedSet<const AOTCacheThunkRecord *> _thunkRecords;
#endif /* defined(J9VM_OPT_JITSERVER) */
#if !defined(PERSISTENT_COLLECTIONS_UNSUPPORTED)
// A map recording the dependencies of an AOT method. The keys are the class
// chain offsets of classes this method depends on, and the values record
// whether the class needs to be initialized before method loading, or only
// loaded.
UnorderedMap<uintptr_t, bool> _aotMethodDependencies;
#endif /* defined(PERSISTENT_COLLECTIONS_UNSUPPORTED) */
TR::SymbolValidationManager *_symbolValidationManager;
bool _osrProhibitedOverRangeOfTrees;
bool _wasFearPointAnalysisDone;
};
}
#endif