| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
- #ifndef _AOT_EMIT_MEMORY_H_
- #define _AOT_EMIT_MEMORY_H_
- #include "aot_compiler.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- bool
- aot_compile_op_i32_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset, uint32 bytes, bool sign);
- bool
- aot_compile_op_i64_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset, uint32 bytes, bool sign);
- bool
- aot_compile_op_f32_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset);
- bool
- aot_compile_op_f64_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset);
- bool
- aot_compile_op_i32_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset, uint32 bytes);
- bool
- aot_compile_op_i64_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset, uint32 bytes);
- bool
- aot_compile_op_f32_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset);
- bool
- aot_compile_op_f64_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset);
- bool
- aot_compile_op_memory_size(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx);
- bool
- aot_compile_op_memory_grow(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx);
- #if WASM_ENABLE_BULK_MEMORY != 0
- bool
- aot_compile_op_memory_init(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 seg_index);
- bool
- aot_compile_op_data_drop(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 seg_index);
- bool
- aot_compile_op_memory_copy(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx);
- bool
- aot_compile_op_memory_fill(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx);
- #endif
- #ifdef __cplusplus
- } /* end of extern "C" */
- #endif
- #endif /* end of _AOT_EMIT_MEMORY_H_ */
|