Skip to content

Commit 191e4a8

Browse files
authored
Add ARM aeabi memcpy/memmove/memset symbols for AOT bulk memory ops (#1777)
1 parent fc8f70c commit 191e4a8

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

core/iwasm/aot/arch/aot_reloc_arm.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ void __aeabi_idivmod();
3737
void __aeabi_l2d();
3838
void __aeabi_l2f();
3939
void __aeabi_ldivmod();
40+
void __aeabi_memcpy();
41+
void __aeabi_memmove();
42+
void __aeabi_memset();
4043
void __aeabi_uidiv();
4144
void __aeabi_uidivmod();
4245
void __aeabi_ul2d();
@@ -120,6 +123,9 @@ static SymbolMap target_sym_map[] = {
120123
REG_SYM(__aeabi_l2d),
121124
REG_SYM(__aeabi_l2f),
122125
REG_SYM(__aeabi_ldivmod),
126+
REG_SYM(__aeabi_memcpy),
127+
REG_SYM(__aeabi_memmove),
128+
REG_SYM(__aeabi_memset),
123129
REG_SYM(__aeabi_uidiv),
124130
REG_SYM(__aeabi_uidivmod),
125131
REG_SYM(__aeabi_ul2d),

0 commit comments

Comments
 (0)