Skip to content

Commit aa224e1

Browse files
committed
Add AbstractMemorySegmentImpl.reinterpret as a recognized method
Signed-off-by: Nazim Bhuiyan <nubhuiyan@ibm.com>
1 parent 641ce9b commit aa224e1

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

runtime/compiler/codegen/J9RecognizedMethodsEnum.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1169,6 +1169,7 @@
11691169
java_lang_invoke_VarHandleByteArrayAsX_ByteBufferHandle_method,
11701170

11711171
jdk_internal_foreign_layout_ValueLayouts_AbstractValueLayout_accessHandle,
1172+
jdk_internal_foreign_AbstractMemorySegmentImpl_reinterpret,
11721173
java_lang_foreign_MemorySegment_method,
11731174

11741175
// Clone and Deep Copy

runtime/compiler/env/j9method.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -4030,6 +4030,12 @@ void TR_ResolvedJ9Method::construct()
40304030
{ TR::unknownMethod},
40314031
};
40324032

4033+
static X AbstractMemorySegmentImplMethods [] =
4034+
{
4035+
{ TR::jdk_internal_foreign_AbstractMemorySegmentImpl_reinterpret, 11, "reinterpret", (int16_t)-1, "*"},
4036+
{ TR::unknownMethod},
4037+
};
4038+
40334039
static X ArraysSupportMethods [] =
40344040
{
40354041
{x(TR::jdk_internal_util_ArraysSupport_vectorizedMismatch, "vectorizedMismatch", "(Ljava/lang/Object;JLjava/lang/Object;JII)I")},
@@ -4343,6 +4349,7 @@ void TR_ResolvedJ9Method::construct()
43434349
{ "java/util/concurrent/atomic/AtomicIntegerArray", JavaUtilConcurrentAtomicIntegerArrayMethods },
43444350
{ "java/util/concurrent/ConcurrentHashMap$TreeBin", JavaUtilConcurrentConcurrentHashMapTreeBinMethods },
43454351
{ "java/io/ObjectInputStream$BlockDataInputStream", ObjectInputStream_BlockDataInputStreamMethods },
4352+
{ "jdk/internal/foreign/AbstractMemorySegmentImpl", AbstractMemorySegmentImplMethods },
43464353
{ 0 }
43474354
};
43484355

0 commit comments

Comments
 (0)