ruby--ruby/ujit_codegen.h

50 lines
973 B
C
Raw Normal View History

#ifndef UJIT_CODEGEN_H
#define UJIT_CODEGEN_H 1
#include "stddef.h"
#include "ujit_core.h"
2020-12-17 02:45:51 +00:00
// Code blocks we generate code into
codeblock_t* cb;
codeblock_t* ocb;
// Code generation state
typedef struct JITState
{
2021-01-12 22:03:54 +00:00
// Block version being compiled
block_t* block;
2021-01-12 22:03:54 +00:00
// Instruction sequence this is associated with
const rb_iseq_t *iseq;
// Index of the current instruction being compiled
uint32_t insn_idx;
// Current PC
VALUE *pc;
} jitstate_t;
2020-12-16 22:07:18 +00:00
// Code generation function signature
typedef bool (*codegen_fn)(jitstate_t* jit, ctx_t* ctx);
2020-12-16 22:07:18 +00:00
// Meta-information associated with a given opcode
typedef struct OpDesc
{
// Code generation function
codegen_fn gen_fn;
// Indicates that this is a branch instruction
// which terminates a block
bool is_branch;
} opdesc_t;
uint8_t* ujit_entry_prologue();
void ujit_gen_block(ctx_t* ctx, block_t* block);
void ujit_init_codegen(void);
#endif // #ifndef UJIT_CODEGEN_H