Skip to content

Commit

Permalink
AArch64: Implement arrayTranslateTROTNoBreak
Browse files Browse the repository at this point in the history
This commit implements arraytranslateTROTNoBreak for AArch64.

Signed-off-by: KONNO Kazuhiro <[email protected]>
  • Loading branch information
knn-k committed Dec 10, 2024
1 parent b166107 commit f1c272d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions runtime/compiler/runtime/Runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,7 @@ JIT_HELPER(_patchGCRHelper);
JIT_HELPER(_fieldWatchHelper);
JIT_HELPER(__arrayTranslateTRTO);
JIT_HELPER(__arrayTranslateTRTO255);
JIT_HELPER(__arrayTranslateTROTNoBreak);

#elif defined(TR_HOST_S390)
JIT_HELPER(__double2Long);
Expand Down Expand Up @@ -1584,6 +1585,7 @@ void initializeCodeRuntimeHelperTable(J9JITConfig *jitConfig, char isSMP)
#endif
SET(TR_ARM64arrayTranslateTRTO, (void *) __arrayTranslateTRTO, TR_Helper);
SET(TR_ARM64arrayTranslateTRTO255, (void *) __arrayTranslateTRTO255, TR_Helper);
SET(TR_ARM64arrayTranslateTROTNoBreak, (void *) __arrayTranslateTROTNoBreak, TR_Helper);

#elif defined(TR_HOST_S390)
SET(TR_S390double2Long, (void *) 0, TR_Helper);
Expand Down

0 comments on commit f1c272d

Please sign in to comment.