mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-08 16:05:07 +00:00
![Wenyong Huang](/assets/img/avatar_default.png)
Re-implement aot call_indirect opcode translation: when calling non-import function, translate it by LLVM call IR to call the function in AOTed code, so as to avoid calling runtime aot_call_indirect API which is much slower. For import function, keep calling aot_call_indirect API due to the possible pointer/string argument conversion. And add prompt info while app heap is corrupted, change emit_leb to emit_uint32 inter fast-interp to refine footprint. Signed-off-by: Wenyong Huang <wenyong.huang@intel.com>
54 lines
1.2 KiB
C
54 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#ifndef __MEM_ALLOC_H
|
|
#define __MEM_ALLOC_H
|
|
|
|
#include "bh_platform.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void *mem_allocator_t;
|
|
|
|
mem_allocator_t
|
|
mem_allocator_create(void *mem, uint32_t size);
|
|
|
|
mem_allocator_t
|
|
mem_allocator_create_with_struct_and_pool(void *struct_buf,
|
|
uint32_t struct_buf_size,
|
|
void *pool_buf,
|
|
uint32_t pool_buf_size);
|
|
|
|
void
|
|
mem_allocator_destroy(mem_allocator_t allocator);
|
|
|
|
uint32
|
|
mem_allocator_get_heap_struct_size(void);
|
|
|
|
void *
|
|
mem_allocator_malloc(mem_allocator_t allocator, uint32_t size);
|
|
|
|
void *
|
|
mem_allocator_realloc(mem_allocator_t allocator, void *ptr, uint32_t size);
|
|
|
|
void
|
|
mem_allocator_free(mem_allocator_t allocator, void *ptr);
|
|
|
|
int
|
|
mem_allocator_migrate(mem_allocator_t allocator,
|
|
char *pool_buf_new, uint32 pool_buf_size);
|
|
|
|
bool
|
|
mem_allocator_is_heap_corrupted(mem_allocator_t allocator);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* #ifndef __MEM_ALLOC_H */
|
|
|