diff --git a/compiler/ras/Debug.cpp b/compiler/ras/Debug.cpp index 1bda7e7070c..831c6a20c6d 100644 --- a/compiler/ras/Debug.cpp +++ b/compiler/ras/Debug.cpp @@ -3658,6 +3658,8 @@ TR_Debug::getRuntimeHelperName(int32_t index) case TR_jitProfileWarmCompilePICAddress: return "jitProfileAddress for mainline code PIC's"; case TR_jProfile32BitValue: return "jProfile32BitValue"; case TR_jProfile64BitValue: return "jProfile64BitValue"; + case TR_jProfile32BitValueLowOpt: return "jProfile32BitValueLowOpt"; + case TR_jProfile64BitValueLowOpt: return "jProfile64BitValueLowOpt"; case TR_prepareForOSR: return "prepareForOSR"; case TR_jitRetranslateCaller: return "jitRetranslateCaller"; diff --git a/compiler/runtime/Helpers.inc b/compiler/runtime/Helpers.inc index fae1b17c348..cdd98bd6a6b 100644 --- a/compiler/runtime/Helpers.inc +++ b/compiler/runtime/Helpers.inc @@ -61,7 +61,9 @@ SETVAL(TR_jitProfileBigDecimalValue,TR_jitProfileLongValue+1) SETVAL(TR_jitProfileParseBuffer,TR_jitProfileBigDecimalValue+1) SETVAL(TR_jProfile32BitValue,TR_jitProfileParseBuffer+1) SETVAL(TR_jProfile64BitValue,TR_jProfile32BitValue+1) -SETVAL(TR_jitAddPicToPatchOnClassUnload,TR_jProfile64BitValue+1) +SETVAL(TR_jProfile32BitValueLowOpt, TR_jProfile64BitValue+1) +SETVAL(TR_jProfile64BitValueLowOpt, TR_jProfile32BitValueLowOpt+1) +SETVAL(TR_jitAddPicToPatchOnClassUnload,TR_jProfile64BitValueLowOpt+1) SETVAL(TR_volatileReadLong,TR_jitAddPicToPatchOnClassUnload+1) SETVAL(TR_volatileWriteLong,TR_volatileReadLong+1) SETVAL(TR_volatileReadDouble,TR_volatileWriteLong+1)