mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
c02517bacb
* Tie lifetime of uJIT blocks to iseqs Blocks weren't being freed when iseqs are collected. * Add rb_dary. Use it for method dependency table * Keep track of blocks per iseq Remove global version_tbl * Block version bookkeeping fix * dary -> darray * free ujit_blocks * comment about size of ujit_blocks
167 lines
3.9 KiB
C
167 lines
3.9 KiB
C
#ifndef UJIT_CORE_H
|
|
#define UJIT_CORE_H 1
|
|
|
|
#include "stddef.h"
|
|
#include "ujit_asm.h"
|
|
|
|
// Register uJIT receives the CFP and EC into
|
|
#define REG_CFP RDI
|
|
#define REG_EC RSI
|
|
|
|
// Register uJIT loads the SP into
|
|
#define REG_SP RDX
|
|
|
|
// Scratch registers used by uJIT
|
|
#define REG0 RAX
|
|
#define REG1 RCX
|
|
#define REG0_32 EAX
|
|
#define REG1_32 ECX
|
|
|
|
// Maximum number of temp value types we keep track of
|
|
#define MAX_TEMP_TYPES 8
|
|
|
|
/**
|
|
Code generation context
|
|
Contains information we can use to optimize code
|
|
*/
|
|
typedef struct CtxStruct
|
|
{
|
|
// Temporary variable types we keep track of
|
|
// Values are `ruby_value_type`
|
|
// T_NONE==0 is the unknown type
|
|
uint8_t temp_types[MAX_TEMP_TYPES];
|
|
|
|
// Number of values currently on the temporary stack
|
|
uint16_t stack_size;
|
|
|
|
// Offset of the JIT SP relative to the interpreter SP
|
|
int16_t sp_offset;
|
|
|
|
// Whether we know self is a heap object
|
|
bool self_is_object : 1;
|
|
|
|
} ctx_t;
|
|
|
|
// Tuple of (iseq, idx) used to idenfity basic blocks
|
|
typedef struct BlockId
|
|
{
|
|
// Instruction sequence
|
|
const rb_iseq_t *iseq;
|
|
|
|
// Index in the iseq where the block starts
|
|
uint32_t idx;
|
|
|
|
} blockid_t;
|
|
|
|
// Null block id constant
|
|
static const blockid_t BLOCKID_NULL = { 0, 0 };
|
|
|
|
/// Branch code shape enumeration
|
|
enum uint8_t
|
|
{
|
|
SHAPE_NEXT0, // Target 0 is next
|
|
SHAPE_NEXT1, // Target 1 is next
|
|
SHAPE_DEFAULT // Neither target is next
|
|
};
|
|
|
|
// Branch code generation function signature
|
|
typedef void (*branchgen_fn)(codeblock_t* cb, uint8_t* target0, uint8_t* target1, uint8_t shape);
|
|
|
|
/**
|
|
Store info about an outgoing branch in a code segment
|
|
Note: care must be taken to minimize the size of branch_t objects
|
|
*/
|
|
typedef struct BranchEntry
|
|
{
|
|
// Positions where the generated code starts and ends
|
|
uint32_t start_pos;
|
|
uint32_t end_pos;
|
|
|
|
// Context right after the branch instruction
|
|
ctx_t src_ctx;
|
|
|
|
// Branch target blocks and their contexts
|
|
blockid_t targets[2];
|
|
ctx_t target_ctxs[2];
|
|
|
|
// Jump target addresses
|
|
uint8_t* dst_addrs[2];
|
|
|
|
// Branch code generation function
|
|
branchgen_fn gen_fn;
|
|
|
|
// Shape of the branch
|
|
uint8_t shape;
|
|
|
|
} branch_t;
|
|
|
|
/**
|
|
Basic block version
|
|
Represents a portion of an iseq compiled with a given context
|
|
Note: care must be taken to minimize the size of block_t objects
|
|
*/
|
|
typedef struct ujit_block_version
|
|
{
|
|
// Bytecode sequence (iseq, idx) this is a version of
|
|
blockid_t blockid;
|
|
|
|
// Index one past the last instruction in the iseq
|
|
uint32_t end_idx;
|
|
|
|
// Context at the start of the block
|
|
ctx_t ctx;
|
|
|
|
// Positions where the generated code starts and ends
|
|
uint32_t start_pos;
|
|
uint32_t end_pos;
|
|
|
|
// List of incoming branches indices
|
|
uint32_t *incoming;
|
|
uint32_t num_incoming;
|
|
|
|
// Next block version for this blockid (singly-linked list)
|
|
struct ujit_block_version *next;
|
|
|
|
// List node for all block versions in an iseq
|
|
struct list_node iseq_block_node;
|
|
|
|
// GC managed objects that this block depend on
|
|
struct {
|
|
VALUE cc;
|
|
VALUE cme;
|
|
VALUE iseq;
|
|
} dependencies;
|
|
} block_t;
|
|
|
|
// Context object methods
|
|
x86opnd_t ctx_sp_opnd(ctx_t* ctx, int32_t offset_bytes);
|
|
x86opnd_t ctx_stack_push(ctx_t* ctx, int type);
|
|
x86opnd_t ctx_stack_pop(ctx_t* ctx, size_t n);
|
|
x86opnd_t ctx_stack_opnd(ctx_t* ctx, int32_t idx);
|
|
int ctx_get_top_type(ctx_t* ctx);
|
|
int ctx_diff(const ctx_t* src, const ctx_t* dst);
|
|
|
|
block_t* find_block_version(blockid_t blockid, const ctx_t* ctx);
|
|
block_t* gen_block_version(blockid_t blockid, const ctx_t* ctx);
|
|
uint8_t* gen_entry_point(const rb_iseq_t *iseq, uint32_t insn_idx);
|
|
void ujit_free_block(block_t *block);
|
|
|
|
void gen_branch(
|
|
const ctx_t* src_ctx,
|
|
blockid_t target0,
|
|
const ctx_t* ctx0,
|
|
blockid_t target1,
|
|
const ctx_t* ctx1,
|
|
branchgen_fn gen_fn
|
|
);
|
|
|
|
void gen_direct_jump(
|
|
const ctx_t* ctx,
|
|
blockid_t target0
|
|
);
|
|
|
|
void invalidate_block_version(block_t* block);
|
|
|
|
void ujit_init_core(void);
|
|
|
|
#endif // #ifndef UJIT_CORE_H
|