mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-14 21:51:27 +00:00

Implement part of codegen and fix some frontend issues Add asmjit to emit native code and add zydis to disassemble native code Can successfully run some simple cases
148 lines
2.9 KiB
C
148 lines
2.9 KiB
C
/*
|
|
* Copyright (C) 2021 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#ifndef _JIT_COMPILER_H_
|
|
#define _JIT_COMPILER_H_
|
|
|
|
#include "bh_platform.h"
|
|
#include "../interpreter/wasm_runtime.h"
|
|
#include "jit_ir.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct JitGlobals {
|
|
/* Compiler pass sequence, the last element must be 0 */
|
|
const uint8 *passes;
|
|
/* Code cache size. */
|
|
uint32 code_cache_size;
|
|
char *return_to_interp_from_jitted;
|
|
} JitGlobals;
|
|
|
|
/**
|
|
* Actions the interpreter should do when JITed code returns to
|
|
* interpreter.
|
|
*/
|
|
typedef enum JitInterpAction {
|
|
JIT_INTERP_ACTION_NORMAL, /* normal execution */
|
|
JIT_INTERP_ACTION_THROWN, /* exception was thrown */
|
|
JIT_INTERP_ACTION_CALL /* call wasm function */
|
|
} JitInterpAction;
|
|
|
|
/**
|
|
* Information exchanged between JITed code and interpreter.
|
|
*/
|
|
typedef struct JitInterpSwitchInfo {
|
|
/* Points to the frame that is passed to JITed code and the frame
|
|
that is returned from JITed code */
|
|
void *frame;
|
|
|
|
/* Output values from JITed code of different actions */
|
|
union {
|
|
/* IP and SP offsets for NORMAL */
|
|
struct {
|
|
int32 ip;
|
|
int32 sp;
|
|
} normal;
|
|
|
|
/* Function called from JITed code for CALL */
|
|
struct {
|
|
void *function;
|
|
} call;
|
|
|
|
/* Returned integer and/or floating point values for RETURN. This
|
|
is also used to pass return values from interpreter to JITed
|
|
code if the caller is in JITed code and the callee is in
|
|
interpreter. */
|
|
struct {
|
|
uint32 ival[2];
|
|
uint32 fval[2];
|
|
uint32 last_return_type;
|
|
} ret;
|
|
} out;
|
|
} JitInterpSwitchInfo;
|
|
|
|
bool
|
|
jit_compiler_init();
|
|
|
|
void
|
|
jit_compiler_destroy();
|
|
|
|
JitGlobals *
|
|
jit_compiler_get_jit_globals();
|
|
|
|
const char *
|
|
jit_compiler_get_pass_name(unsigned i);
|
|
|
|
bool
|
|
jit_compiler_compile(WASMModule *module, uint32 func_idx);
|
|
|
|
bool
|
|
jit_compiler_compile_all(WASMModule *module);
|
|
|
|
int
|
|
jit_interp_switch_to_jitted(void *self, JitInterpSwitchInfo *info, void *pc);
|
|
|
|
/*
|
|
* Pass declarations:
|
|
*/
|
|
|
|
/**
|
|
* Dump the compilation context.
|
|
*/
|
|
bool
|
|
jit_pass_dump(JitCompContext *cc);
|
|
|
|
/**
|
|
* Update CFG (usually before dump for better readability).
|
|
*/
|
|
bool
|
|
jit_pass_update_cfg(JitCompContext *cc);
|
|
|
|
/**
|
|
* Translate profiling result into MIR.
|
|
*/
|
|
bool
|
|
jit_pass_frontend(JitCompContext *cc);
|
|
|
|
#if 0
|
|
/**
|
|
* Convert MIR to LIR.
|
|
*/
|
|
bool
|
|
jit_pass_lower_fe(JitCompContext *cc);
|
|
#endif
|
|
|
|
/**
|
|
* Lower unsupported operations into supported ones.
|
|
*/
|
|
bool
|
|
jit_pass_lower_cg(JitCompContext *cc);
|
|
|
|
/**
|
|
* Register allocation.
|
|
*/
|
|
bool
|
|
jit_pass_regalloc(JitCompContext *cc);
|
|
|
|
/**
|
|
* Native code generation.
|
|
*/
|
|
bool
|
|
jit_pass_codegen(JitCompContext *cc);
|
|
|
|
/**
|
|
* Register the jitted code so that it can be executed.
|
|
*/
|
|
bool
|
|
jit_pass_register_jitted_code(JitCompContext *cc);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* end of _JIT_COMPILER_H_ */
|