| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
- #include "aot_reloc.h"
- #define R_ARM_CALL 28 /* PC relative 24 bit (BL, BLX). */
- #define R_ARM_JMP24 29 /* PC relative 24 bit (B/BL<cond>). */
- #define R_ARM_ABS32 2 /* Direct 32 bit */
- #define R_ARM_MOVW_ABS_NC 43
- #define R_ARM_MOVT_ABS 44
- /* clang-format off */
- void __adddf3(void);
- void __addsf3(void);
- void __aeabi_d2f(void);
- void __aeabi_d2iz(void);
- void __aeabi_d2lz(void);
- void __aeabi_d2uiz(void);
- void __aeabi_d2ulz(void);
- void __aeabi_dadd(void);
- void __aeabi_dcmpeq(void);
- void __aeabi_dcmpge(void);
- void __aeabi_dcmpgt(void);
- void __aeabi_dcmple(void);
- void __aeabi_dcmplt(void);
- void __aeabi_dcmpun(void);
- void __aeabi_ddiv(void);
- void __aeabi_dmul(void);
- void __aeabi_dsub(void);
- void __aeabi_f2d(void);
- void __aeabi_f2iz(void);
- void __aeabi_f2lz(void);
- void __aeabi_f2ulz(void);
- void __aeabi_fadd(void);
- void __aeabi_fcmpeq(void);
- void __aeabi_fcmpge(void);
- void __aeabi_fcmpgt(void);
- void __aeabi_fcmple(void);
- void __aeabi_fcmplt(void);
- void __aeabi_fcmpun(void);
- void __aeabi_fdiv(void);
- void __aeabi_fmul(void);
- void __aeabi_fsub(void);
- void __aeabi_i2d(void);
- void __aeabi_i2f(void);
- void __aeabi_idiv(void);
- void __aeabi_idivmod(void);
- void __aeabi_l2d(void);
- void __aeabi_l2f(void);
- void __aeabi_ldivmod(void);
- void __aeabi_memclr(void);
- void __aeabi_memcpy(void);
- void __aeabi_memmove(void);
- void __aeabi_memset(void);
- void __aeabi_ui2d(void);
- void __aeabi_ui2f(void);
- void __aeabi_uidiv(void);
- void __aeabi_uidivmod(void);
- void __aeabi_ul2d(void);
- void __aeabi_ul2f(void);
- void __aeabi_uldivmod(void);
- void __clzsi2(void);
- void __divdf3(void);
- void __divdi3(void);
- void __divsf3(void);
- void __divsi3(void);
- void __eqdf2(void);
- void __eqsf2(void);
- void __extendsfdf2(void);
- void __fixdfdi(void);
- void __fixdfsi(void);
- void __fixsfdi(void);
- void __fixsfsi(void);
- void __fixunsdfdi(void);
- void __fixunsdfsi(void);
- void __fixunssfdi(void);
- void __floatdidf(void);
- void __floatdisf(void);
- void __floatsidf(void);
- void __floatsisf(void);
- void __floatundidf(void);
- void __floatundisf(void);
- void __floatunsidf(void);
- void __floatunsisf(void);
- void __gedf2(void);
- void __gesf2(void);
- void __gtdf2(void);
- void __gtsf2(void);
- void __ledf2(void);
- void __lesf2(void);
- void __ltdf2(void);
- void __ltsf2(void);
- void __moddi3(void);
- void __modsi3(void);
- void __muldf3(void);
- void __mulsf3(void);
- void __nedf2(void);
- void __nesf2(void);
- void __subdf3(void);
- void __subsf3(void);
- void __truncdfsf2(void);
- void __udivdi3(void);
- void __udivmoddi4(void);
- void __udivsi3(void);
- void __umoddi3(void);
- void __umodsi3(void);
- void __unorddf2(void);
- void __unordsf2(void);
- /* clang-format on */
- static SymbolMap target_sym_map[] = {
- /* clang-format off */
- REG_COMMON_SYMBOLS
- /* compiler-rt symbols that come from compiler(e.g. gcc) */
- REG_SYM(__adddf3),
- REG_SYM(__addsf3),
- /* clang-format on */
- REG_SYM(__aeabi_d2f),
- REG_SYM(__aeabi_d2iz),
- REG_SYM(__aeabi_d2lz),
- REG_SYM(__aeabi_d2uiz),
- REG_SYM(__aeabi_d2ulz),
- REG_SYM(__aeabi_dadd),
- REG_SYM(__aeabi_dcmpeq),
- REG_SYM(__aeabi_dcmpge),
- REG_SYM(__aeabi_dcmpgt),
- REG_SYM(__aeabi_dcmple),
- REG_SYM(__aeabi_dcmplt),
- REG_SYM(__aeabi_dcmpun),
- REG_SYM(__aeabi_ddiv),
- REG_SYM(__aeabi_dmul),
- REG_SYM(__aeabi_dsub),
- REG_SYM(__aeabi_f2d),
- REG_SYM(__aeabi_f2iz),
- REG_SYM(__aeabi_f2lz),
- REG_SYM(__aeabi_f2ulz),
- REG_SYM(__aeabi_fadd),
- REG_SYM(__aeabi_fcmpeq),
- REG_SYM(__aeabi_fcmpge),
- REG_SYM(__aeabi_fcmpgt),
- REG_SYM(__aeabi_fcmple),
- REG_SYM(__aeabi_fcmplt),
- REG_SYM(__aeabi_fcmpun),
- REG_SYM(__aeabi_fdiv),
- REG_SYM(__aeabi_fmul),
- REG_SYM(__aeabi_fsub),
- REG_SYM(__aeabi_i2d),
- REG_SYM(__aeabi_i2f),
- REG_SYM(__aeabi_idiv),
- REG_SYM(__aeabi_idivmod),
- REG_SYM(__aeabi_l2d),
- REG_SYM(__aeabi_l2f),
- REG_SYM(__aeabi_ldivmod),
- REG_SYM(__aeabi_memclr),
- REG_SYM(__aeabi_memcpy),
- REG_SYM(__aeabi_memmove),
- REG_SYM(__aeabi_memset),
- REG_SYM(__aeabi_ui2d),
- REG_SYM(__aeabi_ui2f),
- REG_SYM(__aeabi_uidiv),
- REG_SYM(__aeabi_uidivmod),
- REG_SYM(__aeabi_ul2d),
- REG_SYM(__aeabi_ul2f),
- REG_SYM(__aeabi_uldivmod),
- REG_SYM(__clzsi2),
- REG_SYM(__divdf3),
- REG_SYM(__divdi3),
- REG_SYM(__divsf3),
- REG_SYM(__divsi3),
- REG_SYM(__eqdf2),
- REG_SYM(__eqsf2),
- REG_SYM(__extendsfdf2),
- REG_SYM(__fixdfdi),
- REG_SYM(__fixdfsi),
- REG_SYM(__fixsfdi),
- REG_SYM(__fixsfsi),
- REG_SYM(__fixunsdfdi),
- REG_SYM(__fixunsdfsi),
- REG_SYM(__fixunssfdi),
- REG_SYM(__floatdidf),
- REG_SYM(__floatdisf),
- REG_SYM(__floatsidf),
- REG_SYM(__floatsisf),
- REG_SYM(__floatundidf),
- REG_SYM(__floatundisf),
- REG_SYM(__floatunsidf),
- REG_SYM(__floatunsisf),
- REG_SYM(__gedf2),
- REG_SYM(__gesf2),
- REG_SYM(__gtdf2),
- REG_SYM(__gtsf2),
- REG_SYM(__ledf2),
- REG_SYM(__lesf2),
- REG_SYM(__ltdf2),
- REG_SYM(__ltsf2),
- REG_SYM(__moddi3),
- REG_SYM(__modsi3),
- REG_SYM(__muldf3),
- REG_SYM(__mulsf3),
- REG_SYM(__nedf2),
- REG_SYM(__nesf2),
- REG_SYM(__subdf3),
- REG_SYM(__subsf3),
- REG_SYM(__truncdfsf2),
- REG_SYM(__udivdi3),
- REG_SYM(__udivmoddi4),
- REG_SYM(__udivsi3),
- REG_SYM(__umoddi3),
- REG_SYM(__umodsi3),
- REG_SYM(__unorddf2),
- REG_SYM(__unordsf2),
- };
- static void
- set_error_buf(char *error_buf, uint32 error_buf_size, const char *string)
- {
- if (error_buf != NULL)
- snprintf(error_buf, error_buf_size, "%s", string);
- }
- SymbolMap *
- get_target_symbol_map(uint32 *sym_num)
- {
- *sym_num = sizeof(target_sym_map) / sizeof(SymbolMap);
- return target_sym_map;
- }
- #define BUILD_TARGET_ARM_DEFAULT "armv4"
- void
- get_current_target(char *target_buf, uint32 target_buf_size)
- {
- const char *s = BUILD_TARGET;
- size_t s_size = sizeof(BUILD_TARGET);
- char *d = target_buf;
- /* Set to "armv4" by default if sub version isn't specified */
- if (strcmp(s, "ARM") == 0) {
- s = BUILD_TARGET_ARM_DEFAULT;
- s_size = sizeof(BUILD_TARGET_ARM_DEFAULT);
- }
- if (target_buf_size < s_size) {
- s_size = target_buf_size;
- }
- while (--s_size) {
- if (*s >= 'A' && *s <= 'Z')
- *d++ = *s++ + 'a' - 'A';
- else
- *d++ = *s++;
- }
- /* Ensure the string is null byte ('\0') terminated */
- *d = '\0';
- }
- #undef BUILD_TARGET_ARM_DEFAULT
- uint32
- get_plt_item_size(void)
- {
- /* 8 bytes instructions and 4 bytes symbol address */
- return 12;
- }
- uint32
- get_plt_table_size()
- {
- return get_plt_item_size() * (sizeof(target_sym_map) / sizeof(SymbolMap));
- }
- void
- init_plt_table(uint8 *plt)
- {
- uint32 i, num = sizeof(target_sym_map) / sizeof(SymbolMap);
- for (i = 0; i < num; i++) {
- uint32 *p = (uint32 *)plt;
- /* ldr pc, [pc] */
- *p++ = 0xe59ff000;
- /* nop */
- *p++ = 0xe1a00000;
- /* symbol addr */
- *p++ = (uint32)(uintptr_t)target_sym_map[i].symbol_addr;
- plt += get_plt_item_size();
- }
- }
- static bool
- check_reloc_offset(uint32 target_section_size, uint64 reloc_offset,
- uint32 reloc_data_size, char *error_buf,
- uint32 error_buf_size)
- {
- if (!(reloc_offset < (uint64)target_section_size
- && reloc_offset + reloc_data_size <= (uint64)target_section_size)) {
- set_error_buf(error_buf, error_buf_size,
- "AOT module load failed: invalid relocation offset.");
- return false;
- }
- return true;
- }
- bool
- apply_relocation(AOTModule *module, uint8 *target_section_addr,
- uint32 target_section_size, uint64 reloc_offset,
- int64 reloc_addend, uint32 reloc_type, void *symbol_addr,
- int32 symbol_index, char *error_buf, uint32 error_buf_size)
- {
- switch (reloc_type) {
- case R_ARM_CALL:
- case R_ARM_JMP24:
- {
- intptr_t result;
- int32 RESULT_MASK = 0x03FFFFFE;
- int32 insn = *(int32 *)(target_section_addr + reloc_offset);
- /* Initial addend: sign_extend(insn[23:0] << 2) */
- int32 initial_addend =
- ((insn & 0xFFFFFF) << 2) | ((insn & 0x800000) ? 0xFC000000 : 0);
- CHECK_RELOC_OFFSET(sizeof(int32));
- if (symbol_index < 0) {
- /* Symbol address itself is an AOT function.
- * Apply relocation with the symbol directly.
- * Suppose the symbol address is in +-32MB relative
- * to the relocation address.
- */
- /* operation: ((S + A) | T) - P where S is symbol address and T
- * is 0 */
- result =
- (intptr_t)((uintptr_t)symbol_addr + (intptr_t)reloc_addend
- - (uintptr_t)(target_section_addr
- + reloc_offset));
- }
- else {
- if (reloc_addend > 0) {
- set_error_buf(
- error_buf, error_buf_size,
- "AOT module load failed: relocate to plt table "
- "with reloc addend larger than 0 is unsupported.");
- return false;
- }
- /* Symbol address is not an AOT function,
- * but a function of runtime or native. Its address is
- * beyond of the +-32MB space. Apply relocation with
- * the PLT which branch to the target symbol address.
- */
- /* operation: ((S + A) | T) - P where S is PLT address and T is
- * 0 */
- uint8 *plt = (uint8 *)module->code + module->code_size
- - get_plt_table_size()
- + get_plt_item_size() * symbol_index;
- result = (intptr_t)((uintptr_t)plt + (intptr_t)reloc_addend
- - (uintptr_t)(target_section_addr
- + reloc_offset));
- }
- result += initial_addend;
- /* Check overflow: +-32MB */
- if (result > (32 * BH_MB) || result < (-32 * BH_MB)) {
- set_error_buf(error_buf, error_buf_size,
- "AOT module load failed: "
- "target address out of range.");
- return false;
- }
- *(int32 *)(target_section_addr + reloc_offset) =
- (int32)((insn & 0xff000000)
- | (((int32)result & RESULT_MASK) >> 2));
- break;
- }
- case R_ARM_ABS32:
- {
- intptr_t initial_addend;
- /* (S + A) | T where T is 0 */
- CHECK_RELOC_OFFSET(sizeof(void *));
- initial_addend =
- *(intptr_t *)(target_section_addr + (uint32)reloc_offset);
- *(uintptr_t *)(target_section_addr + reloc_offset) =
- (uintptr_t)symbol_addr + initial_addend
- + (intptr_t)reloc_addend;
- break;
- }
- case R_ARM_MOVW_ABS_NC:
- case R_ARM_MOVT_ABS:
- {
- uintptr_t *loc;
- uintptr_t addr;
- CHECK_RELOC_OFFSET(sizeof(void *));
- loc = (uintptr_t *)(target_section_addr + (uint32)reloc_offset);
- addr = (uintptr_t)symbol_addr + (intptr_t)reloc_addend;
- if (reloc_type == R_ARM_MOVT_ABS) {
- addr >>= 16;
- }
- *loc = ((*loc) & 0xfff0f000) | ((addr << 4) & 0x000f0000)
- | (addr & 0x00000fff);
- break;
- }
- default:
- if (error_buf != NULL)
- snprintf(error_buf, error_buf_size,
- "Load relocation section failed: "
- "invalid relocation type %d.",
- reloc_type);
- return false;
- }
- return true;
- }
|