Skip to content

Commit 9576e91

Browse files
committed
Implement the TR_CatchBlockCounter relocation
The TR_CatchBlockCounter relocation introduced in eclipse-omr/omr#6956 is now fully implemented in the relocation runtime. The symbol created in the EDO optimization that is associated to the catch block counter is also identified as such, and so relo records will be created automatically for that symbol. Certain manual loads of the catch block counter emitted during code gen are also properly relocated now. Signed-off-by: Christian Despres <despresc@ibm.com>
1 parent 283b706 commit 9576e91

13 files changed

+91
-8
lines changed

doc/compiler/aot/RelocationRecords.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ exact type of the API class for each relocation kind can be found in
134134
|`TR_SymbolFromManager`|Relocates a pointer materialized by using its SVM ID.|
135135
|`TR_DiscontiguousSymbolFromManager`|Relocates a discontiguous pointer materialized by using its SVM ID.|
136136
|`TR_MethodCallAddress`|Relocates the address of a call target. Only used in JitServer (in AOT, all other methods are assumed to be interpreted).|
137-
137+
|`TR_CatchBlockCounter`|Relocates the address of the catch block counter in the `TR_PersistentMethodInfo` of the method being compiled.|

runtime/compiler/aarch64/codegen/J9TreeEvaluator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void VMgenerateCatchBlockBBStartPrologue(TR::Node *node, TR::Instruction *fenceI
107107
TR::Register *biAddrReg = cg->allocateRegister();
108108
TR::Register *recompCounterReg = cg->allocateRegister();
109109
intptr_t addr = (intptr_t)(comp->getRecompilationInfo()->getCounterAddress());
110-
loadAddressConstant(cg, node, addr, biAddrReg);
110+
loadAddressConstant(cg, node, addr, biAddrReg, NULL, false, TR_BodyInfoAddressLoad);
111111
TR::MemoryReference *loadbiMR = TR::MemoryReference::createWithDisplacement(cg, biAddrReg, 0);
112112
TR::MemoryReference *storebiMR = TR::MemoryReference::createWithDisplacement(cg, biAddrReg, 0);
113113
generateTrg1MemInstruction(cg, TR::InstOpCode::ldrimmx, node, recompCounterReg, loadbiMR);

runtime/compiler/codegen/J9AheadOfTimeCompile.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ J9::AheadOfTimeCompile::initializeCommonAOTRelocationHeader(TR::IteratedExternal
335335
case TR_ArrayCopyToc:
336336
case TR_BodyInfoAddressLoad:
337337
case TR_RecompQueuedFlag:
338+
case TR_CatchBlockCounter:
338339
{
339340
// Nothing to do
340341
}
@@ -1416,6 +1417,7 @@ J9::AheadOfTimeCompile::dumpRelocationHeaderData(uint8_t *cursor, bool isVerbose
14161417
case TR_ArrayCopyToc:
14171418
case TR_BodyInfoAddressLoad:
14181419
case TR_RecompQueuedFlag:
1420+
case TR_CatchBlockCounter:
14191421
{
14201422
self()->traceRelocationOffsets(startOfOffsets, offsetSize, endOfCurrentRecord, orderedPair);
14211423
}

runtime/compiler/optimizer/CatchBlockProfiler.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "compile/SymbolReferenceTable.hpp"
2424
#include "control/Recompilation.hpp"
2525
#include "il/Block.hpp"
26+
#include "il/SymbolReference.hpp"
2627
#include "il/TreeTop.hpp"
2728
#include "il/TreeTop_inlines.hpp"
2829
#include "optimizer/CatchBlockProfiler.hpp"
@@ -65,6 +66,8 @@ int32_t TR::CatchBlockProfiler::perform()
6566
{
6667
uint32_t *catchBlockCounterAddress = recompilation->getMethodInfo()->getCatchBlockCounterAddress();
6768
_catchBlockCounterSymRef = comp()->getSymRefTab()->createKnownStaticDataSymbolRef(catchBlockCounterAddress, TR::Int32);
69+
_catchBlockCounterSymRef->getSymbol()->setIsCatchBlockCounter();
70+
_catchBlockCounterSymRef->getSymbol()->setNotDataAddress();
6871
}
6972
TR::TreeTop *profilingTree = TR::TreeTop::createIncTree(comp(), b->getEntry()->getNode(), _catchBlockCounterSymRef, 1, b->getEntry());
7073
profilingTree->getNode()->setIsProfilingCode();

runtime/compiler/p/codegen/J9AheadOfTimeCompile.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ J9::Power::AheadOfTimeCompile::initializePlatformSpecificAOTRelocationHeader(TR:
185185
case TR_ArrayCopyHelper:
186186
case TR_ArrayCopyToc:
187187
case TR_BodyInfoAddressLoad:
188+
case TR_CatchBlockCounter:
188189
case TR_RecompQueuedFlag:
189190
{
190191
TR_RelocationRecord *rRecord = reinterpret_cast<TR_RelocationRecord *>(reloRecord);

runtime/compiler/p/codegen/J9TreeEvaluator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11960,7 +11960,7 @@ void VMgenerateCatchBlockBBStartPrologue(TR::Node *node, TR::Instruction *fenceI
1196011960
TR::Register *biAddrReg = cg->allocateRegister();
1196111961
TR::Register *recompCounterReg = cg->allocateRegister();
1196211962
intptr_t addr = (intptr_t) (comp->getRecompilationInfo()->getCounterAddress());
11963-
TR::Instruction *cursor = loadAddressConstant(cg, comp->compileRelocatableCode(), node, addr, biAddrReg);
11963+
TR::Instruction *cursor = loadAddressConstant(cg, cg->needRelocationsForBodyInfoData(), node, addr, biAddrReg, NULL, false, TR_BodyInfoAddressLoad);
1196411964
TR::MemoryReference *loadbiMR = TR::MemoryReference::createWithDisplacement(cg, biAddrReg, 0, TR::Compiler->om.sizeofReferenceAddress());
1196511965
TR::MemoryReference *storebiMR = TR::MemoryReference::createWithDisplacement(cg, biAddrReg, 0, TR::Compiler->om.sizeofReferenceAddress());
1196611966
cursor = generateTrg1MemInstruction(cg,TR::InstOpCode::Op_load, node, recompCounterReg, loadbiMR);

runtime/compiler/p/runtime/PPCRelocationTarget.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ TR_PPC32RelocationTarget::isOrderedPairRelocation(TR_RelocationRecord *reloRecor
308308
case TR_GlobalValue:
309309
case TR_RamMethodSequence:
310310
case TR_BodyInfoAddressLoad:
311+
case TR_CatchBlockCounter:
311312
case TR_DataAddress:
312313
case TR_DebugCounter:
313314
return true;

runtime/compiler/runtime/RelocationRecord.cpp

+52
Original file line numberDiff line numberDiff line change
@@ -860,6 +860,9 @@ TR_RelocationRecord::create(TR_RelocationRecord *storage, TR_RelocationRuntime *
860860
case TR_ValidateIsClassVisible:
861861
reloRecord = new (storage) TR_RelocationRecordValidateIsClassVisible(reloRuntime, record);
862862
break;
863+
case TR_CatchBlockCounter:
864+
reloRecord = new (storage) TR_RelocationRecordCatchBlockCounter(reloRuntime, record);
865+
break;
863866
default:
864867
// TODO: error condition
865868
printf("Unexpected relo record: %d\n", reloType);fflush(stdout);
@@ -6435,6 +6438,54 @@ TR_RelocationRecordStaticDefaultValueInstance::applyRelocation(TR_RelocationRunt
64356438
return TR_RelocationErrorCode::relocationOK;
64366439
}
64376440

6441+
// TR_CatchBlockCounter
6442+
//
6443+
char *
6444+
TR_RelocationRecordCatchBlockCounter::name()
6445+
{
6446+
return "TR_CatchBlockCounter";
6447+
}
6448+
6449+
void
6450+
TR_RelocationRecordCatchBlockCounter::preparePrivateData(TR_RelocationRuntime *reloRuntime, TR_RelocationTarget *reloTarget)
6451+
{
6452+
TR_RelocationRecordWithOffsetPrivateData *reloPrivateData = &(privateData()->offset);
6453+
reloPrivateData->_addressToPatch = NULL;
6454+
6455+
TR_PersistentJittedBodyInfo *bodyInfo = reinterpret_cast<TR_PersistentJittedBodyInfo *>(reloRuntime->exceptionTable()->bodyInfo);
6456+
if (bodyInfo)
6457+
{
6458+
TR_PersistentMethodInfo *methodInfo = bodyInfo->getMethodInfo();
6459+
if (methodInfo)
6460+
reloPrivateData->_addressToPatch = (uint8_t *)methodInfo->getCatchBlockCounterAddress();
6461+
}
6462+
RELO_LOG(reloRuntime->reloLogger(), 6, "\tpreparePrivateData: addressToPatch: %p \n", reloPrivateData->_addressToPatch);
6463+
}
6464+
6465+
TR_RelocationErrorCode
6466+
TR_RelocationRecordCatchBlockCounter::applyRelocation(TR_RelocationRuntime *reloRuntime, TR_RelocationTarget *reloTarget, uint8_t *reloLocation)
6467+
{
6468+
TR_RelocationRecordWithOffsetPrivateData *reloPrivateData = &(privateData()->offset);
6469+
if (!reloPrivateData->_addressToPatch)
6470+
{
6471+
return TR_RelocationErrorCode::catchBlockCounterRelocationFailure;
6472+
}
6473+
reloTarget->storeAddressSequence(reloPrivateData->_addressToPatch, reloLocation, reloFlags(reloTarget));
6474+
return TR_RelocationErrorCode::relocationOK;
6475+
}
6476+
6477+
TR_RelocationErrorCode
6478+
TR_RelocationRecordCatchBlockCounter::applyRelocation(TR_RelocationRuntime *reloRuntime, TR_RelocationTarget *reloTarget, uint8_t *reloLocationHigh, uint8_t *reloLocationLow)
6479+
{
6480+
TR_RelocationRecordWithOffsetPrivateData *reloPrivateData = &(privateData()->offset);
6481+
if (!reloPrivateData->_addressToPatch)
6482+
{
6483+
return TR_RelocationErrorCode::catchBlockCounterRelocationFailure;
6484+
}
6485+
reloTarget->storeAddress(reloPrivateData->_addressToPatch, reloLocationHigh, reloLocationLow, reloFlags(reloTarget));
6486+
return TR_RelocationErrorCode::relocationOK;
6487+
}
6488+
64386489
// The _relocationRecordHeaderSizeTable table should be the last thing in this file
64396490
uint32_t TR_RelocationRecord::_relocationRecordHeaderSizeTable[TR_NumExternalRelocationKinds] =
64406491
{
@@ -6551,5 +6602,6 @@ uint32_t TR_RelocationRecord::_relocationRecordHeaderSizeTable[TR_NumExternalRel
65516602
sizeof(TR_RelocationRecordValidateJ2IThunkFromMethodBinaryTemplate), // TR_ValidateJ2IThunkFromMethod = 110
65526603
sizeof(TR_RelocationRecordConstantPoolWithIndexBinaryTemplate), // TR_StaticDefaultValueInstance = 111
65536604
sizeof(TR_RelocationRecordValidateIsClassVisibleBinaryTemplate), // TR_ValidateIsClassVisible = 112
6605+
sizeof(TR_RelocationRecordBinaryTemplate), // TR_CatchBlockCounter = 113
65546606
};
65556607
// The _relocationRecordHeaderSizeTable table should be the last thing in this file

runtime/compiler/runtime/RelocationRecord.hpp

+13
Original file line numberDiff line numberDiff line change
@@ -1951,5 +1951,18 @@ class TR_RelocationRecordValidateIsClassVisible : public TR_RelocationRecord
19511951
bool isVisible(TR_RelocationTarget *reloTarget);
19521952
};
19531953

1954+
class TR_RelocationRecordCatchBlockCounter : public TR_RelocationRecord
1955+
{
1956+
public:
1957+
TR_RelocationRecordCatchBlockCounter() {}
1958+
TR_RelocationRecordCatchBlockCounter(TR_RelocationRuntime *reloRuntime, TR_RelocationRecordBinaryTemplate *record) : TR_RelocationRecord(reloRuntime, record) {}
1959+
1960+
virtual char *name();
1961+
1962+
virtual void preparePrivateData(TR_RelocationRuntime *reloRuntime, TR_RelocationTarget *reloTarget);
1963+
virtual TR_RelocationErrorCode applyRelocation(TR_RelocationRuntime *reloRuntime, TR_RelocationTarget *reloTarget, uint8_t *reloLocation);
1964+
virtual TR_RelocationErrorCode applyRelocation(TR_RelocationRuntime *reloRuntime, TR_RelocationTarget *reloTarget, uint8_t *reloLocationHigh, uint8_t *reloLocationLow);
1965+
};
1966+
19541967
#endif // RELOCATION_RECORD_INCL
19551968

runtime/compiler/runtime/RelocationRuntime.hpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,11 @@ struct TR_RelocationError
203203
debugCounterRelocationFailure = (56 << RELO_ERRORCODE_SHIFT) | TR_RelocationErrorCodeType::RELOCATION,
204204
directJNICallRelocationFailure = (57 << RELO_ERRORCODE_SHIFT) | TR_RelocationErrorCodeType::RELOCATION,
205205
ramMethodConstRelocationFailure = (58 << RELO_ERRORCODE_SHIFT) | TR_RelocationErrorCodeType::RELOCATION,
206+
catchBlockCounterRelocationFailure = (59 << RELO_ERRORCODE_SHIFT) | TR_RelocationErrorCodeType::RELOCATION,
206207

207-
staticDefaultValueInstanceRelocationFailure = (59 << RELO_ERRORCODE_SHIFT) | TR_RelocationErrorCodeType::RELOCATION,
208+
staticDefaultValueInstanceRelocationFailure = (60 << RELO_ERRORCODE_SHIFT) | TR_RelocationErrorCodeType::RELOCATION,
208209

209-
maxRelocationError = (60 << RELO_ERRORCODE_SHIFT) | TR_RelocationErrorCodeType::NO_RELO_ERROR
210+
maxRelocationError = (61 << RELO_ERRORCODE_SHIFT) | TR_RelocationErrorCodeType::NO_RELO_ERROR
210211
};
211212

212213
static uint32_t decode(TR_RelocationErrorCode errorCode) { return static_cast<uint32_t>(errorCode >> RELO_ERRORCODE_SHIFT); }

runtime/compiler/runtime/Runtime.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -2142,6 +2142,7 @@ bool isOrderedPair(U_8 recordType)
21422142
case TR_GlobalValue:
21432143
case TR_RamMethodSequence:
21442144
case TR_BodyInfoAddressLoad:
2145+
case TR_CatchBlockCounter:
21452146
case TR_DataAddress:
21462147
case TR_DebugCounter:
21472148
#endif

runtime/compiler/x/codegen/J9TreeEvaluator.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -11337,14 +11337,15 @@ VMgenerateCatchBlockBBStartPrologue(
1133711337
TR::Block *block = node->getBlock();
1133811338
if (fej9->shouldPerformEDO(block, comp))
1133911339
{
11340+
TR_ASSERT_FATAL(cg->comp()->getRecompilationInfo(), "Recompilation info should be available");
11341+
1134011342
TR::LabelSymbol *snippetLabel = generateLabelSymbol(cg);
1134111343
TR::LabelSymbol *restartLabel = generateLabelSymbol(cg);
1134211344

11343-
generateMemInstruction(TR::InstOpCode::DEC4Mem, node, generateX86MemoryReference((intptr_t)comp->getRecompilationInfo()->getCounterAddress(), cg), cg);
11345+
generateMemInstruction(TR::InstOpCode::DEC4Mem, node, generateX86MemoryReference(comp->getRecompilationInfo()->getCounterSymRef(), cg), cg);
1134411346
generateLabelInstruction(TR::InstOpCode::JE4, node, snippetLabel, cg);
1134511347
generateLabelInstruction(TR::InstOpCode::label, node, restartLabel, cg);
1134611348
cg->addSnippet(new (cg->trHeapMemory()) TR::X86ForceRecompilationSnippet(cg, node, restartLabel, snippetLabel));
11347-
TR_ASSERT_FATAL(cg->comp()->getRecompilationInfo(), "Recompilation info should be available");
1134811349
cg->comp()->getRecompilationInfo()->getJittedBodyInfo()->setHasEdoSnippet();
1134911350
}
1135011351

runtime/compiler/z/codegen/J9TreeEvaluator.cpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -13231,7 +13231,15 @@ VMgenerateCatchBlockBBStartPrologue(
1323113231
TR::Register * biAddrReg = cg->allocateRegister();
1323213232

1323313233
// Load address of counter into biAddrReg
13234-
genLoadAddressConstant(cg, node, (uintptr_t) comp->getRecompilationInfo()->getCounterAddress(), biAddrReg);
13234+
if (cg->needRelocationsForBodyInfoData())
13235+
{
13236+
generateRegLitRefInstruction(cg, TR::InstOpCode::getLoadOpCode(), node, biAddrReg,
13237+
(uintptr_t)comp->getRecompilationInfo()->getCounterAddress(), TR_BodyInfoAddress);
13238+
}
13239+
else
13240+
{
13241+
genLoadAddressConstant(cg, node, (uintptr_t) comp->getRecompilationInfo()->getCounterAddress(), biAddrReg);
13242+
}
1323513243

1323613244
// Counter is 32-bit, so only use 32-bit opcodes
1323713245
TR::MemoryReference * recompMR = generateS390MemoryReference(biAddrReg, 0, cg);

0 commit comments

Comments
 (0)