| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
- #ifndef _JIT_EMIT_CONVERSION_H_
- #define _JIT_EMIT_CONVERSION_H_
- #include "../jit_compiler.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- bool
- jit_compile_op_i32_wrap_i64(JitCompContext *cc);
- bool
- jit_compile_op_i32_trunc_f32(JitCompContext *cc, bool sign, bool sat);
- bool
- jit_compile_op_i32_trunc_f64(JitCompContext *cc, bool sign, bool sat);
- bool
- jit_compile_op_i64_extend_i32(JitCompContext *comp_ctx, bool sign);
- bool
- jit_compile_op_i64_extend_i64(JitCompContext *comp_ctx, int8 bitwidth);
- bool
- jit_compile_op_i32_extend_i32(JitCompContext *comp_ctx, int8 bitwidth);
- bool
- jit_compile_op_i64_trunc_f32(JitCompContext *cc, bool sign, bool sat);
- bool
- jit_compile_op_i64_trunc_f64(JitCompContext *cc, bool sign, bool sat);
- bool
- jit_compile_op_f32_convert_i32(JitCompContext *comp_ctx, bool sign);
- bool
- jit_compile_op_f32_convert_i64(JitCompContext *comp_ctx, bool sign);
- bool
- jit_compile_op_f32_demote_f64(JitCompContext *comp_ctx);
- bool
- jit_compile_op_f64_convert_i32(JitCompContext *comp_ctx, bool sign);
- bool
- jit_compile_op_f64_convert_i64(JitCompContext *comp_ctx, bool sign);
- bool
- jit_compile_op_f64_promote_f32(JitCompContext *comp_ctx);
- bool
- jit_compile_op_i64_reinterpret_f64(JitCompContext *comp_ctx);
- bool
- jit_compile_op_i32_reinterpret_f32(JitCompContext *comp_ctx);
- bool
- jit_compile_op_f64_reinterpret_i64(JitCompContext *comp_ctx);
- bool
- jit_compile_op_f32_reinterpret_i32(JitCompContext *comp_ctx);
- #ifdef __cplusplus
- } /* end of extern "C" */
- #endif
- #endif /* end of _JIT_EMIT_CONVERSION_H_ */
|