Skip to content

Commit fd8ebe5

Browse files
committed
Add API to get the AOT method header entry
Add an API to prevent doing manual pointer manipulation to get the AOT method header entry from the SCC. Signed-off-by: Irwin D'Souza <dsouzai.gh@gmail.com>
1 parent 1eaefc0 commit fd8ebe5

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

runtime/compiler/compile/J9Compilation.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,13 @@ J9::Compilation::printCompYieldStatsMatrix()
358358
}
359359
}
360360

361+
TR_AOTMethodHeader *
362+
J9::Compilation::getAotMethodHeaderEntry()
363+
{
364+
J9JITDataCacheHeader *aotMethodHeader = (J9JITDataCacheHeader *)self()->getAotMethodDataStart();
365+
TR_AOTMethodHeader *aotMethodHeaderEntry = (TR_AOTMethodHeader *)(aotMethodHeader + 1);
366+
return aotMethodHeaderEntry;
367+
}
361368

362369
TR::Node *
363370
J9::Compilation::findNullChkInfo(TR::Node *node)

runtime/compiler/compile/J9Compilation.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ class OMR_EXTENSIBLE Compilation : public OMR::CompilationConnector
147147
void * getAotMethodDataStart() const { return _aotMethodDataStart; }
148148
void setAotMethodDataStart(void *p) { _aotMethodDataStart = p; }
149149

150+
TR_AOTMethodHeader * getAotMethodHeaderEntry();
151+
150152
TR::Node *findNullChkInfo(TR::Node *node);
151153

152154
bool isAlignStackMaps() { return J9::Compilation::target().cpu.isARM(); }

0 commit comments

Comments
 (0)