We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7ddf02 + bee4454 commit c73c323Copy full SHA for c73c323
runtime/compiler/runtime/J9CodeCache.cpp
@@ -749,8 +749,10 @@ J9::CodeCache::resetTrampolines()
749
}
750
751
//reset the trampoline marks back to their starting positions
752
- _trampolineAllocationMark = _trampolineBase;
753
- _trampolineReservationMark = _trampolineBase;
+ // Note that permanent trampolines are allocated from _tempTrampolineBase downwards
+ // see initialize in OMRCodeCache.cpp
754
+ _trampolineAllocationMark = _tempTrampolineBase;
755
+ _trampolineReservationMark = _tempTrampolineBase;
756
757
OMR::CodeCacheTempTrampolineSyncBlock *syncBlock;
758
if (!_tempTrampolinesMax)
0 commit comments