1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Keep track of local types in the context

This commit is contained in:
Maxime Chevalier-Boisvert 2021-04-06 14:44:28 -04:00 committed by Alan Wu
parent e98d2c5ec8
commit cbbae12a96
3 changed files with 74 additions and 11 deletions

View file

@ -486,11 +486,12 @@ gen_getlocal_wc0(jitstate_t* jit, ctx_t* ctx)
int32_t local_idx = (int32_t)jit_get_arg(jit, 0); int32_t local_idx = (int32_t)jit_get_arg(jit, 0);
const int32_t offs = -(SIZEOF_VALUE * local_idx); const int32_t offs = -(SIZEOF_VALUE * local_idx);
// Load the local from the block // Load the local from the EP
mov(cb, REG0, mem_opnd(64, REG0, offs)); mov(cb, REG0, mem_opnd(64, REG0, offs));
// Write the local at SP // Write the local at SP
x86opnd_t stack_top = ctx_stack_push(ctx, TYPE_UNKNOWN); x86opnd_t stack_top = ctx_stack_push_local(ctx, local_idx);
//x86opnd_t stack_top = ctx_stack_push(ctx, TYPE_UNKNOWN);
mov(cb, stack_top, REG0); mov(cb, stack_top, REG0);
return YJIT_KEEP_COMPILING; return YJIT_KEEP_COMPILING;
@ -539,6 +540,8 @@ gen_setlocal_wc0(jitstate_t* jit, ctx_t* ctx)
} }
*/ */
int32_t local_idx = (int32_t)jit_get_arg(jit, 0);
// Load environment pointer EP from CFP // Load environment pointer EP from CFP
mov(cb, REG0, member_opnd(REG_CFP, rb_control_frame_t, ep)); mov(cb, REG0, member_opnd(REG_CFP, rb_control_frame_t, ep));
@ -552,12 +555,15 @@ gen_setlocal_wc0(jitstate_t* jit, ctx_t* ctx)
// if (flags & VM_ENV_FLAG_WB_REQUIRED) != 0 // if (flags & VM_ENV_FLAG_WB_REQUIRED) != 0
jnz_ptr(cb, side_exit); jnz_ptr(cb, side_exit);
// Set the type of the local variable in the context
val_type_t temp_type = ctx_get_temp_type(ctx, 0);
ctx_set_local_type(ctx, local_idx, temp_type);
// Pop the value to write from the stack // Pop the value to write from the stack
x86opnd_t stack_top = ctx_stack_pop(ctx, 1); x86opnd_t stack_top = ctx_stack_pop(ctx, 1);
mov(cb, REG1, stack_top); mov(cb, REG1, stack_top);
// Write the value at the environment pointer // Write the value at the environment pointer
int32_t local_idx = (int32_t)jit_get_arg(jit, 0);
const int32_t offs = -8 * local_idx; const int32_t offs = -8 * local_idx;
mov(cb, mem_opnd(64, REG0, offs), REG1); mov(cb, mem_opnd(64, REG0, offs), REG1);
@ -1326,9 +1332,12 @@ gen_jump(jitstate_t* jit, ctx_t* ctx)
return YJIT_END_BLOCK; return YJIT_END_BLOCK;
} }
// Guard that recv_opnd has the same class as known_klass. Recompile as contingency if possible, or take side exit a last resort. /*
Guard that a stack operand has the same class as known_klass.
Recompile as contingency if possible, or take side exit a last resort.
*/
static bool static bool
jit_guard_known_klass(jitstate_t *jit, const ctx_t *recompile_context, VALUE known_klass, x86opnd_t recv_opnd, const int max_chain_depth, uint8_t *side_exit) jit_guard_known_klass(jitstate_t *jit, ctx_t* ctx, VALUE known_klass, uint32_t stack_idx, const int max_chain_depth, uint8_t *side_exit)
{ {
// Can't guard for for these classes because some of they are sometimes immediate (special const). // Can't guard for for these classes because some of they are sometimes immediate (special const).
// Can remove this by adding appropriate dynamic checks. // Can remove this by adding appropriate dynamic checks.
@ -1341,7 +1350,10 @@ jit_guard_known_klass(jitstate_t *jit, const ctx_t *recompile_context, VALUE kno
return false; return false;
} }
val_type_t temp_type = ctx_get_temp_type(ctx, stack_idx);
// Check that the receiver is a heap object // Check that the receiver is a heap object
if (!temp_type.is_heap)
{ {
test(cb, REG0, imm_opnd(RUBY_IMMEDIATE_MASK)); test(cb, REG0, imm_opnd(RUBY_IMMEDIATE_MASK));
jnz_ptr(cb, side_exit); jnz_ptr(cb, side_exit);
@ -1349,6 +1361,8 @@ jit_guard_known_klass(jitstate_t *jit, const ctx_t *recompile_context, VALUE kno
je_ptr(cb, side_exit); je_ptr(cb, side_exit);
cmp(cb, REG0, imm_opnd(Qnil)); cmp(cb, REG0, imm_opnd(Qnil));
je_ptr(cb, side_exit); je_ptr(cb, side_exit);
ctx_set_temp_type(ctx, stack_idx, TYPE_HEAP);
} }
// Pointer to the klass field of the receiver &(recv->klass) // Pointer to the klass field of the receiver &(recv->klass)
@ -1357,7 +1371,7 @@ jit_guard_known_klass(jitstate_t *jit, const ctx_t *recompile_context, VALUE kno
// Bail if receiver class is different from compile-time call cache class // Bail if receiver class is different from compile-time call cache class
jit_mov_gc_ptr(jit, cb, REG1, known_klass); jit_mov_gc_ptr(jit, cb, REG1, known_klass);
cmp(cb, klass_opnd, REG1); cmp(cb, klass_opnd, REG1);
jit_chain_guard(JCC_JNE, jit, recompile_context, max_chain_depth, side_exit); jit_chain_guard(JCC_JNE, jit, ctx, max_chain_depth, side_exit);
return true; return true;
} }
@ -1759,7 +1773,7 @@ gen_opt_send_without_block(jitstate_t* jit, ctx_t* ctx)
// Points to the receiver operand on the stack // Points to the receiver operand on the stack
x86opnd_t recv = ctx_stack_opnd(ctx, argc); x86opnd_t recv = ctx_stack_opnd(ctx, argc);
mov(cb, REG0, recv); mov(cb, REG0, recv);
if (!jit_guard_known_klass(jit, ctx, comptime_recv_klass, REG0, OSWB_MAX_DEPTH, side_exit)) { if (!jit_guard_known_klass(jit, ctx, comptime_recv_klass, argc, OSWB_MAX_DEPTH, side_exit)) {
return YJIT_CANT_COMPILE; return YJIT_CANT_COMPILE;
} }

View file

@ -145,13 +145,60 @@ ctx_get_temp_type(const ctx_t* ctx, size_t idx)
temp_mapping_t mapping = ctx->temp_mapping[ctx->stack_size - 1 - idx]; temp_mapping_t mapping = ctx->temp_mapping[ctx->stack_size - 1 - idx];
if (mapping.kind == TEMP_SELF) switch (mapping.kind)
{
case TEMP_SELF:
return ctx->self_type; return ctx->self_type;
else if (mapping.kind == TEMP_STACK)
case TEMP_STACK:
return ctx->temp_types[ctx->stack_size - 1 - idx]; return ctx->temp_types[ctx->stack_size - 1 - idx];
RUBY_ASSERT(false); case TEMP_LOCAL:
return TYPE_UNKNOWN; RUBY_ASSERT(mapping.idx < MAX_LOCAL_TYPES);
return ctx->local_types[mapping.idx];
}
rb_bug("unreachable");
}
/**
Set the type of a value in the temporary stack
*/
void ctx_set_temp_type(ctx_t* ctx, size_t idx, val_type_t type)
{
RUBY_ASSERT(idx < ctx->stack_size);
if (ctx->stack_size > MAX_TEMP_TYPES)
return;
temp_mapping_t mapping = ctx->temp_mapping[ctx->stack_size - 1 - idx];
switch (mapping.kind)
{
case TEMP_SELF:
ctx->self_type = type;
break;
case TEMP_STACK:
ctx->temp_types[ctx->stack_size - 1 - idx] = type;
break;
case TEMP_LOCAL:
RUBY_ASSERT(mapping.idx < MAX_LOCAL_TYPES);
ctx->local_types[mapping.idx] = type;
break;
}
}
/**
Set the type of a local variable
*/
void ctx_set_local_type(ctx_t* ctx, size_t idx, val_type_t type)
{
if (ctx->stack_size > MAX_LOCAL_TYPES)
return;
ctx->local_types[idx] = type;
} }
/* /*

View file

@ -222,6 +222,8 @@ x86opnd_t ctx_stack_push_local(ctx_t* ctx, size_t local_idx);
x86opnd_t ctx_stack_pop(ctx_t* ctx, size_t n); x86opnd_t ctx_stack_pop(ctx_t* ctx, size_t n);
x86opnd_t ctx_stack_opnd(ctx_t* ctx, int32_t idx); x86opnd_t ctx_stack_opnd(ctx_t* ctx, int32_t idx);
val_type_t ctx_get_temp_type(const ctx_t* ctx, size_t idx); val_type_t ctx_get_temp_type(const ctx_t* ctx, size_t idx);
void ctx_set_temp_type(ctx_t* ctx, size_t idx, val_type_t type);
void ctx_set_local_type(ctx_t* ctx, size_t idx, val_type_t type);
int ctx_diff(const ctx_t* src, const ctx_t* dst); 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* find_block_version(blockid_t blockid, const ctx_t* ctx);