@@ -860,6 +860,9 @@ TR_RelocationRecord::create(TR_RelocationRecord *storage, TR_RelocationRuntime *
860
860
case TR_ValidateIsClassVisible:
861
861
reloRecord = new (storage) TR_RelocationRecordValidateIsClassVisible (reloRuntime, record);
862
862
break ;
863
+ case TR_CatchBlockCounter:
864
+ reloRecord = new (storage) TR_RelocationRecordCatchBlockCounter (reloRuntime, record);
865
+ break ;
863
866
default :
864
867
// TODO: error condition
865
868
printf (" Unexpected relo record: %d\n " , reloType);fflush (stdout);
@@ -6435,6 +6438,54 @@ TR_RelocationRecordStaticDefaultValueInstance::applyRelocation(TR_RelocationRunt
6435
6438
return TR_RelocationErrorCode::relocationOK;
6436
6439
}
6437
6440
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 , " \t preparePrivateData: 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
+
6438
6489
// The _relocationRecordHeaderSizeTable table should be the last thing in this file
6439
6490
uint32_t TR_RelocationRecord::_relocationRecordHeaderSizeTable[TR_NumExternalRelocationKinds] =
6440
6491
{
@@ -6551,5 +6602,6 @@ uint32_t TR_RelocationRecord::_relocationRecordHeaderSizeTable[TR_NumExternalRel
6551
6602
sizeof (TR_RelocationRecordValidateJ2IThunkFromMethodBinaryTemplate), // TR_ValidateJ2IThunkFromMethod = 110
6552
6603
sizeof (TR_RelocationRecordConstantPoolWithIndexBinaryTemplate), // TR_StaticDefaultValueInstance = 111
6553
6604
sizeof (TR_RelocationRecordValidateIsClassVisibleBinaryTemplate), // TR_ValidateIsClassVisible = 112
6605
+ sizeof (TR_RelocationRecordBinaryTemplate), // TR_CatchBlockCounter = 113
6554
6606
};
6555
6607
// The _relocationRecordHeaderSizeTable table should be the last thing in this file
0 commit comments