summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch
diff options
context:
space:
mode:
Diffstat (limited to 'fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch')
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_aarch64.c405
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_arc.c419
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_arm.c376
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_mips.c69
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_riscv.c440
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_thumb.c431
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_x86_32.c152
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_x86_64.c266
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_xtensa.c302
9 files changed, 2860 insertions, 0 deletions
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_aarch64.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_aarch64.c
new file mode 100644
index 000000000..4c46eaa00
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_aarch64.c
@@ -0,0 +1,405 @@
+/*
+ * Copyright (C) 2020 Intel Corporation. All rights reserved.
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+ */
+
+#include "aot_reloc.h"
+
+#define R_AARCH64_MOVW_UABS_G0 263
+#define R_AARCH64_MOVW_UABS_G0_NC 264
+#define R_AARCH64_MOVW_UABS_G1 265
+#define R_AARCH64_MOVW_UABS_G1_NC 266
+#define R_AARCH64_MOVW_UABS_G2 267
+#define R_AARCH64_MOVW_UABS_G2_NC 268
+#define R_AARCH64_MOVW_UABS_G3 269
+
+#define R_AARCH64_MOVW_SABS_G0 270
+#define R_AARCH64_MOVW_SABS_G1 271
+#define R_AARCH64_MOVW_SABS_G2 272
+
+#define R_AARCH64_ADR_PREL_LO19 273
+#define R_AARCH64_ADR_PREL_LO21 274
+#define R_AARCH64_ADR_PREL_PG_HI21 275
+#define R_AARCH64_ADR_PREL_PG_HI21_NC 276
+
+#define R_AARCH64_ADD_ABS_LO12_NC 277
+
+#define R_AARCH64_LDST8_ABS_LO12_NC 278
+#define R_AARCH64_LDST16_ABS_LO12_NC 284
+#define R_AARCH64_LDST32_ABS_LO12_NC 285
+#define R_AARCH64_LDST64_ABS_LO12_NC 286
+#define R_AARCH64_LDST128_ABS_LO12_NC 299
+
+#define R_AARCH64_JUMP26 282
+#define R_AARCH64_CALL26 283
+
+/* clang-format off */
+static SymbolMap target_sym_map[] = {
+ REG_COMMON_SYMBOLS
+};
+/* clang-format on */
+
+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_AARCH64_DEFAULT "aarch64v8"
+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 "aarch64v8" by default if sub version isn't specified */
+ if (strcmp(s, "AARCH64") == 0) {
+ s = BUILD_TARGET_AARCH64_DEFAULT;
+ s_size = sizeof(BUILD_TARGET_AARCH64_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_AARCH64_DEFAULT
+
+static uint32
+get_plt_item_size()
+{
+ /* 6*4 bytes instructions and 8 bytes symbol address */
+ return 32;
+}
+
+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;
+ *p++ = 0xf81f0ffe; /* str x30, [sp, #-16]! */
+ *p++ = 0x100000be; /* adr x30, #20; symbol addr is PC + 5 instructions
+ below */
+ *p++ = 0xf94003de; /* ldr x30, [x30] */
+ *p++ = 0xd63f03c0; /* blr x30 */
+ *p++ = 0xf84107fe; /* ldr x30, [sp], #16 */
+ *p++ = 0xd61f03c0; /* br x30 */
+ /* symbol addr */
+ *(uint64 *)p = (uint64)(uintptr_t)target_sym_map[i].symbol_addr;
+ p += 2;
+ plt += get_plt_item_size();
+ }
+}
+
+uint32
+get_plt_table_size()
+{
+ return get_plt_item_size() * (sizeof(target_sym_map) / sizeof(SymbolMap));
+}
+
+#define SIGN_EXTEND_TO_INT64(val, bits, val_ext) \
+ do { \
+ int64 m = (int64)((uint64)1 << (bits - 1)); \
+ val_ext = ((int64)val ^ m) - m; \
+ } while (0)
+
+#define Page(expr) ((expr) & ~0xFFF)
+
+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_AARCH64_CALL26:
+ case R_AARCH64_JUMP26:
+ {
+ void *S, *P = (void *)(target_section_addr + reloc_offset);
+ int64 X, A, initial_addend;
+ int32 insn, imm26;
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+
+ insn = *(int32 *)P;
+ imm26 = insn & 0x3FFFFFF;
+ SIGN_EXTEND_TO_INT64(imm26 << 2, 28, initial_addend);
+ A = initial_addend;
+ A += (int64)reloc_addend;
+
+ if (symbol_index < 0) {
+ /* Symbol address itself is an AOT function.
+ * Apply relocation with the symbol directly.
+ * Suppose the symbol address is in +-128MB relative
+ * to the relocation address.
+ */
+ S = symbol_addr;
+ }
+ else {
+ uint8 *plt;
+ 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 +-128MB space. Apply relocation with
+ * the PLT which branch to the target symbol address.
+ */
+ S = plt = (uint8 *)module->code + module->code_size
+ - get_plt_table_size()
+ + get_plt_item_size() * symbol_index;
+ }
+
+ /* S + A - P */
+ X = (int64)S + A - (int64)P;
+
+ /* Check overflow: +-128MB */
+ if (X > (128 * BH_MB) || X < (-128 * BH_MB)) {
+ set_error_buf(error_buf, error_buf_size,
+ "AOT module load failed: "
+ "target address out of range.");
+ return false;
+ }
+
+ /* write the imm26 back to instruction */
+ *(int32 *)P = (insn & 0xFC000000) | ((int32)((X >> 2) & 0x3FFFFFF));
+ break;
+ }
+
+ case R_AARCH64_MOVW_UABS_G0:
+ case R_AARCH64_MOVW_UABS_G0_NC:
+ case R_AARCH64_MOVW_UABS_G1:
+ case R_AARCH64_MOVW_UABS_G1_NC:
+ case R_AARCH64_MOVW_UABS_G2:
+ case R_AARCH64_MOVW_UABS_G2_NC:
+ case R_AARCH64_MOVW_UABS_G3:
+ {
+ void *S = symbol_addr,
+ *P = (void *)(target_section_addr + reloc_offset);
+ int64 X, A, initial_addend;
+ int32 insn, imm16;
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+
+ insn = *(int32 *)P;
+ imm16 = (insn >> 5) & 0xFFFF;
+
+ SIGN_EXTEND_TO_INT64(imm16, 16, initial_addend);
+ A = initial_addend;
+ A += (int64)reloc_addend;
+
+ /* S + A */
+ X = (int64)S + A;
+
+ /* No need to check overflow for this relocation type */
+ switch (reloc_type) {
+ case R_AARCH64_MOVW_UABS_G0:
+ if (X < 0 || X >= (1LL << 16))
+ goto overflow_check_fail;
+ break;
+ case R_AARCH64_MOVW_UABS_G1:
+ if (X < 0 || X >= (1LL << 32))
+ goto overflow_check_fail;
+ break;
+ case R_AARCH64_MOVW_UABS_G2:
+ if (X < 0 || X >= (1LL << 48))
+ goto overflow_check_fail;
+ break;
+ default:
+ break;
+ }
+
+ /* write the imm16 back to bits[5:20] of instruction */
+ switch (reloc_type) {
+ case R_AARCH64_MOVW_UABS_G0:
+ case R_AARCH64_MOVW_UABS_G0_NC:
+ *(int32 *)P =
+ (insn & 0xFFE0001F) | ((int32)((X & 0xFFFF) << 5));
+ break;
+ case R_AARCH64_MOVW_UABS_G1:
+ case R_AARCH64_MOVW_UABS_G1_NC:
+ *(int32 *)P = (insn & 0xFFE0001F)
+ | ((int32)(((X >> 16) & 0xFFFF) << 5));
+ break;
+ case R_AARCH64_MOVW_UABS_G2:
+ case R_AARCH64_MOVW_UABS_G2_NC:
+ *(int32 *)P = (insn & 0xFFE0001F)
+ | ((int32)(((X >> 32) & 0xFFFF) << 5));
+ break;
+ case R_AARCH64_MOVW_UABS_G3:
+ *(int32 *)P = (insn & 0xFFE0001F)
+ | ((int32)(((X >> 48) & 0xFFFF) << 5));
+ break;
+ default:
+ bh_assert(0);
+ break;
+ }
+ break;
+ }
+
+ case R_AARCH64_ADR_PREL_PG_HI21:
+ case R_AARCH64_ADR_PREL_PG_HI21_NC:
+ {
+ void *S = symbol_addr,
+ *P = (void *)(target_section_addr + reloc_offset);
+ int64 X, A, initial_addend;
+ int32 insn, immhi19, immlo2, imm21;
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+
+ insn = *(int32 *)P;
+ immhi19 = (insn >> 5) & 0x7FFFF;
+ immlo2 = (insn >> 29) & 0x3;
+ imm21 = (immhi19 << 2) | immlo2;
+
+ SIGN_EXTEND_TO_INT64(imm21 << 12, 33, initial_addend);
+ A = initial_addend;
+ A += (int64)reloc_addend;
+
+ /* Page(S+A) - Page(P) */
+ X = Page((int64)S + A) - Page((int64)P);
+
+ /* Check overflow: +-4GB */
+ if (reloc_type == R_AARCH64_ADR_PREL_PG_HI21
+ && (X > ((int64)4 * BH_GB) || X < ((int64)-4 * BH_GB)))
+ goto overflow_check_fail;
+
+ /* write the imm21 back to instruction */
+ immhi19 = (int32)(((X >> 12) >> 2) & 0x7FFFF);
+ immlo2 = (int32)((X >> 12) & 0x3);
+ *(int32 *)P = (insn & 0x9F00001F) | (immlo2 << 29) | (immhi19 << 5);
+
+ break;
+ }
+
+ case R_AARCH64_ADD_ABS_LO12_NC:
+ {
+ void *S = symbol_addr,
+ *P = (void *)(target_section_addr + reloc_offset);
+ int64 X, A, initial_addend;
+ int32 insn, imm12;
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+
+ insn = *(int32 *)P;
+ imm12 = (insn >> 10) & 0xFFF;
+
+ SIGN_EXTEND_TO_INT64(imm12, 12, initial_addend);
+ A = initial_addend;
+ A += (int64)reloc_addend;
+
+ /* S + A */
+ X = (int64)S + A;
+
+ /* No need to check overflow for this relocation type */
+
+ /* write the imm12 back to instruction */
+ *(int32 *)P = (insn & 0xFFC003FF) | ((int32)((X & 0xFFF) << 10));
+ break;
+ }
+
+ case R_AARCH64_LDST8_ABS_LO12_NC:
+ case R_AARCH64_LDST16_ABS_LO12_NC:
+ case R_AARCH64_LDST32_ABS_LO12_NC:
+ case R_AARCH64_LDST64_ABS_LO12_NC:
+ case R_AARCH64_LDST128_ABS_LO12_NC:
+ {
+ void *S = symbol_addr,
+ *P = (void *)(target_section_addr + reloc_offset);
+ int64 X, A, initial_addend;
+ int32 insn, imm12;
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+
+ insn = *(int32 *)P;
+ imm12 = (insn >> 10) & 0xFFF;
+
+ SIGN_EXTEND_TO_INT64(imm12, 12, initial_addend);
+ A = initial_addend;
+ A += (int64)reloc_addend;
+
+ /* S + A */
+ X = (int64)S + A;
+
+ /* No need to check overflow for this relocation type */
+
+ /* write the imm12 back to instruction */
+ switch (reloc_type) {
+ case R_AARCH64_LDST8_ABS_LO12_NC:
+ *(int32 *)P =
+ (insn & 0xFFC003FF) | ((int32)((X & 0xFFF) << 10));
+ break;
+ case R_AARCH64_LDST16_ABS_LO12_NC:
+ *(int32 *)P = (insn & 0xFFC003FF)
+ | ((int32)(((X & 0xFFF) >> 1) << 10));
+ break;
+ case R_AARCH64_LDST32_ABS_LO12_NC:
+ *(int32 *)P = (insn & 0xFFC003FF)
+ | ((int32)(((X & 0xFFF) >> 2) << 10));
+ break;
+ case R_AARCH64_LDST64_ABS_LO12_NC:
+ *(int32 *)P = (insn & 0xFFC003FF)
+ | ((int32)(((X & 0xFFF) >> 3) << 10));
+ break;
+ case R_AARCH64_LDST128_ABS_LO12_NC:
+ *(int32 *)P = (insn & 0xFFC003FF)
+ | ((int32)(((X & 0xFFF) >> 4) << 10));
+ break;
+ default:
+ bh_assert(0);
+ break;
+ }
+ 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;
+
+overflow_check_fail:
+ set_error_buf(error_buf, error_buf_size,
+ "AOT module load failed: "
+ "target address out of range.");
+ return false;
+}
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_arc.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_arc.c
new file mode 100644
index 000000000..332962998
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_arc.c
@@ -0,0 +1,419 @@
+/*
+ * Copyright (C) 2019 Intel Corporation. All rights reserved.
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+ */
+
+#include "aot_reloc.h"
+
+#define R_ARC_S21H_PCREL 14
+#define R_ARC_S21W_PCREL 15
+#define R_ARC_S25H_PCREL 16
+#define R_ARC_S25W_PCREL 17
+#define R_ARC_32 4
+#define R_ARC_32_ME 27
+
+/* clang-format off */
+#ifndef __CCAC__
+void __st_r13_to_r15();
+void __st_r13_to_r16();
+void __st_r13_to_r17();
+void __st_r13_to_r18();
+void __st_r13_to_r19();
+void __st_r13_to_r20();
+void __st_r13_to_r21();
+void __st_r13_to_r22();
+void __st_r13_to_r23();
+void __st_r13_to_r24();
+void __st_r13_to_r25();
+void __ld_r13_to_r15();
+void __ld_r13_to_r16();
+void __ld_r13_to_r17();
+void __ld_r13_to_r18();
+void __ld_r13_to_r19();
+void __ld_r13_to_r20();
+void __ld_r13_to_r21();
+void __ld_r13_to_r22();
+void __ld_r13_to_r23();
+void __ld_r13_to_r24();
+void __ld_r13_to_r25();
+void __adddf3();
+void __addsf3();
+void __divdf3();
+void __divdi3();
+void __divsf3();
+void __divsi3();
+void __extendsfdf2();
+void __fixdfsi();
+void __floatsidf();
+void __floatsisf();
+void __muldf3();
+void __mulsf3();
+void __subdf3();
+void __subsf3();
+void __truncdfsf2();
+void __floatunsisf();
+void __fixunsdfsi();
+void __floatdisf();
+void __floatdidf();
+void __fixdfdi();
+void __ltsf2();
+void __gesf2();
+void __eqdf2();
+void __nedf2();
+void __ltsf2();
+void __nesf2();
+void __unordsf2();
+void __fixunssfsi();
+#else
+void __ac_push_13_to_13();
+void __ac_push_13_to_14();
+void __ac_push_13_to_15();
+void __ac_push_13_to_16();
+void __ac_push_13_to_17();
+void __ac_push_13_to_18();
+void __ac_push_13_to_19();
+void __ac_push_13_to_20();
+void __ac_push_13_to_21();
+void __ac_push_13_to_22();
+void __ac_push_13_to_23();
+void __ac_push_13_to_24();
+void __ac_push_13_to_25();
+void __ac_push_13_to_26();
+void __ac_push_none();
+void __ac_pop_13_to_26();
+void __ac_pop_13_to_26v();
+void __ac_pop_13_to_25();
+void __ac_pop_13_to_25v();
+void __ac_pop_13_to_24();
+void __ac_pop_13_to_24v();
+void __ac_pop_13_to_23();
+void __ac_pop_13_to_23v();
+void __ac_pop_13_to_22();
+void __ac_pop_13_to_22v();
+void __ac_pop_13_to_21();
+void __ac_pop_13_to_21v();
+void __ac_pop_13_to_20();
+void __ac_pop_13_to_20v();
+void __ac_pop_13_to_19();
+void __ac_pop_13_to_19v();
+void __ac_pop_13_to_18();
+void __ac_pop_13_to_18v();
+void __ac_pop_13_to_17();
+void __ac_pop_13_to_17v();
+void __ac_pop_13_to_16();
+void __ac_pop_13_to_16v();
+void __ac_pop_13_to_15();
+void __ac_pop_13_to_15v();
+void __ac_pop_13_to_14();
+void __ac_pop_13_to_14v();
+void __ac_pop_13_to_13();
+void __ac_pop_13_to_13v();
+void __ac_pop_none();
+void __ac_pop_nonev();
+void __eqdf2();
+void __nedf2();
+void __ltsf2();
+void __nesf2();
+void __gesf2();
+void __gtsf2();
+void __unordsf2();
+void __truncdfhf2();
+void __truncsfhf2();
+#endif /* end of __CCAC__ */
+
+void __ledf2();
+void __ltdf2();
+void __gedf2();
+void __gtdf2();
+void __eqsf2();
+void __lesf2();
+void __unorddf2();
+/* clang-format on */
+
+static SymbolMap target_sym_map[] = {
+ /* clang-format off */
+ REG_COMMON_SYMBOLS
+#ifndef __CCAC__
+ REG_SYM(__st_r13_to_r15),
+ REG_SYM(__st_r13_to_r16),
+ REG_SYM(__st_r13_to_r17),
+ REG_SYM(__st_r13_to_r18),
+ REG_SYM(__st_r13_to_r19),
+ REG_SYM(__st_r13_to_r20),
+ REG_SYM(__st_r13_to_r21),
+ REG_SYM(__st_r13_to_r22),
+ REG_SYM(__st_r13_to_r23),
+ REG_SYM(__st_r13_to_r24),
+ REG_SYM(__st_r13_to_r25),
+ REG_SYM(__ld_r13_to_r15),
+ REG_SYM(__ld_r13_to_r16),
+ REG_SYM(__ld_r13_to_r17),
+ REG_SYM(__ld_r13_to_r18),
+ REG_SYM(__ld_r13_to_r19),
+ REG_SYM(__ld_r13_to_r20),
+ REG_SYM(__ld_r13_to_r21),
+ REG_SYM(__ld_r13_to_r22),
+ REG_SYM(__ld_r13_to_r23),
+ REG_SYM(__ld_r13_to_r24),
+ REG_SYM(__ld_r13_to_r25),
+ REG_SYM(__adddf3),
+ REG_SYM(__addsf3),
+ REG_SYM(__divdf3),
+ REG_SYM(__divdi3),
+ REG_SYM(__divsf3),
+ REG_SYM(__divsi3),
+ REG_SYM(__extendsfdf2),
+ REG_SYM(__fixdfsi),
+ REG_SYM(__floatsidf),
+ REG_SYM(__floatsisf),
+ REG_SYM(__muldf3),
+ REG_SYM(__mulsf3),
+ REG_SYM(__subdf3),
+ REG_SYM(__subsf3),
+ REG_SYM(__truncdfsf2),
+ REG_SYM(__floatunsisf),
+ REG_SYM(__fixunsdfsi),
+ REG_SYM(__floatdisf),
+ REG_SYM(__floatdidf),
+ REG_SYM(__fixdfdi),
+ REG_SYM(__ltsf2),
+ REG_SYM(__gesf2),
+ REG_SYM(__eqdf2),
+ REG_SYM(__nedf2),
+ REG_SYM(__ltsf2),
+ REG_SYM(__nesf2),
+ REG_SYM(__unordsf2),
+ REG_SYM(__fixunssfsi),
+#else
+ REG_SYM(__ac_push_13_to_13),
+ REG_SYM(__ac_push_13_to_14),
+ REG_SYM(__ac_push_13_to_15),
+ REG_SYM(__ac_push_13_to_16),
+ REG_SYM(__ac_push_13_to_17),
+ REG_SYM(__ac_push_13_to_18),
+ REG_SYM(__ac_push_13_to_19),
+ REG_SYM(__ac_push_13_to_20),
+ REG_SYM(__ac_push_13_to_21),
+ REG_SYM(__ac_push_13_to_22),
+ REG_SYM(__ac_push_13_to_23),
+ REG_SYM(__ac_push_13_to_24),
+ REG_SYM(__ac_push_13_to_25),
+ REG_SYM(__ac_push_13_to_26),
+ REG_SYM(__ac_push_none),
+ REG_SYM(__ac_pop_13_to_26),
+ REG_SYM(__ac_pop_13_to_26v),
+ REG_SYM(__ac_pop_13_to_25),
+ REG_SYM(__ac_pop_13_to_25v),
+ REG_SYM(__ac_pop_13_to_24),
+ REG_SYM(__ac_pop_13_to_24v),
+ REG_SYM(__ac_pop_13_to_23),
+ REG_SYM(__ac_pop_13_to_23v),
+ REG_SYM(__ac_pop_13_to_22),
+ REG_SYM(__ac_pop_13_to_22v),
+ REG_SYM(__ac_pop_13_to_21),
+ REG_SYM(__ac_pop_13_to_21v),
+ REG_SYM(__ac_pop_13_to_20),
+ REG_SYM(__ac_pop_13_to_20v),
+ REG_SYM(__ac_pop_13_to_19),
+ REG_SYM(__ac_pop_13_to_19v),
+ REG_SYM(__ac_pop_13_to_18),
+ REG_SYM(__ac_pop_13_to_18v),
+ REG_SYM(__ac_pop_13_to_17),
+ REG_SYM(__ac_pop_13_to_17v),
+ REG_SYM(__ac_pop_13_to_16),
+ REG_SYM(__ac_pop_13_to_16v),
+ REG_SYM(__ac_pop_13_to_15),
+ REG_SYM(__ac_pop_13_to_15v),
+ REG_SYM(__ac_pop_13_to_14),
+ REG_SYM(__ac_pop_13_to_14v),
+ REG_SYM(__ac_pop_13_to_13),
+ REG_SYM(__ac_pop_13_to_13v),
+ REG_SYM(__ac_pop_none),
+ REG_SYM(__ac_pop_nonev),
+ REG_SYM(__eqdf2),
+ REG_SYM(__nedf2),
+ REG_SYM(__ltsf2),
+ REG_SYM(__nesf2),
+ REG_SYM(__gesf2),
+ REG_SYM(__gtsf2),
+ REG_SYM(__unordsf2),
+ REG_SYM(__truncdfhf2),
+ REG_SYM(__truncsfhf2),
+#endif /* end of __CCAC__ */
+
+ REG_SYM(__ledf2),
+ REG_SYM(__ltdf2),
+ REG_SYM(__gedf2),
+ REG_SYM(__gtdf2),
+ REG_SYM(__eqsf2),
+ REG_SYM(__lesf2),
+ REG_SYM(__unorddf2),
+ /* clang-format on */
+};
+
+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;
+}
+
+void
+get_current_target(char *target_buf, uint32 target_buf_size)
+{
+ snprintf(target_buf, target_buf_size, "arc");
+}
+
+uint32
+get_plt_table_size()
+{
+ return 0;
+}
+
+void
+init_plt_table(uint8 *plt)
+{
+ (void)plt;
+}
+
+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;
+}
+
+static uint32
+middle_endian_convert(uint32 insn)
+{
+ return ((insn & 0xFFFF0000) >> 16) | ((insn & 0x0000FFFF) << 16);
+}
+
+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_ARC_S25H_PCREL:
+ {
+ uint32 insn = LOAD_I32(target_section_addr + reloc_offset);
+ int32 addend, value;
+ uintptr_t S, P;
+ intptr_t A;
+
+ CHECK_RELOC_OFFSET(sizeof(void *));
+
+ /* Convert from middle endian */
+ insn = middle_endian_convert(insn);
+
+ addend = ((insn << 28) >> 28) << 10;
+ /* Extract the next 10 bits from Position 6 to 15 in insn */
+ addend |= ((insn << 16) >> 22);
+ addend = addend << 10;
+ /* Extract the remaining 10 bits from Position 17 to 26 in insn */
+ addend |= ((insn << 5) >> 22);
+ /* Fill in 1 bits to get the 25 bit Offset Value */
+ addend = addend << 1;
+
+ /* (S + A) - P */
+ S = (uintptr_t)(uint8 *)symbol_addr;
+ A = (intptr_t)reloc_addend;
+ P = (uintptr_t)(target_section_addr + reloc_offset);
+ P &= (uintptr_t)~1;
+ value = (int32)(S + A + addend - P);
+
+ insn = insn & 0xf8010030;
+ insn |= ((((value >> 1) & 0x3ff) << 17)
+ | (((value >> 1) & 0xffc00) >> 3)
+ | (((value >> 1) & 0xf00000) >> 19));
+
+ /* Convert to middle endian */
+ insn = middle_endian_convert(insn);
+
+ STORE_U32(target_section_addr + reloc_offset, insn);
+ break;
+ }
+ case R_ARC_S25W_PCREL:
+ {
+ uint32 insn = LOAD_I32(target_section_addr + reloc_offset);
+ int32 addend, value;
+ uintptr_t S, P;
+ intptr_t A;
+
+ CHECK_RELOC_OFFSET(sizeof(void *));
+
+ /* Convert from middle endian */
+ insn = middle_endian_convert(insn);
+
+ addend = ((insn << 28) >> 28) << 10;
+ /* Extract the next 10 bits from Position 6 to 15 in insn */
+ addend |= ((insn << 16) >> 22);
+ addend = addend << 9;
+ /* Extract the remaining 9 bits from Position 18 to 26 in insn */
+ addend |= ((insn << 5) >> 23);
+ /* Fill in 2 bits to get the 25 bit Offset Value */
+ addend = addend << 2;
+
+ /* (S + A) - P */
+ S = (uintptr_t)(uint8 *)symbol_addr;
+ A = (intptr_t)reloc_addend;
+ P = (uintptr_t)(target_section_addr + reloc_offset);
+ P &= (uintptr_t)~3;
+ value = (int32)(S + A + addend - P);
+
+ insn = insn & 0xf8030030;
+ insn |= ((((value >> 2) & 0x1ff) << 18)
+ | (((value >> 2) & 0x7fe00) >> 3)
+ | (((value >> 2) & 0x780000) >> 19));
+
+ /* Convert to middle endian */
+ insn = middle_endian_convert(insn);
+
+ STORE_U32(target_section_addr + reloc_offset, insn);
+ break;
+ }
+ case R_ARC_32:
+ case R_ARC_32_ME:
+ {
+ uint32 insn;
+
+ CHECK_RELOC_OFFSET(sizeof(void *));
+
+ /* (S + A) */
+ insn = (uint32)((uintptr_t)symbol_addr + (intptr_t)reloc_addend);
+
+ if (reloc_type == R_ARC_32_ME)
+ /* Convert to middle endian */
+ insn = middle_endian_convert(insn);
+
+ STORE_U32(target_section_addr + reloc_offset, insn);
+ 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;
+}
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_arm.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_arm.c
new file mode 100644
index 000000000..fbf9be13c
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_arm.c
@@ -0,0 +1,376 @@
+/*
+ * 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 __addsf3();
+void __aeabi_d2iz();
+void __aeabi_d2lz();
+void __aeabi_d2ulz();
+void __aeabi_dadd();
+void __aeabi_dcmpge();
+void __aeabi_dcmple();
+void __aeabi_dcmplt();
+void __aeabi_dcmpun();
+void __aeabi_ddiv();
+void __aeabi_f2d();
+void __aeabi_f2iz();
+void __aeabi_f2lz();
+void __aeabi_f2ulz();
+void __aeabi_fcmpge();
+void __aeabi_fcmple();
+void __aeabi_fcmplt();
+void __aeabi_fcmpun();
+void __aeabi_i2d();
+void __aeabi_idiv();
+void __aeabi_idivmod();
+void __aeabi_l2d();
+void __aeabi_l2f();
+void __aeabi_ldivmod();
+void __aeabi_memcpy();
+void __aeabi_memmove();
+void __aeabi_memset();
+void __aeabi_uidiv();
+void __aeabi_uidivmod();
+void __aeabi_ul2d();
+void __aeabi_ul2f();
+void __aeabi_uldivmod();
+void __clzsi2();
+void __divdf3();
+void __divdi3();
+void __divsf3();
+void __divsi3();
+void __eqdf2();
+void __extendsfdf2();
+void __fixdfdi();
+void __fixdfsi();
+void __fixsfdi();
+void __fixsfsi();
+void __fixunsdfdi();
+void __fixunsdfsi();
+void __fixunssfdi();
+void __floatdidf();
+void __floatdisf();
+void __floatsidf();
+void __floatsisf();
+void __floatundidf();
+void __floatundisf();
+void __floatunsidf();
+void __floatunsisf();
+void __gedf2();
+void __gesf2();
+void __gtdf2();
+void __gtsf2();
+void __ledf2();
+void __lesf2();
+void __ltdf2();
+void __ltsf2();
+void __moddi3();
+void __modsi3();
+void __muldf3();
+void __mulsf3();
+void __nedf2();
+void __nesf2();
+void __subdf3();
+void __subsf3();
+void __truncdfsf2();
+void __udivdi3();
+void __udivmoddi4();
+void __udivsi3();
+void __umoddi3();
+void __umodsi3();
+void __unorddf2();
+void __unordsf2();
+/* 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_d2iz),
+ REG_SYM(__aeabi_d2lz),
+ REG_SYM(__aeabi_d2ulz),
+ REG_SYM(__aeabi_dadd),
+ REG_SYM(__aeabi_dcmpge),
+ REG_SYM(__aeabi_dcmple),
+ REG_SYM(__aeabi_dcmplt),
+ REG_SYM(__aeabi_dcmpun),
+ REG_SYM(__aeabi_ddiv),
+ REG_SYM(__aeabi_f2d),
+ REG_SYM(__aeabi_f2iz),
+ REG_SYM(__aeabi_f2lz),
+ REG_SYM(__aeabi_f2ulz),
+ REG_SYM(__aeabi_fcmpge),
+ REG_SYM(__aeabi_fcmple),
+ REG_SYM(__aeabi_fcmplt),
+ REG_SYM(__aeabi_fcmpun),
+ REG_SYM(__aeabi_i2d),
+ REG_SYM(__aeabi_idiv),
+ REG_SYM(__aeabi_idivmod),
+ REG_SYM(__aeabi_l2d),
+ REG_SYM(__aeabi_l2f),
+ REG_SYM(__aeabi_ldivmod),
+ REG_SYM(__aeabi_memcpy),
+ REG_SYM(__aeabi_memmove),
+ REG_SYM(__aeabi_memset),
+ 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(__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(__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()
+{
+ /* 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;
+}
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_mips.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_mips.c
new file mode 100644
index 000000000..f9f06a053
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_mips.c
@@ -0,0 +1,69 @@
+/*
+ * Copyright (C) 2019 Intel Corporation. All rights reserved.
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+ */
+
+#include "aot_reloc.h"
+
+#define R_MIPS_32 2 /* Direct 32 bit */
+#define R_MIPS_26 4 /* Direct 26 bit shifted */
+
+/* clang-format off */
+static SymbolMap target_sym_map[] = {
+ REG_COMMON_SYMBOLS
+};
+/* clang-format on */
+
+SymbolMap *
+get_target_symbol_map(uint32 *sym_num)
+{
+ *sym_num = sizeof(target_sym_map) / sizeof(SymbolMap);
+ return target_sym_map;
+}
+
+void
+get_current_target(char *target_buf, uint32 target_buf_size)
+{
+ snprintf(target_buf, target_buf_size, "mips");
+}
+
+static uint32
+get_plt_item_size()
+{
+ return 0;
+}
+
+void
+init_plt_table(uint8 *plt)
+{
+ (void)plt;
+}
+
+uint32
+get_plt_table_size()
+{
+ return get_plt_item_size() * (sizeof(target_sym_map) / sizeof(SymbolMap));
+}
+
+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) {
+ /* TODO: implement relocation for mips */
+ case R_MIPS_26:
+ case R_MIPS_32:
+
+ 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;
+}
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_riscv.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_riscv.c
new file mode 100644
index 000000000..75fee56fd
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_riscv.c
@@ -0,0 +1,440 @@
+/*
+ * Copyright (C) 2021 XiaoMi Corporation. All rights reserved.
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+ */
+
+#include "aot_reloc.h"
+
+#define R_RISCV_32 1
+#define R_RISCV_64 2
+#define R_RISCV_CALL 18
+#define R_RISCV_CALL_PLT 19
+#define R_RISCV_HI20 26
+#define R_RISCV_LO12_I 27
+#define R_RISCV_LO12_S 28
+
+#define RV_OPCODE_SW 0x23
+
+/* clang-format off */
+void __adddf3();
+void __addsf3();
+void __divdi3();
+void __divsi3();
+void __divdf3();
+void __divsf3();
+void __eqsf2();
+void __eqdf2();
+void __extendsfdf2();
+void __fixdfdi();
+void __fixdfsi();
+void __fixsfdi();
+void __fixsfsi();
+void __fixunsdfdi();
+void __fixunsdfsi();
+void __fixunssfdi();
+void __fixunssfsi();
+void __floatdidf();
+void __floatdisf();
+void __floatsisf();
+void __floatsidf();
+void __floatundidf();
+void __floatundisf();
+void __floatunsisf();
+void __floatunsidf();
+void __gedf2();
+void __gesf2();
+void __gtdf2();
+void __gtsf2();
+void __ledf2();
+void __lesf2();
+void __ltdf2();
+void __ltsf2();
+void __moddi3();
+void __modsi3();
+void __muldf3();
+void __muldi3();
+void __mulsf3();
+void __mulsi3();
+void __nedf2();
+void __nesf2();
+void __subdf3();
+void __subsf3();
+void __truncdfsf2();
+void __udivdi3();
+void __udivsi3();
+void __umoddi3();
+void __umodsi3();
+void __unorddf2();
+void __unordsf2();
+/* clang-format on */
+
+static SymbolMap target_sym_map[] = {
+ /* clang-format off */
+ REG_COMMON_SYMBOLS
+#ifndef __riscv_flen
+ REG_SYM(__adddf3),
+ REG_SYM(__addsf3),
+ REG_SYM(__divdf3),
+ REG_SYM(__divsf3),
+ 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(__muldf3),
+ REG_SYM(__nedf2),
+ REG_SYM(__nesf2),
+ REG_SYM(__eqsf2),
+ REG_SYM(__eqdf2),
+ REG_SYM(__extendsfdf2),
+ REG_SYM(__fixunsdfdi),
+ REG_SYM(__fixunsdfsi),
+ REG_SYM(__fixunssfsi),
+ REG_SYM(__subdf3),
+ REG_SYM(__subsf3),
+ REG_SYM(__truncdfsf2),
+ REG_SYM(__unorddf2),
+ REG_SYM(__unordsf2),
+#endif
+ REG_SYM(__divdi3),
+ REG_SYM(__divsi3),
+#if __riscv_xlen == 32
+ REG_SYM(__fixdfdi),
+ REG_SYM(__fixdfsi),
+ REG_SYM(__fixsfdi),
+ REG_SYM(__fixsfsi),
+#endif
+ REG_SYM(__fixunssfdi),
+#if __riscv_xlen == 32
+ REG_SYM(__floatdidf),
+ REG_SYM(__floatdisf),
+ REG_SYM(__floatsisf),
+ REG_SYM(__floatsidf),
+ REG_SYM(__floatundidf),
+ REG_SYM(__floatundisf),
+ REG_SYM(__floatunsisf),
+ REG_SYM(__floatunsidf),
+#endif
+ REG_SYM(__moddi3),
+ REG_SYM(__modsi3),
+ REG_SYM(__muldi3),
+#if __riscv_xlen == 32
+ REG_SYM(__mulsf3),
+ REG_SYM(__mulsi3),
+#endif
+ REG_SYM(__udivdi3),
+ REG_SYM(__udivsi3),
+ REG_SYM(__umoddi3),
+ REG_SYM(__umodsi3),
+ /* clang-format on */
+};
+
+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);
+}
+
+void
+get_current_target(char *target_buf, uint32 target_buf_size)
+{
+ snprintf(target_buf, target_buf_size, "riscv");
+}
+
+uint32
+get_plt_item_size()
+{
+#if __riscv_xlen == 64
+ /* auipc + ld + jalr + nop + addr */
+ return 20;
+#else
+ return 0;
+#endif
+}
+
+SymbolMap *
+get_target_symbol_map(uint32 *sym_num)
+{
+ *sym_num = sizeof(target_sym_map) / sizeof(SymbolMap);
+ return target_sym_map;
+}
+
+/* Get a val from given address */
+static uint32
+rv_get_val(uint16 *addr)
+{
+ uint32 ret;
+ ret = *addr | (*(addr + 1)) << 16;
+ return ret;
+}
+
+/* Set a val to given address */
+static void
+rv_set_val(uint16 *addr, uint32 val)
+{
+ *addr = (val & 0xffff);
+ *(addr + 1) = (val >> 16);
+
+ __asm__ volatile("fence.i");
+}
+
+/* Add a val to given address */
+static void
+rv_add_val(uint16 *addr, uint32 val)
+{
+ uint32 cur = rv_get_val(addr);
+ rv_set_val(addr, cur + val);
+}
+
+/**
+ * Get imm_hi and imm_lo from given integer
+ *
+ * @param imm given integer, signed 32bit
+ * @param imm_hi signed 20bit
+ * @param imm_lo signed 12bit
+ *
+ */
+static void
+rv_calc_imm(int32 imm, int32 *imm_hi, int32 *imm_lo)
+{
+ int32 lo;
+ int32 hi = imm / 4096;
+ int32 r = imm % 4096;
+
+ if (2047 < r) {
+ hi++;
+ }
+ else if (r < -2048) {
+ hi--;
+ }
+
+ lo = imm - (hi * 4096);
+
+ *imm_lo = lo;
+ *imm_hi = hi;
+}
+
+uint32
+get_plt_table_size()
+{
+ return get_plt_item_size() * (sizeof(target_sym_map) / sizeof(SymbolMap));
+}
+
+void
+init_plt_table(uint8 *plt)
+{
+#if __riscv_xlen == 64
+ uint32 i, num = sizeof(target_sym_map) / sizeof(SymbolMap);
+ uint8 *p;
+
+ for (i = 0; i < num; i++) {
+ p = plt;
+ /* auipc t1, 0 */
+ *(uint16 *)p = 0x0317;
+ p += 2;
+ *(uint16 *)p = 0x0000;
+ p += 2;
+ /* ld t1, 8(t1) */
+ *(uint16 *)p = 0x3303;
+ p += 2;
+ *(uint16 *)p = 0x00C3;
+ p += 2;
+ /* jr t1 */
+ *(uint16 *)p = 0x8302;
+ p += 2;
+ /* nop */
+ *(uint16 *)p = 0x0001;
+ p += 2;
+ bh_memcpy_s(p, 8, &target_sym_map[i].symbol_addr, 8);
+ p += 8;
+ plt += get_plt_item_size();
+ }
+#endif
+}
+
+typedef struct RelocTypeStrMap {
+ uint32 reloc_type;
+ char *reloc_str;
+} RelocTypeStrMap;
+
+#define RELOC_TYPE_MAP(reloc_type) \
+ { \
+ reloc_type, #reloc_type \
+ }
+
+static RelocTypeStrMap reloc_type_str_maps[] = {
+ RELOC_TYPE_MAP(R_RISCV_32), RELOC_TYPE_MAP(R_RISCV_CALL),
+ RELOC_TYPE_MAP(R_RISCV_CALL_PLT), RELOC_TYPE_MAP(R_RISCV_HI20),
+ RELOC_TYPE_MAP(R_RISCV_LO12_I), RELOC_TYPE_MAP(R_RISCV_LO12_S),
+};
+
+static const char *
+reloc_type_to_str(uint32 reloc_type)
+{
+ uint32 i;
+
+ for (i = 0; i < sizeof(reloc_type_str_maps) / sizeof(RelocTypeStrMap);
+ i++) {
+ if (reloc_type_str_maps[i].reloc_type == reloc_type)
+ return reloc_type_str_maps[i].reloc_str;
+ }
+
+ return "Unknown_Reloc_Type";
+}
+
+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)
+{
+ int32 val, imm_hi, imm_lo, insn;
+ uint8 *addr = target_section_addr + reloc_offset;
+ char buf[128];
+
+ switch (reloc_type) {
+ case R_RISCV_32:
+ {
+ uint32 val_32 =
+ (uint32)((uintptr_t)symbol_addr + (intptr_t)reloc_addend);
+
+ CHECK_RELOC_OFFSET(sizeof(uint32));
+ if (val_32 != ((uintptr_t)symbol_addr + (intptr_t)reloc_addend)) {
+ goto fail_addr_out_of_range;
+ }
+
+ rv_set_val((uint16 *)addr, val_32);
+ break;
+ }
+ case R_RISCV_64:
+ {
+ uint64 val_64 =
+ (uint64)((uintptr_t)symbol_addr + (intptr_t)reloc_addend);
+ CHECK_RELOC_OFFSET(sizeof(uint64));
+ bh_memcpy_s(addr, 8, &val_64, 8);
+ break;
+ }
+ case R_RISCV_CALL:
+ case R_RISCV_CALL_PLT:
+ {
+ val = (int32)(intptr_t)((uint8 *)symbol_addr - addr);
+
+ CHECK_RELOC_OFFSET(sizeof(uint32));
+ if (val != (intptr_t)((uint8 *)symbol_addr - addr)) {
+ if (symbol_index >= 0) {
+ /* Call runtime function by plt code */
+ symbol_addr = (uint8 *)module->code + module->code_size
+ - get_plt_table_size()
+ + get_plt_item_size() * symbol_index;
+ val = (int32)(intptr_t)((uint8 *)symbol_addr - addr);
+ }
+ }
+
+ if (val != (intptr_t)((uint8 *)symbol_addr - addr)) {
+ goto fail_addr_out_of_range;
+ }
+
+ rv_calc_imm(val, &imm_hi, &imm_lo);
+
+ rv_add_val((uint16 *)addr, (imm_hi << 12));
+ if ((rv_get_val((uint16 *)(addr + 4)) & 0x7f) == RV_OPCODE_SW) {
+ /* Adjust imm for SW : S-type */
+ val = (((int32)imm_lo >> 5) << 25)
+ + (((int32)imm_lo & 0x1f) << 7);
+
+ rv_add_val((uint16 *)(addr + 4), val);
+ }
+ else {
+ /* Adjust imm for MV(ADDI)/JALR : I-type */
+ rv_add_val((uint16 *)(addr + 4), ((int32)imm_lo << 20));
+ }
+ break;
+ }
+
+ case R_RISCV_HI20:
+ {
+ val = (int32)((intptr_t)symbol_addr + (intptr_t)reloc_addend);
+
+ CHECK_RELOC_OFFSET(sizeof(uint32));
+ if (val != ((intptr_t)symbol_addr + (intptr_t)reloc_addend)) {
+ goto fail_addr_out_of_range;
+ }
+
+ addr = target_section_addr + reloc_offset;
+ insn = rv_get_val((uint16 *)addr);
+ rv_calc_imm(val, &imm_hi, &imm_lo);
+ insn = (insn & 0x00000fff) | (imm_hi << 12);
+ rv_set_val((uint16 *)addr, insn);
+ break;
+ }
+
+ case R_RISCV_LO12_I:
+ {
+ val = (int32)((intptr_t)symbol_addr + (intptr_t)reloc_addend);
+
+ CHECK_RELOC_OFFSET(sizeof(uint32));
+ if (val != (intptr_t)symbol_addr + (intptr_t)reloc_addend) {
+ goto fail_addr_out_of_range;
+ }
+
+ addr = target_section_addr + reloc_offset;
+ insn = rv_get_val((uint16 *)addr);
+ rv_calc_imm(val, &imm_hi, &imm_lo);
+ insn = (insn & 0x000fffff) | (imm_lo << 20);
+ rv_set_val((uint16 *)addr, insn);
+ break;
+ }
+
+ case R_RISCV_LO12_S:
+ {
+ val = (int32)((intptr_t)symbol_addr + (intptr_t)reloc_addend);
+
+ CHECK_RELOC_OFFSET(sizeof(uint32));
+ if (val != ((intptr_t)symbol_addr + (intptr_t)reloc_addend)) {
+ goto fail_addr_out_of_range;
+ }
+
+ addr = target_section_addr + reloc_offset;
+ rv_calc_imm(val, &imm_hi, &imm_lo);
+ val = (((int32)imm_lo >> 5) << 25) + (((int32)imm_lo & 0x1f) << 7);
+ rv_add_val((uint16 *)addr, val);
+ break;
+ }
+
+ default:
+ if (error_buf != NULL)
+ snprintf(error_buf, error_buf_size,
+ "Load relocation section failed: "
+ "invalid relocation type %" PRIu32 ".",
+ reloc_type);
+ return false;
+ }
+
+ return true;
+
+fail_addr_out_of_range:
+ snprintf(buf, sizeof(buf),
+ "AOT module load failed: "
+ "relocation truncated to fit %s failed.",
+ reloc_type_to_str(reloc_type));
+ set_error_buf(error_buf, error_buf_size, buf);
+ return false;
+}
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_thumb.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_thumb.c
new file mode 100644
index 000000000..26614863b
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_thumb.c
@@ -0,0 +1,431 @@
+/*
+ * Copyright (C) 2019 Intel Corporation. All rights reserved.
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+ */
+
+#include "aot_reloc.h"
+
+#define R_ARM_ABS32 2 /* Direct 32 bit */
+#define R_ARM_THM_CALL 10 /* PC relative (Thumb BL and ARMv5 Thumb BLX). */
+#define R_ARM_THM_JMP24 30 /* B.W */
+#define R_ARM_THM_MOVW_ABS_NC 47
+#define R_ARM_THM_MOVT_ABS 48
+#define R_ARM_THM_MOVW_PREL_NC 49
+#define R_ARM_THM_MOVT_PREL 50
+
+/* clang-format off */
+void __adddf3();
+void __addsf3();
+void __aeabi_d2iz();
+void __aeabi_d2lz();
+void __aeabi_d2uiz();
+void __aeabi_d2ulz();
+void __aeabi_dadd();
+void __aeabi_dcmpge();
+void __aeabi_dcmpgt();
+void __aeabi_dcmple();
+void __aeabi_dcmplt();
+void __aeabi_dcmpun();
+void __aeabi_ddiv();
+void __aeabi_f2d();
+void __aeabi_f2iz();
+void __aeabi_f2lz();
+void __aeabi_f2ulz();
+void __aeabi_fcmpge();
+void __aeabi_fcmple();
+void __aeabi_fcmplt();
+void __aeabi_fcmpun();
+void __aeabi_i2d();
+void __aeabi_idiv();
+void __aeabi_idivmod();
+void __aeabi_l2d();
+void __aeabi_l2f();
+void __aeabi_ldivmod();
+void __aeabi_ui2d();
+void __aeabi_uidiv();
+void __aeabi_uidivmod();
+void __aeabi_ul2d();
+void __aeabi_ul2f();
+void __aeabi_uldivmod();
+void __ashldi3();
+void __clzsi2();
+void __divdf3();
+void __divdi3();
+void __divsi3();
+void __eqdf2();
+void __eqsf2();
+void __extendsfdf2();
+void __fixdfdi();
+void __fixdfsi();
+void __fixsfdi();
+void __fixunsdfdi();
+void __fixunsdfsi();
+void __fixunssfdi();
+void __floatdidf();
+void __floatdisf();
+void __floatsidf();
+void __floatsisf();
+void __floatundidf();
+void __floatundisf();
+void __floatunsidf();
+void __floatunsisf();
+void __gedf2();
+void __gesf2();
+void __gtdf2();
+void __gtsf2();
+void __ledf2();
+void __lesf2();
+void __lshrdi3();
+void __ltdf2();
+void __ltsf2();
+void __moddi3();
+void __modsi3();
+void __muldf3();
+void __muldi3();
+void __mulsf3();
+void __nedf2();
+void __nesf2();
+void __subdf3();
+void __subsf3();
+void __truncdfsf2();
+void __udivdi3();
+void __udivmoddi4();
+void __udivsi3();
+void __umoddi3();
+void __umodsi3();
+void __unorddf2();
+void __unordsf2();
+/* clang-format on */
+
+static SymbolMap target_sym_map[] = {
+ /* clang-format off */
+ REG_COMMON_SYMBOLS
+ /* compiler-rt symbols that come from compiler(e.g. gcc) */
+#if __ARM_ARCH != 6
+ REG_SYM(__adddf3),
+ REG_SYM(__addsf3),
+ REG_SYM(__divdf3),
+ REG_SYM(__extendsfdf2),
+ REG_SYM(__fixdfsi),
+ REG_SYM(__floatsidf),
+ REG_SYM(__floatsisf),
+ REG_SYM(__floatunsidf),
+ REG_SYM(__floatunsisf),
+ REG_SYM(__muldf3),
+ REG_SYM(__mulsf3),
+ REG_SYM(__subdf3),
+ REG_SYM(__subsf3),
+ REG_SYM(__truncdfsf2),
+ REG_SYM(__unorddf2),
+ REG_SYM(__unordsf2),
+#endif
+ /* clang-format on */
+ REG_SYM(__aeabi_d2iz),
+ REG_SYM(__aeabi_d2lz),
+ REG_SYM(__aeabi_d2uiz),
+ REG_SYM(__aeabi_d2ulz),
+ REG_SYM(__aeabi_dadd),
+ 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_f2d),
+ REG_SYM(__aeabi_f2iz),
+ REG_SYM(__aeabi_f2lz),
+ REG_SYM(__aeabi_f2ulz),
+ REG_SYM(__aeabi_fcmpge),
+ REG_SYM(__aeabi_fcmple),
+ REG_SYM(__aeabi_fcmplt),
+ REG_SYM(__aeabi_fcmpun),
+ REG_SYM(__aeabi_i2d),
+ REG_SYM(__aeabi_idiv),
+ REG_SYM(__aeabi_idivmod),
+ REG_SYM(__aeabi_l2d),
+ REG_SYM(__aeabi_l2f),
+ REG_SYM(__aeabi_ldivmod),
+ REG_SYM(__aeabi_ui2d),
+ REG_SYM(__aeabi_uidiv),
+ REG_SYM(__aeabi_uidivmod),
+ REG_SYM(__aeabi_ul2d),
+ REG_SYM(__aeabi_ul2f),
+ REG_SYM(__aeabi_uldivmod),
+ REG_SYM(__ashldi3),
+ REG_SYM(__clzsi2),
+ REG_SYM(__divdi3),
+ REG_SYM(__divsi3),
+ REG_SYM(__eqdf2),
+ REG_SYM(__eqsf2),
+ REG_SYM(__fixdfdi),
+ REG_SYM(__fixsfdi),
+ REG_SYM(__fixunsdfdi),
+ REG_SYM(__fixunsdfsi),
+ REG_SYM(__fixunssfdi),
+ REG_SYM(__floatdidf),
+ REG_SYM(__floatdisf),
+ REG_SYM(__floatundidf),
+ REG_SYM(__floatundisf),
+ REG_SYM(__gedf2),
+ REG_SYM(__gesf2),
+ REG_SYM(__gtdf2),
+ REG_SYM(__gtsf2),
+ REG_SYM(__ledf2),
+ REG_SYM(__lesf2),
+ REG_SYM(__lshrdi3),
+ REG_SYM(__ltdf2),
+ REG_SYM(__ltsf2),
+ REG_SYM(__moddi3),
+ REG_SYM(__modsi3),
+ REG_SYM(__muldi3),
+ REG_SYM(__nedf2),
+ REG_SYM(__nesf2),
+ REG_SYM(__udivdi3),
+ REG_SYM(__udivmoddi4),
+ REG_SYM(__udivsi3),
+ REG_SYM(__umoddi3),
+ REG_SYM(__umodsi3),
+};
+
+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_THUMB_V4T "thumbv4t"
+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 "thumbv4t" by default if sub version isn't specified */
+ if (strcmp(s, "THUMB") == 0) {
+ s = BUILD_TARGET_THUMB_V4T;
+ s_size = sizeof(BUILD_TARGET_THUMB_V4T);
+ }
+ 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_THUMB_V4T
+
+uint32
+get_plt_item_size()
+{
+ /* 16 bytes instructions and 4 bytes symbol address */
+ return 20;
+}
+
+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++) {
+ uint16 *p = (uint16 *)plt;
+ /* nop */
+ *p++ = 0xbf00;
+ /* push {r4} */
+ *p++ = 0xb410;
+ /* add r4, pc, #8 */
+ *p++ = 0xa402;
+ /* ldr r4, [r4, #0] */
+ *p++ = 0x6824;
+ /* mov ip, r4 */
+ *p++ = 0x46a4;
+ /* pop {r4} */
+ *p++ = 0xbc10;
+ /* mov pc, ip */
+ *p++ = 0x46e7;
+ /* nop */
+ *p++ = 0xbf00;
+ /* symbol addr */
+ *(uint32 *)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_THM_CALL:
+ case R_ARM_THM_JMP24:
+ {
+ int32 RESULT_MASK = 0x01FFFFFE;
+ int32 result, result_masked;
+ int16 *reloc_addr;
+ int32 initial_addend_0, initial_addend_1, initial_addend;
+ bool sign;
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+
+ reloc_addr = (int16 *)(target_section_addr + reloc_offset);
+ initial_addend_0 = (*reloc_addr) & 0x7FF;
+ initial_addend_1 = (*(reloc_addr + 1)) & 0x7FF;
+ sign = (initial_addend_0 & 0x400) ? true : false;
+ initial_addend = (initial_addend_0 << 12) | (initial_addend_1 << 1)
+ | (sign ? 0xFF800000 : 0);
+
+ if (symbol_index < 0) {
+ /* Symbol address itself is an AOT function.
+ * Apply relocation with the symbol directly.
+ * Suppose the symbol address is in +-4MB relative
+ * to the relocation address.
+ */
+ /* operation: ((S + A) | T) - P where S is symbol address
+ and T is 1 */
+ result =
+ (int32)(((intptr_t)((uintptr_t)symbol_addr
+ + (intptr_t)reloc_addend)
+ | 1)
+ - (intptr_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 +-4MB 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 1 */
+ uint8 *plt = (uint8 *)module->code + module->code_size
+ - get_plt_table_size()
+ + get_plt_item_size() * symbol_index + 1;
+ result =
+ (int32)(((intptr_t)plt | 1)
+ - (intptr_t)(target_section_addr + reloc_offset));
+ }
+
+ result += initial_addend;
+
+ /* Check overflow: +-4MB */
+ if (result > (4 * BH_MB) || result < (-4 * BH_MB)) {
+ set_error_buf(error_buf, error_buf_size,
+ "AOT module load failed: "
+ "target address out of range.");
+ return false;
+ }
+
+ result_masked = (int32)result & RESULT_MASK;
+ initial_addend_0 = (result_masked >> 12) & 0x7FF;
+ initial_addend_1 = (result_masked >> 1) & 0x7FF;
+
+ *reloc_addr = (*reloc_addr & ~0x7FF) | initial_addend_0;
+ *(reloc_addr + 1) = (*(reloc_addr + 1) & ~0x7FF) | initial_addend_1;
+ 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_THM_MOVW_ABS_NC:
+ case R_ARM_THM_MOVT_ABS:
+ case R_ARM_THM_MOVW_PREL_NC:
+ case R_ARM_THM_MOVT_PREL:
+ {
+ uint16 upper = *(uint16 *)(target_section_addr + reloc_offset);
+ uint16 lower = *(uint16 *)(target_section_addr + reloc_offset + 2);
+ int32 offset;
+
+ /*
+ * MOVT/MOVW instructions encoding in Thumb-2:
+ *
+ * i = upper[10]
+ * imm4 = upper[3:0]
+ * imm3 = lower[14:12]
+ * imm8 = lower[7:0]
+ *
+ * imm16 = imm4:i:imm3:imm8
+ */
+
+ offset = ((upper & 0x000f) << 12) | ((upper & 0x0400) << 1)
+ | ((lower & 0x7000) >> 4) | (lower & 0x00ff);
+ offset = (offset ^ 0x8000) - 0x8000;
+
+ offset += (symbol_addr + reloc_addend);
+
+ if (reloc_type == R_ARM_THM_MOVT_PREL
+ || reloc_type == R_ARM_THM_MOVW_PREL_NC)
+ offset -= (int32)(target_section_addr + reloc_offset);
+ if (reloc_type == R_ARM_THM_MOVT_ABS
+ || reloc_type == R_ARM_THM_MOVT_PREL)
+ offset >>= 16;
+
+ upper = (uint16)((upper & 0xfbf0) | ((offset & 0xf000) >> 12)
+ | ((offset & 0x0800) >> 1));
+ lower = (uint16)((lower & 0x8f00) | ((offset & 0x0700) << 4)
+ | (offset & 0x00ff));
+
+ *(uint16 *)(target_section_addr + reloc_offset) = upper;
+ *(uint16 *)(target_section_addr + reloc_offset + 2) = lower;
+ break;
+ }
+
+ default:
+ if (error_buf != NULL)
+ snprintf(error_buf, error_buf_size,
+ "Load relocation section failed: "
+ "invalid relocation type %" PRId32 ".",
+ reloc_type);
+ return false;
+ }
+ return true;
+}
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_x86_32.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_x86_32.c
new file mode 100644
index 000000000..af3e0bb8e
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_x86_32.c
@@ -0,0 +1,152 @@
+/*
+ * Copyright (C) 2019 Intel Corporation. All rights reserved.
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+ */
+
+#include "aot_reloc.h"
+
+#define R_386_32 1 /* Direct 32 bit */
+#define R_386_PC32 2 /* PC relative 32 bit */
+#define R_386_PLT32 4 /* 32-bit address ProcedureLinkageTable */
+
+#if !defined(_WIN32) && !defined(_WIN32_)
+/* clang-format off */
+void __divdi3();
+void __udivdi3();
+void __moddi3();
+void __umoddi3();
+/* clang-format on */
+#else
+#pragma function(floor)
+#pragma function(ceil)
+
+static int64
+__divdi3(int64 a, int64 b)
+{
+ return a / b;
+}
+
+static uint64
+__udivdi3(uint64 a, uint64 b)
+{
+ return a / b;
+}
+
+static int64
+__moddi3(int64 a, int64 b)
+{
+ return a % b;
+}
+
+static uint64
+__umoddi3(uint64 a, uint64 b)
+{
+ return a % b;
+}
+#endif
+
+/* clang-format off */
+static SymbolMap target_sym_map[] = {
+ REG_COMMON_SYMBOLS
+ /* compiler-rt symbols that come from compiler(e.g. gcc) */
+ REG_SYM(__divdi3),
+ REG_SYM(__udivdi3),
+ REG_SYM(__moddi3),
+ REG_SYM(__umoddi3)
+};
+/* clang-format on */
+
+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;
+}
+
+void
+get_current_target(char *target_buf, uint32 target_buf_size)
+{
+ snprintf(target_buf, target_buf_size, "i386");
+}
+
+uint32
+get_plt_table_size()
+{
+ return 0;
+}
+
+void
+init_plt_table(uint8 *plt)
+{
+ (void)plt;
+}
+
+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_386_32:
+ {
+ intptr_t value;
+
+ CHECK_RELOC_OFFSET(sizeof(void *));
+ value = *(intptr_t *)(target_section_addr + (uint32)reloc_offset);
+ *(uintptr_t *)(target_section_addr + reloc_offset) =
+ (uintptr_t)symbol_addr + (intptr_t)reloc_addend
+ + value; /* S + A */
+ break;
+ }
+
+ /*
+ * Handle R_386_PLT32 like R_386_PC32 since it should be able to reach
+ * any 32 bit address
+ */
+ case R_386_PLT32:
+ case R_386_PC32:
+ {
+ int32 value;
+
+ CHECK_RELOC_OFFSET(sizeof(void *));
+ value = *(int32 *)(target_section_addr + (uint32)reloc_offset);
+ *(uint32 *)(target_section_addr + (uint32)reloc_offset) =
+ (uint32)((uintptr_t)symbol_addr + (intptr_t)reloc_addend
+ - (uintptr_t)(target_section_addr
+ + (uint32)reloc_offset)
+ + value); /* S + A - P */
+ 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;
+}
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_x86_64.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_x86_64.c
new file mode 100644
index 000000000..f4d8eeabd
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_x86_64.c
@@ -0,0 +1,266 @@
+/*
+ * Copyright (C) 2019 Intel Corporation. All rights reserved.
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+ */
+
+#include "aot_reloc.h"
+
+#if !defined(BH_PLATFORM_WINDOWS)
+#define R_X86_64_64 1 /* Direct 64 bit */
+#define R_X86_64_PC32 2 /* PC relative 32 bit signed */
+#define R_X86_64_PLT32 4 /* 32 bit PLT address */
+#define R_X86_64_32 10 /* Direct 32 bit zero extended */
+#define R_X86_64_32S 11 /* Direct 32 bit sign extended */
+#else
+#ifndef IMAGE_REL_AMD64_ADDR64
+#define IMAGE_REL_AMD64_ADDR64 1 /* The 64-bit VA of the relocation target */
+#define IMAGE_REL_AMD64_ADDR32 2 /* The 32-bit VA of the relocation target */
+/* clang-format off */
+#define IMAGE_REL_AMD64_REL32 4 /* The 32-bit relative address from
+ the byte following the relocation*/
+/* clang-format on */
+#endif
+#endif
+
+#if defined(BH_PLATFORM_WINDOWS)
+#pragma function(floor)
+#pragma function(ceil)
+#pragma function(floorf)
+#pragma function(ceilf)
+#endif
+
+/* clang-format off */
+static SymbolMap target_sym_map[] = {
+ REG_COMMON_SYMBOLS
+};
+/* clang-format on */
+
+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;
+}
+
+void
+get_current_target(char *target_buf, uint32 target_buf_size)
+{
+ snprintf(target_buf, target_buf_size, "x86_64");
+}
+
+static uint32
+get_plt_item_size()
+{
+ /* size of mov instruction and jmp instruction */
+ return 12;
+}
+
+uint32
+get_plt_table_size()
+{
+ uint32 size =
+ get_plt_item_size() * (sizeof(target_sym_map) / sizeof(SymbolMap));
+#if defined(OS_ENABLE_HW_BOUND_CHECK) && defined(BH_PLATFORM_WINDOWS)
+ size += get_plt_item_size() + sizeof(AOTUnwindInfo);
+#endif
+ return size;
+}
+
+void
+init_plt_table(uint8 *plt)
+{
+ uint32 i, num = sizeof(target_sym_map) / sizeof(SymbolMap);
+ uint8 *p;
+
+ for (i = 0; i < num; i++) {
+ p = plt;
+ /* mov symbol_addr, rax */
+ *p++ = 0x48;
+ *p++ = 0xB8;
+ *(uint64 *)p = (uint64)(uintptr_t)target_sym_map[i].symbol_addr;
+ p += sizeof(uint64);
+ /* jmp rax */
+ *p++ = 0xFF;
+ *p++ = 0xE0;
+ plt += get_plt_item_size();
+ }
+
+#if defined(OS_ENABLE_HW_BOUND_CHECK) && defined(BH_PLATFORM_WINDOWS)
+ p = plt;
+ /* mov exception_handler, rax */
+ *p++ = 0x48;
+ *p++ = 0xB8;
+ *(uint64 *)p = 0; /*(uint64)(uintptr_t)aot_exception_handler;*/
+ p += sizeof(uint64);
+ /* jmp rax */
+ *p++ = 0xFF;
+ *p++ = 0xE0;
+#endif
+}
+
+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) {
+#if !defined(BH_PLATFORM_WINDOWS)
+ case R_X86_64_64:
+#else
+ case IMAGE_REL_AMD64_ADDR64:
+#endif
+ {
+ intptr_t value;
+
+ CHECK_RELOC_OFFSET(sizeof(void *));
+ value = *(intptr_t *)(target_section_addr + (uint32)reloc_offset);
+ *(uintptr_t *)(target_section_addr + reloc_offset) =
+ (uintptr_t)symbol_addr + reloc_addend + value; /* S + A */
+ break;
+ }
+#if defined(BH_PLATFORM_WINDOWS)
+ case IMAGE_REL_AMD64_ADDR32:
+ {
+ int32 value;
+ uintptr_t target_addr;
+
+ CHECK_RELOC_OFFSET(sizeof(void *));
+ value = *(int32 *)(target_section_addr + (uint32)reloc_offset);
+ target_addr = (uintptr_t)symbol_addr + reloc_addend + value;
+ if ((int32)target_addr != target_addr) {
+ set_error_buf(error_buf, error_buf_size,
+ "AOT module load failed: "
+ "relocation truncated to fit "
+ "IMAGE_REL_AMD64_ADDR32 failed. "
+ "Try using wamrc with --size-level=1 option.");
+ return false;
+ }
+
+ *(int32 *)(target_section_addr + reloc_offset) = (int32)target_addr;
+ break;
+ }
+#endif
+#if !defined(BH_PLATFORM_WINDOWS)
+ case R_X86_64_PC32:
+ {
+ intptr_t target_addr = (intptr_t) /* S + A - P */
+ ((uintptr_t)symbol_addr + reloc_addend
+ - (uintptr_t)(target_section_addr + reloc_offset));
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+ if ((int32)target_addr != target_addr) {
+ set_error_buf(
+ error_buf, error_buf_size,
+ "AOT module load failed: "
+ "relocation truncated to fit R_X86_64_PC32 failed. "
+ "Try using wamrc with --size-level=1 option.");
+ return false;
+ }
+
+ *(int32 *)(target_section_addr + reloc_offset) = (int32)target_addr;
+ break;
+ }
+ case R_X86_64_32:
+ case R_X86_64_32S:
+ {
+ char buf[128];
+ uintptr_t target_addr = /* S + A */
+ (uintptr_t)symbol_addr + reloc_addend;
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+
+ if ((reloc_type == R_X86_64_32
+ && (uint32)target_addr != (uint64)target_addr)
+ || (reloc_type == R_X86_64_32S
+ && (int32)target_addr != (int64)target_addr)) {
+ snprintf(buf, sizeof(buf),
+ "AOT module load failed: "
+ "relocation truncated to fit %s failed. "
+ "Try using wamrc with --size-level=1 option.",
+ reloc_type == R_X86_64_32 ? "R_X86_64_32"
+ : "R_X86_64_32S");
+ set_error_buf(error_buf, error_buf_size, buf);
+ return false;
+ }
+
+ *(int32 *)(target_section_addr + reloc_offset) = (int32)target_addr;
+ break;
+ }
+#endif
+#if !defined(BH_PLATFORM_WINDOWS)
+ case R_X86_64_PLT32:
+#else
+ case IMAGE_REL_AMD64_REL32:
+#endif
+ {
+ uint8 *plt;
+ intptr_t target_addr = 0;
+
+ CHECK_RELOC_OFFSET(sizeof(int32));
+
+ if (symbol_index >= 0) {
+ plt = (uint8 *)module->code + module->code_size
+ - get_plt_table_size()
+ + get_plt_item_size() * symbol_index;
+ target_addr = (intptr_t) /* L + A - P */
+ ((uintptr_t)plt + reloc_addend
+ - (uintptr_t)(target_section_addr + reloc_offset));
+ }
+ else {
+ target_addr = (intptr_t) /* L + A - P */
+ ((uintptr_t)symbol_addr + reloc_addend
+ - (uintptr_t)(target_section_addr + reloc_offset));
+ }
+
+#if defined(BH_PLATFORM_WINDOWS)
+ target_addr -= sizeof(int32);
+#endif
+ if ((int32)target_addr != target_addr) {
+ set_error_buf(error_buf, error_buf_size,
+ "AOT module load failed: "
+ "relocation truncated to fit "
+#if !defined(BH_PLATFORM_WINDOWS)
+ "R_X86_64_PLT32 failed. "
+#else
+ "IMAGE_REL_AMD64_32 failed."
+#endif
+ "Try using wamrc with --size-level=1 option.");
+ return false;
+ }
+ *(int32 *)(target_section_addr + reloc_offset) = (int32)target_addr;
+ 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;
+}
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_xtensa.c b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_xtensa.c
new file mode 100644
index 000000000..3327c396f
--- /dev/null
+++ b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/arch/aot_reloc_xtensa.c
@@ -0,0 +1,302 @@
+/*
+ * Copyright (C) 2019 Intel Corporation. All rights reserved.
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+ */
+
+#include "aot_reloc.h"
+
+#define R_XTENSA_32 1 /* Direct 32 bit */
+#define R_XTENSA_SLOT0_OP 20 /* PC relative */
+
+/* clang-format off */
+/* for soft-float */
+void __floatsidf();
+void __divdf3();
+void __ltdf2();
+
+/* for mul32 */
+void __mulsi3();
+void __muldi3();
+
+void __modsi3();
+
+void __divdi3();
+
+void __udivdi3();
+void __unorddf2();
+void __adddf3();
+void __eqdf2();
+void __muldf3();
+void __gedf2();
+void __ledf2();
+void __fixunsdfsi();
+void __floatunsidf();
+void __subdf3();
+void __nedf2();
+void __fixdfsi();
+void __moddi3();
+void __extendsfdf2();
+void __truncdfsf2();
+void __gtdf2();
+void __umoddi3();
+void __floatdidf();
+void __divsf3();
+void __fixdfdi();
+void __floatundidf();
+
+
+static SymbolMap target_sym_map[] = {
+ REG_COMMON_SYMBOLS
+
+ /* API's for soft-float */
+ /* TODO: only register these symbols when Floating-Point Coprocessor
+ * Option is not enabled */
+ REG_SYM(__floatsidf),
+ REG_SYM(__divdf3),
+ REG_SYM(__ltdf2),
+
+ /* API's for 32-bit integer multiply */
+ /* TODO: only register these symbols when 32-bit Integer Multiply Option
+ * is not enabled */
+ REG_SYM(__mulsi3),
+ REG_SYM(__muldi3),
+
+ REG_SYM(__modsi3),
+ REG_SYM(__divdi3),
+
+ REG_SYM(__udivdi3),
+ REG_SYM(__unorddf2),
+ REG_SYM(__adddf3),
+ REG_SYM(__eqdf2),
+ REG_SYM(__muldf3),
+ REG_SYM(__gedf2),
+ REG_SYM(__ledf2),
+ REG_SYM(__fixunsdfsi),
+ REG_SYM(__floatunsidf),
+ REG_SYM(__subdf3),
+ REG_SYM(__nedf2),
+ REG_SYM(__fixdfsi),
+ REG_SYM(__moddi3),
+ REG_SYM(__extendsfdf2),
+ REG_SYM(__truncdfsf2),
+ REG_SYM(__gtdf2),
+ REG_SYM(__umoddi3),
+ REG_SYM(__floatdidf),
+ REG_SYM(__divsf3),
+ REG_SYM(__fixdfdi),
+ REG_SYM(__floatundidf),
+};
+/* clang-format on */
+
+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;
+}
+
+void
+get_current_target(char *target_buf, uint32 target_buf_size)
+{
+ snprintf(target_buf, target_buf_size, "xtensa");
+}
+
+static uint32
+get_plt_item_size()
+{
+ return 0;
+}
+
+void
+init_plt_table(uint8 *plt)
+{
+ (void)plt;
+}
+
+uint32
+get_plt_table_size()
+{
+ return get_plt_item_size() * (sizeof(target_sym_map) / sizeof(SymbolMap));
+}
+
+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;
+}
+
+/*
+ * CPU like esp32 can read and write data through the instruction bus, but only
+ * in a word aligned manner; non-word-aligned access will cause a CPU exception.
+ * This function uses a world aligned manner to write 16bit value to instruction
+ * addreess.
+ */
+static void
+put_imm16_to_addr(int16 imm16, int16 *addr)
+{
+ int8 bytes[8];
+ int32 *addr_aligned1, *addr_aligned2;
+
+ addr_aligned1 = (int32 *)((intptr_t)addr & ~3);
+
+ if ((intptr_t)addr % 4 != 3) {
+ *(int32 *)bytes = *addr_aligned1;
+ *(int16 *)(bytes + ((intptr_t)addr % 4)) = imm16;
+ *addr_aligned1 = *(int32 *)bytes;
+ }
+ else {
+ addr_aligned2 = (int32 *)(((intptr_t)addr + 3) & ~3);
+ *(int32 *)bytes = *addr_aligned1;
+ *(int32 *)(bytes + 4) = *addr_aligned2;
+ *(int16 *)(bytes + 3) = imm16;
+ memcpy(addr_aligned1, bytes, 8);
+ }
+}
+
+static union {
+ int a;
+ char b;
+} __ue = { .a = 1 };
+
+#define is_little_endian() (__ue.b == 1)
+
+#if !defined(__packed)
+/*
+ * Note: This version check is a bit relaxed.
+ * The __packed__ attribute has been there since gcc 2 era.
+ */
+#if __GNUC__ >= 3
+#define __packed __attribute__((__packed__))
+#endif
+#endif
+
+typedef union {
+ struct l32r_le {
+ int8 other;
+ int16 imm16;
+ } __packed l;
+
+ struct l32r_be {
+ int16 imm16;
+ int8 other;
+ } __packed b;
+} l32r_insn_t;
+
+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_XTENSA_32:
+ {
+ uint8 *insn_addr = target_section_addr + reloc_offset;
+ int32 initial_addend;
+ /* (S + A) */
+ if ((intptr_t)insn_addr & 3) {
+ set_error_buf(error_buf, error_buf_size,
+ "AOT module load failed: "
+ "instruction address unaligned.");
+ return false;
+ }
+ CHECK_RELOC_OFFSET(4);
+ initial_addend = *(int32 *)insn_addr;
+ *(uintptr_t *)insn_addr = (uintptr_t)symbol_addr + initial_addend
+ + (intptr_t)reloc_addend;
+ break;
+ }
+
+ case R_XTENSA_SLOT0_OP:
+ {
+ uint8 *insn_addr = target_section_addr + reloc_offset;
+ /* Currently only l32r instruction generates R_XTENSA_SLOT0_OP
+ * relocation */
+ l32r_insn_t *l32r_insn = (l32r_insn_t *)insn_addr;
+ uint8 *reloc_addr;
+ int32 relative_offset /*, initial_addend */;
+ int16 imm16;
+
+ CHECK_RELOC_OFFSET(3); /* size of l32r instruction */
+
+ /*
+ imm16 = is_little_endian() ?
+ l32r_insn->l.imm16 : l32r_insn->b.imm16;
+ initial_addend = (int32)imm16 << 2;
+ */
+
+ reloc_addr =
+ (uint8 *)((uintptr_t)symbol_addr + (intptr_t)reloc_addend);
+
+ if ((intptr_t)reloc_addr & 3) {
+ set_error_buf(error_buf, error_buf_size,
+ "AOT module load failed: "
+ "relocation address unaligned.");
+ return false;
+ }
+
+ relative_offset =
+ (int32)((intptr_t)reloc_addr
+ - (((intptr_t)insn_addr + 3) & ~(intptr_t)3));
+ /* relative_offset += initial_addend; */
+
+ /* check relative offset boundary */
+ if (relative_offset < -256 * BH_KB || relative_offset > -4) {
+ set_error_buf(error_buf, error_buf_size,
+ "AOT module load failed: "
+ "target address out of range.\n"
+ "Try using `wamrc --size-level=0` to generate "
+ ".literal island.");
+ return false;
+ }
+
+ imm16 = (int16)(relative_offset >> 2);
+
+ /* write back the imm16 to the l32r instruction */
+
+ /* GCC >= 9 complains if we have a pointer that could be
+ * unaligned. This can happen because the struct is packed.
+ * These pragma are to suppress the warnings because the
+ * function put_imm16_to_addr already handles unaligned
+ * pointers correctly. */
+#if __GNUC__ >= 9
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Waddress-of-packed-member"
+#endif
+ if (is_little_endian())
+ put_imm16_to_addr(imm16, &l32r_insn->l.imm16);
+ else
+ put_imm16_to_addr(imm16, &l32r_insn->b.imm16);
+#if __GNUC__ >= 9
+#pragma GCC diagnostic pop
+#endif
+
+ break;
+ }
+
+ default:
+ if (error_buf != NULL)
+ snprintf(error_buf, error_buf_size,
+ "Load relocation section failed: "
+ "invalid relocation type %d.",
+ (int)reloc_type);
+ return false;
+ }
+
+ return true;
+}