mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-07 07:25:12 +00:00
144 lines
3.0 KiB
C
144 lines
3.0 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;
|
||
|
char *return_to_interp_from_jitted;
|
||
|
} JitGlobals;
|
||
|
|
||
|
/**
|
||
|
* Actions the interpreter should do when jitted 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 jitted code and interpreter.
|
||
|
*/
|
||
|
typedef struct JitInterpSwitchInfo {
|
||
|
/* Points to the frame that is passed to jitted code and the frame
|
||
|
that is returned from jitted code */
|
||
|
void *frame;
|
||
|
|
||
|
/* Output values from jitted code of different actions */
|
||
|
union {
|
||
|
/* IP and SP offsets for NORMAL */
|
||
|
struct {
|
||
|
int32 ip;
|
||
|
int32 sp;
|
||
|
} normal;
|
||
|
|
||
|
/* Function called from jitted 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 jitted
|
||
|
code if the caller is in jitted code and the callee is in
|
||
|
interpreter. */
|
||
|
struct {
|
||
|
uint32 ival[2];
|
||
|
uint32 fval[2];
|
||
|
uint32 last_return_type;
|
||
|
} ret;
|
||
|
} out;
|
||
|
} JitInterpSwitchInfo;
|
||
|
|
||
|
/* Jit compiler options */
|
||
|
typedef struct JitCompOptions {
|
||
|
uint32 code_cache_size;
|
||
|
uint32 opt_level;
|
||
|
} JitCompOptions;
|
||
|
|
||
|
bool
|
||
|
jit_compiler_init(const JitCompOptions *option);
|
||
|
|
||
|
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);
|
||
|
|
||
|
/**
|
||
|
* 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_ */
|