2020-09-10 17:20:46 -04:00
|
|
|
#include <assert.h>
|
|
|
|
#include "insns.inc"
|
|
|
|
#include "internal.h"
|
|
|
|
#include "vm_core.h"
|
2020-10-15 09:06:42 -04:00
|
|
|
#include "vm_sync.h"
|
2020-09-10 17:20:46 -04:00
|
|
|
#include "vm_callinfo.h"
|
|
|
|
#include "builtin.h"
|
2020-10-13 11:15:22 -04:00
|
|
|
#include "internal/compile.h"
|
2020-11-10 15:35:55 -05:00
|
|
|
#include "internal/class.h"
|
2020-09-10 17:20:46 -04:00
|
|
|
#include "insns_info.inc"
|
2020-12-08 16:54:41 -05:00
|
|
|
#include "ujit.h"
|
|
|
|
#include "ujit_iface.h"
|
|
|
|
#include "ujit_core.h"
|
|
|
|
#include "ujit_codegen.h"
|
2020-09-10 17:20:46 -04:00
|
|
|
#include "ujit_asm.h"
|
2020-09-17 17:09:42 -04:00
|
|
|
#include "ujit_utils.h"
|
2020-09-10 17:20:46 -04:00
|
|
|
|
2020-09-15 17:04:33 -04:00
|
|
|
// Map from YARV opcodes to code generation functions
|
|
|
|
static st_table *gen_fns;
|
|
|
|
|
|
|
|
// Code block into which we write machine code
|
2020-09-10 17:20:46 -04:00
|
|
|
static codeblock_t block;
|
2020-12-16 21:45:51 -05:00
|
|
|
codeblock_t* cb = NULL;
|
2020-09-10 17:20:46 -04:00
|
|
|
|
2020-09-28 15:50:41 -04:00
|
|
|
// Code block into which we write out-of-line machine code
|
|
|
|
static codeblock_t outline_block;
|
2020-12-16 21:45:51 -05:00
|
|
|
codeblock_t* ocb = NULL;
|
2020-09-14 13:31:34 -04:00
|
|
|
|
2021-02-11 12:46:46 -05:00
|
|
|
// Print the current source location for debugging purposes
|
|
|
|
static void __attribute__((unused))
|
|
|
|
jit_print_loc(jitstate_t* jit, const char* msg)
|
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
long len;
|
|
|
|
VALUE path = rb_iseq_path(jit->iseq);
|
|
|
|
RSTRING_GETMEM(path, ptr, len);
|
|
|
|
fprintf(stderr, "%s %s:%u\n", msg, ptr, rb_iseq_line_no(jit->iseq, jit->insn_idx));
|
|
|
|
}
|
|
|
|
|
2020-12-18 15:02:43 -05:00
|
|
|
// Get the current instruction's opcode
|
|
|
|
static int
|
|
|
|
jit_get_opcode(jitstate_t* jit)
|
|
|
|
{
|
|
|
|
return opcode_at_pc(jit->iseq, jit->pc);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the index of the next instruction
|
|
|
|
static uint32_t
|
|
|
|
jit_next_idx(jitstate_t* jit)
|
|
|
|
{
|
|
|
|
return jit->insn_idx + insn_len(jit_get_opcode(jit));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get an instruction argument by index
|
|
|
|
static VALUE
|
|
|
|
jit_get_arg(jitstate_t* jit, size_t arg_idx)
|
|
|
|
{
|
2021-01-22 13:29:09 -05:00
|
|
|
RUBY_ASSERT(arg_idx + 1 < (size_t)insn_len(jit_get_opcode(jit)));
|
2020-12-18 15:02:43 -05:00
|
|
|
return *(jit->pc + arg_idx + 1);
|
|
|
|
}
|
|
|
|
|
2020-09-28 15:50:41 -04:00
|
|
|
/**
|
|
|
|
Generate an inline exit to return to the interpreter
|
|
|
|
*/
|
|
|
|
static void
|
2020-12-18 15:02:43 -05:00
|
|
|
ujit_gen_exit(jitstate_t* jit, ctx_t* ctx, codeblock_t* cb, VALUE* exit_pc)
|
2020-09-28 15:50:41 -04:00
|
|
|
{
|
|
|
|
// Write the adjusted SP back into the CFP
|
2021-02-10 15:38:20 -05:00
|
|
|
if (ctx->sp_offset != 0)
|
2020-09-28 15:50:41 -04:00
|
|
|
{
|
2020-10-27 14:25:00 -04:00
|
|
|
x86opnd_t stack_pointer = ctx_sp_opnd(ctx, 0);
|
2020-10-20 11:11:47 -04:00
|
|
|
lea(cb, REG_SP, stack_pointer);
|
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, sp), REG_SP);
|
2020-09-28 15:50:41 -04:00
|
|
|
}
|
|
|
|
|
2021-02-05 12:18:55 -05:00
|
|
|
// Update the CFP on the EC
|
|
|
|
mov(cb, member_opnd(REG_EC, rb_execution_context_t, cfp), REG_CFP);
|
|
|
|
|
2020-09-28 15:50:41 -04:00
|
|
|
// Directly return the next PC, which is a constant
|
|
|
|
mov(cb, RAX, const_ptr_opnd(exit_pc));
|
2020-10-20 11:11:47 -04:00
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, pc), RAX);
|
2020-09-28 15:50:41 -04:00
|
|
|
|
2021-02-08 15:40:36 -05:00
|
|
|
// Accumulate stats about interpreter exits
|
2021-02-10 09:49:26 -05:00
|
|
|
#if RUBY_DEBUG
|
2021-02-08 15:40:36 -05:00
|
|
|
if (rb_ujit_opts.gen_stats) {
|
|
|
|
mov(cb, RDI, const_ptr_opnd(exit_pc));
|
|
|
|
call_ptr(cb, RSI, (void *)&rb_ujit_count_side_exit_op);
|
|
|
|
}
|
2021-02-10 09:49:26 -05:00
|
|
|
#endif
|
2021-01-27 16:13:27 -05:00
|
|
|
|
2020-09-28 15:50:41 -04:00
|
|
|
// Write the post call bytes
|
2020-12-08 17:19:28 -05:00
|
|
|
cb_write_post_call_bytes(cb);
|
2020-09-28 15:50:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Generate an out-of-line exit to return to the interpreter
|
|
|
|
*/
|
2020-10-29 17:40:58 -04:00
|
|
|
static uint8_t *
|
2020-12-18 15:02:43 -05:00
|
|
|
ujit_side_exit(jitstate_t* jit, ctx_t* ctx)
|
2020-09-28 15:50:41 -04:00
|
|
|
{
|
2021-01-07 13:32:46 -05:00
|
|
|
uint8_t* code_ptr = cb_get_ptr(ocb, ocb->write_pos);
|
2020-09-28 15:50:41 -04:00
|
|
|
|
2020-11-09 16:54:29 -05:00
|
|
|
// Table mapping opcodes to interpreter handlers
|
2021-01-07 13:32:46 -05:00
|
|
|
const void * const *handler_table = rb_vm_get_insns_address_table();
|
2020-11-09 16:54:29 -05:00
|
|
|
|
2021-01-18 17:03:04 -05:00
|
|
|
// FIXME: rewriting the old instruction is only necessary if we're
|
|
|
|
// exiting right at an interpreter entry point
|
|
|
|
|
2020-09-28 15:50:41 -04:00
|
|
|
// Write back the old instruction at the exit PC
|
|
|
|
// Otherwise the interpreter may jump right back to the
|
|
|
|
// JITted code we're trying to exit
|
2020-12-18 15:02:43 -05:00
|
|
|
VALUE* exit_pc = &jit->iseq->body->iseq_encoded[jit->insn_idx];
|
|
|
|
int exit_opcode = opcode_at_pc(jit->iseq, exit_pc);
|
2021-01-07 13:32:46 -05:00
|
|
|
void* handler_addr = (void*)handler_table[exit_opcode];
|
2020-12-18 15:02:43 -05:00
|
|
|
mov(ocb, RAX, const_ptr_opnd(exit_pc));
|
2021-01-07 13:32:46 -05:00
|
|
|
mov(ocb, RCX, const_ptr_opnd(handler_addr));
|
2020-12-18 15:02:43 -05:00
|
|
|
mov(ocb, mem_opnd(64, RAX, 0), RCX);
|
2020-09-28 15:50:41 -04:00
|
|
|
|
|
|
|
// Generate the code to exit to the interpreters
|
2020-12-18 15:02:43 -05:00
|
|
|
ujit_gen_exit(jit, ctx, ocb, exit_pc);
|
2020-09-28 15:50:41 -04:00
|
|
|
|
|
|
|
return code_ptr;
|
|
|
|
}
|
|
|
|
|
2020-09-16 10:33:34 -04:00
|
|
|
/*
|
2021-01-13 14:14:16 -05:00
|
|
|
Compile an interpreter entry block to be inserted into an iseq
|
2020-12-10 00:06:10 -05:00
|
|
|
Returns `NULL` if compilation fails.
|
2020-09-16 10:33:34 -04:00
|
|
|
*/
|
2021-01-13 14:14:16 -05:00
|
|
|
uint8_t*
|
2021-02-09 16:24:06 -05:00
|
|
|
ujit_entry_prologue(void)
|
2020-12-18 13:49:53 -05:00
|
|
|
{
|
2021-01-22 13:29:09 -05:00
|
|
|
RUBY_ASSERT(cb != NULL);
|
2020-12-18 13:49:53 -05:00
|
|
|
|
|
|
|
if (cb->write_pos + 1024 >= cb->mem_size) {
|
|
|
|
rb_bug("out of executable memory");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Align the current write positon to cache line boundaries
|
|
|
|
cb_align_pos(cb, 64);
|
|
|
|
|
|
|
|
uint8_t *code_ptr = cb_get_ptr(cb, cb->write_pos);
|
|
|
|
|
|
|
|
// Write the interpreter entry prologue
|
2021-01-13 14:14:16 -05:00
|
|
|
cb_write_pre_call_bytes(cb);
|
2020-12-18 13:49:53 -05:00
|
|
|
|
2021-01-13 14:14:16 -05:00
|
|
|
// Load the current SP from the CFP into REG_SP
|
|
|
|
mov(cb, REG_SP, member_opnd(REG_CFP, rb_control_frame_t, sp));
|
2020-12-18 15:52:13 -05:00
|
|
|
|
2020-12-18 13:49:53 -05:00
|
|
|
return code_ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2021-01-14 13:33:19 -05:00
|
|
|
Compile a sequence of bytecode instructions for a given basic block version
|
2020-12-18 13:49:53 -05:00
|
|
|
*/
|
2021-01-18 17:03:04 -05:00
|
|
|
void
|
|
|
|
ujit_gen_block(ctx_t* ctx, block_t* block)
|
2020-09-10 17:20:46 -04:00
|
|
|
{
|
2021-01-22 13:29:09 -05:00
|
|
|
RUBY_ASSERT(cb != NULL);
|
|
|
|
RUBY_ASSERT(block != NULL);
|
2021-01-13 14:14:16 -05:00
|
|
|
|
2021-01-14 13:33:19 -05:00
|
|
|
const rb_iseq_t *iseq = block->blockid.iseq;
|
|
|
|
uint32_t insn_idx = block->blockid.idx;
|
2020-10-13 11:15:22 -04:00
|
|
|
VALUE *encoded = iseq->body->iseq_encoded;
|
2020-09-10 17:20:46 -04:00
|
|
|
|
2020-09-17 11:49:53 -04:00
|
|
|
// NOTE: if we are ever deployed in production, we
|
|
|
|
// should probably just log an error and return NULL here,
|
|
|
|
// so we can fail more gracefully
|
2020-10-29 17:26:49 -04:00
|
|
|
if (cb->write_pos + 1024 >= cb->mem_size) {
|
2020-09-14 16:59:39 -04:00
|
|
|
rb_bug("out of executable memory");
|
|
|
|
}
|
2020-10-29 17:26:49 -04:00
|
|
|
if (ocb->write_pos + 1024 >= ocb->mem_size) {
|
2020-09-28 17:01:26 -04:00
|
|
|
rb_bug("out of executable memory (outlined block)");
|
|
|
|
}
|
2020-09-14 16:59:39 -04:00
|
|
|
|
2021-01-18 17:03:04 -05:00
|
|
|
// Initialize a JIT state object
|
2021-01-12 14:56:43 -05:00
|
|
|
jitstate_t jit = {
|
2021-01-14 13:33:19 -05:00
|
|
|
block,
|
2021-01-18 17:03:04 -05:00
|
|
|
block->blockid.iseq,
|
|
|
|
0,
|
|
|
|
0
|
2021-01-12 14:56:43 -05:00
|
|
|
};
|
2020-12-18 15:02:43 -05:00
|
|
|
|
2021-01-18 17:03:04 -05:00
|
|
|
// Last operation that was successfully compiled
|
|
|
|
opdesc_t* p_last_op = NULL;
|
|
|
|
|
|
|
|
// Mark the start position of the block
|
|
|
|
block->start_pos = cb->write_pos;
|
2021-01-12 17:03:54 -05:00
|
|
|
|
2020-09-16 13:52:35 -04:00
|
|
|
// For each instruction to compile
|
2020-11-04 12:03:39 -05:00
|
|
|
for (;;) {
|
2020-12-14 15:57:55 -05:00
|
|
|
// Set the current instruction
|
2020-12-18 15:02:43 -05:00
|
|
|
jit.insn_idx = insn_idx;
|
|
|
|
jit.pc = &encoded[insn_idx];
|
2020-09-16 13:52:35 -04:00
|
|
|
|
|
|
|
// Get the current opcode
|
2020-12-18 15:02:43 -05:00
|
|
|
int opcode = jit_get_opcode(&jit);
|
|
|
|
|
2020-09-16 13:52:35 -04:00
|
|
|
// Lookup the codegen function for this instruction
|
2021-01-07 17:09:25 -05:00
|
|
|
st_data_t st_op_desc;
|
|
|
|
if (!rb_st_lookup(gen_fns, opcode, &st_op_desc)) {
|
2020-09-16 13:52:35 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-02-08 15:40:36 -05:00
|
|
|
// Accumulate stats about instructions executed
|
|
|
|
if (rb_ujit_opts.gen_stats) {
|
|
|
|
// Count instructions executed by the JIT
|
|
|
|
mov(cb, REG0, const_ptr_opnd((void *)&rb_ujit_exec_insns_count));
|
|
|
|
add(cb, mem_opnd(64, REG0, 0), imm_opnd(1));
|
|
|
|
}
|
2021-01-26 15:21:47 -05:00
|
|
|
|
2021-01-25 15:28:49 -05:00
|
|
|
//fprintf(stderr, "compiling %d: %s\n", insn_idx, insn_name(opcode));
|
2020-12-17 15:45:38 -05:00
|
|
|
//print_str(cb, insn_name(opcode));
|
|
|
|
|
2020-09-16 13:52:35 -04:00
|
|
|
// Call the code generation function
|
2021-01-07 17:09:25 -05:00
|
|
|
opdesc_t* p_desc = (opdesc_t*)st_op_desc;
|
|
|
|
bool success = p_desc->gen_fn(&jit, ctx);
|
|
|
|
|
2021-01-18 17:03:04 -05:00
|
|
|
// If we can't compile this instruction, stop
|
2021-01-07 17:09:25 -05:00
|
|
|
if (!success) {
|
2020-10-15 11:46:37 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-09-16 13:52:35 -04:00
|
|
|
|
|
|
|
// Move to the next instruction
|
2021-01-07 17:09:25 -05:00
|
|
|
p_last_op = p_desc;
|
2020-09-16 13:52:35 -04:00
|
|
|
insn_idx += insn_len(opcode);
|
2020-10-29 17:26:49 -04:00
|
|
|
|
2021-01-07 17:09:25 -05:00
|
|
|
// If this instruction terminates this block
|
|
|
|
if (p_desc->is_branch) {
|
2020-10-29 17:26:49 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-09-16 13:52:35 -04:00
|
|
|
}
|
2020-09-11 15:36:40 -04:00
|
|
|
|
2021-01-13 14:14:16 -05:00
|
|
|
// If the last instruction compiled did not terminate the block
|
2020-09-28 15:50:41 -04:00
|
|
|
// Generate code to exit to the interpreter
|
2021-01-07 17:09:25 -05:00
|
|
|
if (!p_last_op || !p_last_op->is_branch) {
|
|
|
|
ujit_gen_exit(&jit, ctx, cb, &encoded[insn_idx]);
|
|
|
|
}
|
2020-09-21 16:46:57 -04:00
|
|
|
|
2021-01-18 17:03:04 -05:00
|
|
|
// Mark the end position of the block
|
|
|
|
block->end_pos = cb->write_pos;
|
|
|
|
|
|
|
|
// Store the index of the last instruction in the block
|
|
|
|
block->end_idx = insn_idx;
|
|
|
|
|
2020-10-29 17:26:49 -04:00
|
|
|
if (UJIT_DUMP_MODE >= 2) {
|
|
|
|
// Dump list of compiled instrutions
|
|
|
|
fprintf(stderr, "Compiled the following for iseq=%p:\n", (void *)iseq);
|
2021-01-14 13:33:19 -05:00
|
|
|
VALUE *pc = &encoded[block->blockid.idx];
|
2020-12-10 00:06:10 -05:00
|
|
|
VALUE *end_pc = &encoded[insn_idx];
|
2020-10-29 17:26:49 -04:00
|
|
|
while (pc < end_pc) {
|
|
|
|
int opcode = opcode_at_pc(iseq, pc);
|
|
|
|
fprintf(stderr, " %04td %s\n", pc - encoded, insn_name(opcode));
|
|
|
|
pc += insn_len(opcode);
|
|
|
|
}
|
|
|
|
}
|
2020-09-16 10:33:34 -04:00
|
|
|
}
|
2020-09-14 11:54:25 -04:00
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_dup(jitstate_t* jit, ctx_t* ctx)
|
2020-09-18 12:40:05 -04:00
|
|
|
{
|
2021-02-10 20:01:18 -05:00
|
|
|
// Get the top value and its type
|
|
|
|
x86opnd_t dup_val = ctx_stack_pop(ctx, 0);
|
|
|
|
int dup_type = ctx_get_top_type(ctx);
|
|
|
|
|
|
|
|
// Push the same value on top
|
|
|
|
x86opnd_t loc0 = ctx_stack_push(ctx, dup_type);
|
2021-02-09 16:24:06 -05:00
|
|
|
mov(cb, REG0, dup_val);
|
|
|
|
mov(cb, loc0, REG0);
|
2021-02-10 20:01:18 -05:00
|
|
|
|
2020-10-15 11:46:37 -04:00
|
|
|
return true;
|
2020-09-18 12:40:05 -04:00
|
|
|
}
|
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_nop(jitstate_t* jit, ctx_t* ctx)
|
2020-09-16 10:33:34 -04:00
|
|
|
{
|
2020-09-18 12:20:43 -04:00
|
|
|
// Do nothing
|
2020-10-15 11:46:37 -04:00
|
|
|
return true;
|
2020-09-16 10:33:34 -04:00
|
|
|
}
|
2020-09-14 11:54:25 -04:00
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_pop(jitstate_t* jit, ctx_t* ctx)
|
2020-09-16 10:33:34 -04:00
|
|
|
{
|
|
|
|
// Decrement SP
|
2020-09-17 13:40:50 -04:00
|
|
|
ctx_stack_pop(ctx, 1);
|
2020-10-15 11:46:37 -04:00
|
|
|
return true;
|
2020-09-16 10:33:34 -04:00
|
|
|
}
|
2020-09-14 16:59:39 -04:00
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_putnil(jitstate_t* jit, ctx_t* ctx)
|
2020-09-16 10:33:34 -04:00
|
|
|
{
|
|
|
|
// Write constant at SP
|
2021-01-20 16:58:09 -05:00
|
|
|
x86opnd_t stack_top = ctx_stack_push(ctx, T_NIL);
|
2020-09-17 13:40:50 -04:00
|
|
|
mov(cb, stack_top, imm_opnd(Qnil));
|
2020-10-15 11:46:37 -04:00
|
|
|
return true;
|
2020-09-16 10:33:34 -04:00
|
|
|
}
|
2020-09-14 16:59:39 -04:00
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_putobject(jitstate_t* jit, ctx_t* ctx)
|
2020-09-16 15:30:23 -04:00
|
|
|
{
|
2021-01-25 17:11:10 -05:00
|
|
|
VALUE arg = jit_get_arg(jit, 0);
|
2020-09-16 15:30:23 -04:00
|
|
|
|
2021-01-25 17:11:10 -05:00
|
|
|
if (FIXNUM_P(arg))
|
|
|
|
{
|
|
|
|
// Keep track of the fixnum type tag
|
|
|
|
x86opnd_t stack_top = ctx_stack_push(ctx, T_FIXNUM);
|
2021-02-10 23:09:44 -05:00
|
|
|
|
|
|
|
x86opnd_t imm = imm_opnd((int64_t)arg);
|
|
|
|
|
|
|
|
// 64-bit immediates can't be directly written to memory
|
|
|
|
if (imm.num_bits <= 32)
|
|
|
|
{
|
|
|
|
mov(cb, stack_top, imm);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mov(cb, REG0, imm);
|
|
|
|
mov(cb, stack_top, REG0);
|
|
|
|
}
|
2021-01-25 17:11:10 -05:00
|
|
|
}
|
|
|
|
else if (arg == Qtrue || arg == Qfalse)
|
|
|
|
{
|
|
|
|
x86opnd_t stack_top = ctx_stack_push(ctx, T_NONE);
|
|
|
|
mov(cb, stack_top, imm_opnd((int64_t)arg));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Load the argument from the bytecode sequence.
|
|
|
|
// We need to do this as the argument can change due to GC compaction.
|
|
|
|
x86opnd_t pc_plus_one = const_ptr_opnd((void*)(jit->pc + 1));
|
|
|
|
mov(cb, RAX, pc_plus_one);
|
|
|
|
mov(cb, RAX, mem_opnd(64, RAX, 0));
|
|
|
|
|
|
|
|
// Write argument at SP
|
|
|
|
x86opnd_t stack_top = ctx_stack_push(ctx, T_NONE);
|
|
|
|
mov(cb, stack_top, RAX);
|
|
|
|
}
|
2020-10-15 11:46:37 -04:00
|
|
|
|
|
|
|
return true;
|
2020-09-17 13:40:50 -04:00
|
|
|
}
|
2020-09-16 15:30:23 -04:00
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_putobject_int2fix(jitstate_t* jit, ctx_t* ctx)
|
2020-09-17 13:40:50 -04:00
|
|
|
{
|
2020-12-18 15:02:43 -05:00
|
|
|
int opcode = jit_get_opcode(jit);
|
2020-09-17 13:40:50 -04:00
|
|
|
int cst_val = (opcode == BIN(putobject_INT2FIX_0_))? 0:1;
|
2020-09-16 15:30:23 -04:00
|
|
|
|
2020-09-17 13:40:50 -04:00
|
|
|
// Write constant at SP
|
2021-01-20 16:58:09 -05:00
|
|
|
x86opnd_t stack_top = ctx_stack_push(ctx, T_FIXNUM);
|
2020-09-17 13:40:50 -04:00
|
|
|
mov(cb, stack_top, imm_opnd(INT2FIX(cst_val)));
|
2020-10-15 11:46:37 -04:00
|
|
|
|
|
|
|
return true;
|
2020-09-16 15:30:23 -04:00
|
|
|
}
|
2020-09-15 15:12:31 -04:00
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_putself(jitstate_t* jit, ctx_t* ctx)
|
2020-09-18 12:20:43 -04:00
|
|
|
{
|
|
|
|
// Load self from CFP
|
2020-10-20 11:11:47 -04:00
|
|
|
mov(cb, RAX, member_opnd(REG_CFP, rb_control_frame_t, self));
|
2020-09-18 12:20:43 -04:00
|
|
|
|
|
|
|
// Write it on the stack
|
2021-01-20 16:58:09 -05:00
|
|
|
x86opnd_t stack_top = ctx_stack_push(ctx, T_NONE);
|
2020-09-18 12:20:43 -04:00
|
|
|
mov(cb, stack_top, RAX);
|
2020-10-15 11:46:37 -04:00
|
|
|
|
|
|
|
return true;
|
2020-09-18 12:20:43 -04:00
|
|
|
}
|
2020-09-15 15:12:31 -04:00
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_getlocal_wc0(jitstate_t* jit, ctx_t* ctx)
|
2020-09-16 10:33:34 -04:00
|
|
|
{
|
2020-09-24 15:57:53 -04:00
|
|
|
// Load environment pointer EP from CFP
|
2020-10-20 11:11:47 -04:00
|
|
|
mov(cb, REG0, member_opnd(REG_CFP, rb_control_frame_t, ep));
|
2020-09-15 15:12:31 -04:00
|
|
|
|
2020-09-16 10:33:34 -04:00
|
|
|
// Compute the offset from BP to the local
|
2020-12-18 15:02:43 -05:00
|
|
|
int32_t local_idx = (int32_t)jit_get_arg(jit, 0);
|
2021-02-03 16:09:03 -05:00
|
|
|
const int32_t offs = -(SIZEOF_VALUE * local_idx);
|
2020-09-15 15:12:31 -04:00
|
|
|
|
2020-09-16 10:33:34 -04:00
|
|
|
// Load the local from the block
|
2020-10-20 11:11:47 -04:00
|
|
|
mov(cb, REG0, mem_opnd(64, REG0, offs));
|
2020-09-15 15:12:31 -04:00
|
|
|
|
2020-09-16 10:33:34 -04:00
|
|
|
// Write the local at SP
|
2021-01-20 16:58:09 -05:00
|
|
|
x86opnd_t stack_top = ctx_stack_push(ctx, T_NONE);
|
2020-10-20 11:11:47 -04:00
|
|
|
mov(cb, stack_top, REG0);
|
2020-10-15 11:46:37 -04:00
|
|
|
|
|
|
|
return true;
|
2020-09-10 17:20:46 -04:00
|
|
|
}
|
2020-09-14 13:31:34 -04:00
|
|
|
|
2021-02-03 16:09:03 -05:00
|
|
|
static bool
|
|
|
|
gen_getlocal_wc1(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
//fprintf(stderr, "gen_getlocal_wc1\n");
|
|
|
|
|
|
|
|
// Load environment pointer EP from CFP
|
|
|
|
mov(cb, REG0, member_opnd(REG_CFP, rb_control_frame_t, ep));
|
|
|
|
|
|
|
|
// Get the previous EP from the current EP
|
|
|
|
// See GET_PREV_EP(ep) macro
|
|
|
|
// VALUE* prev_ep = ((VALUE *)((ep)[VM_ENV_DATA_INDEX_SPECVAL] & ~0x03))
|
|
|
|
mov(cb, REG0, mem_opnd(64, REG0, SIZEOF_VALUE * VM_ENV_DATA_INDEX_SPECVAL));
|
|
|
|
and(cb, REG0, imm_opnd(~0x03));
|
|
|
|
|
|
|
|
// Load the local from the block
|
|
|
|
// val = *(vm_get_ep(GET_EP(), level) - idx);
|
|
|
|
int32_t local_idx = (int32_t)jit_get_arg(jit, 0);
|
|
|
|
const int32_t offs = -(SIZEOF_VALUE * local_idx);
|
|
|
|
mov(cb, REG0, mem_opnd(64, REG0, offs));
|
|
|
|
|
|
|
|
// Write the local at SP
|
|
|
|
x86opnd_t stack_top = ctx_stack_push(ctx, T_NONE);
|
|
|
|
mov(cb, stack_top, REG0);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_setlocal_wc0(jitstate_t* jit, ctx_t* ctx)
|
2020-09-24 15:57:53 -04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
vm_env_write(const VALUE *ep, int index, VALUE v)
|
|
|
|
{
|
|
|
|
VALUE flags = ep[VM_ENV_DATA_INDEX_FLAGS];
|
|
|
|
if (LIKELY((flags & VM_ENV_FLAG_WB_REQUIRED) == 0)) {
|
|
|
|
VM_STACK_ENV_WRITE(ep, index, v);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
vm_env_write_slowpath(ep, index, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Load environment pointer EP from CFP
|
2020-10-20 11:11:47 -04:00
|
|
|
mov(cb, REG0, member_opnd(REG_CFP, rb_control_frame_t, ep));
|
2020-09-24 15:57:53 -04:00
|
|
|
|
|
|
|
// flags & VM_ENV_FLAG_WB_REQUIRED
|
2021-01-28 16:58:20 -05:00
|
|
|
x86opnd_t flags_opnd = mem_opnd(64, REG0, sizeof(VALUE) * VM_ENV_DATA_INDEX_FLAGS);
|
2020-09-28 15:50:41 -04:00
|
|
|
test(cb, flags_opnd, imm_opnd(VM_ENV_FLAG_WB_REQUIRED));
|
2020-09-24 15:57:53 -04:00
|
|
|
|
2020-09-28 15:50:41 -04:00
|
|
|
// Create a size-exit to fall back to the interpreter
|
2020-12-18 15:02:43 -05:00
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
2020-09-24 15:57:53 -04:00
|
|
|
|
|
|
|
// if (flags & VM_ENV_FLAG_WB_REQUIRED) != 0
|
2020-09-28 15:50:41 -04:00
|
|
|
jnz_ptr(cb, side_exit);
|
2020-09-24 15:57:53 -04:00
|
|
|
|
2020-09-28 15:50:41 -04:00
|
|
|
// Pop the value to write from the stack
|
2020-09-24 15:57:53 -04:00
|
|
|
x86opnd_t stack_top = ctx_stack_pop(ctx, 1);
|
2020-10-20 11:11:47 -04:00
|
|
|
mov(cb, REG1, stack_top);
|
2020-09-24 15:57:53 -04:00
|
|
|
|
2020-09-28 15:50:41 -04:00
|
|
|
// Write the value at the environment pointer
|
2020-12-18 15:02:43 -05:00
|
|
|
int32_t local_idx = (int32_t)jit_get_arg(jit, 0);
|
2020-09-24 15:57:53 -04:00
|
|
|
const int32_t offs = -8 * local_idx;
|
2020-10-20 11:11:47 -04:00
|
|
|
mov(cb, mem_opnd(64, REG0, offs), REG1);
|
2020-10-15 11:46:37 -04:00
|
|
|
|
|
|
|
return true;
|
2020-09-24 15:57:53 -04:00
|
|
|
}
|
|
|
|
|
2020-11-20 11:35:17 -05:00
|
|
|
// Check that `self` is a pointer to an object on the GC heap
|
|
|
|
static void
|
2020-11-20 14:05:36 -05:00
|
|
|
guard_self_is_object(codeblock_t *cb, x86opnd_t self_opnd, uint8_t *side_exit, ctx_t *ctx)
|
2020-11-20 11:35:17 -05:00
|
|
|
{
|
|
|
|
// `self` is constant throughout the entire region, so we only need to do this check once.
|
2020-11-20 14:05:36 -05:00
|
|
|
if (!ctx->self_is_object) {
|
|
|
|
test(cb, self_opnd, imm_opnd(RUBY_IMMEDIATE_MASK));
|
2020-11-20 11:35:17 -05:00
|
|
|
jnz_ptr(cb, side_exit);
|
2020-11-20 14:05:36 -05:00
|
|
|
cmp(cb, self_opnd, imm_opnd(Qfalse));
|
2020-11-20 11:35:17 -05:00
|
|
|
je_ptr(cb, side_exit);
|
2020-11-20 14:05:36 -05:00
|
|
|
cmp(cb, self_opnd, imm_opnd(Qnil));
|
2020-11-20 11:35:17 -05:00
|
|
|
je_ptr(cb, side_exit);
|
2020-11-20 14:05:36 -05:00
|
|
|
ctx->self_is_object = true;
|
2020-11-20 15:25:21 -05:00
|
|
|
}
|
2020-11-20 11:35:17 -05:00
|
|
|
}
|
|
|
|
|
2020-11-10 15:35:55 -05:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_getinstancevariable(jitstate_t* jit, ctx_t* ctx)
|
2020-11-10 15:35:55 -05:00
|
|
|
{
|
2020-12-18 15:02:43 -05:00
|
|
|
IVC ic = (IVC)jit_get_arg(jit, 1);
|
2020-11-10 15:35:55 -05:00
|
|
|
|
|
|
|
// Check that the inline cache has been set, slot index is known
|
|
|
|
if (!ic->entry)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-12 12:25:14 -05:00
|
|
|
// If the class uses the default allocator, instances should all be T_OBJECT
|
2020-11-12 14:25:11 -05:00
|
|
|
// NOTE: This assumes nobody changes the allocator of the class after allocation.
|
|
|
|
// Eventually, we can encode whether an object is T_OBJECT or not
|
|
|
|
// inside object shapes.
|
2020-11-12 12:25:14 -05:00
|
|
|
if (rb_get_alloc_func(ic->entry->class_value) != rb_class_allocate_instance)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-10 15:35:55 -05:00
|
|
|
uint32_t ivar_index = ic->entry->index;
|
|
|
|
|
|
|
|
// Create a size-exit to fall back to the interpreter
|
2020-12-18 15:02:43 -05:00
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
2020-11-10 15:35:55 -05:00
|
|
|
|
|
|
|
// Load self from CFP
|
|
|
|
mov(cb, REG0, member_opnd(REG_CFP, rb_control_frame_t, self));
|
|
|
|
|
2020-11-20 14:05:36 -05:00
|
|
|
guard_self_is_object(cb, REG0, side_exit, ctx);
|
2020-11-10 15:35:55 -05:00
|
|
|
|
|
|
|
// Bail if receiver class is different from compiled time call cache class
|
|
|
|
x86opnd_t klass_opnd = mem_opnd(64, REG0, offsetof(struct RBasic, klass));
|
|
|
|
mov(cb, REG1, klass_opnd);
|
|
|
|
x86opnd_t serial_opnd = mem_opnd(64, REG1, offsetof(struct RClass, class_serial));
|
|
|
|
cmp(cb, serial_opnd, imm_opnd(ic->entry->class_serial));
|
|
|
|
jne_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Bail if the ivars are not on the extended table
|
|
|
|
// See ROBJECT_IVPTR() from include/ruby/internal/core/robject.h
|
|
|
|
x86opnd_t flags_opnd = member_opnd(REG0, struct RBasic, flags);
|
|
|
|
test(cb, flags_opnd, imm_opnd(ROBJECT_EMBED));
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Get a pointer to the extended table
|
|
|
|
x86opnd_t tbl_opnd = mem_opnd(64, REG0, offsetof(struct RObject, as.heap.ivptr));
|
|
|
|
mov(cb, REG0, tbl_opnd);
|
|
|
|
|
|
|
|
// Read the ivar from the extended table
|
|
|
|
x86opnd_t ivar_opnd = mem_opnd(64, REG0, sizeof(VALUE) * ivar_index);
|
|
|
|
mov(cb, REG0, ivar_opnd);
|
|
|
|
|
|
|
|
// Check that the ivar is not Qundef
|
|
|
|
cmp(cb, REG0, imm_opnd(Qundef));
|
|
|
|
je_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Push the ivar on the stack
|
2021-01-20 16:58:09 -05:00
|
|
|
x86opnd_t out_opnd = ctx_stack_push(ctx, T_NONE);
|
2020-11-10 15:35:55 -05:00
|
|
|
mov(cb, out_opnd, REG0);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-11-17 15:04:36 -05:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_setinstancevariable(jitstate_t* jit, ctx_t* ctx)
|
2020-11-17 15:04:36 -05:00
|
|
|
{
|
2020-12-18 15:02:43 -05:00
|
|
|
IVC ic = (IVC)jit_get_arg(jit, 1);
|
2020-11-17 15:04:36 -05:00
|
|
|
|
|
|
|
// Check that the inline cache has been set, slot index is known
|
|
|
|
if (!ic->entry)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the class uses the default allocator, instances should all be T_OBJECT
|
|
|
|
// NOTE: This assumes nobody changes the allocator of the class after allocation.
|
|
|
|
// Eventually, we can encode whether an object is T_OBJECT or not
|
|
|
|
// inside object shapes.
|
|
|
|
if (rb_get_alloc_func(ic->entry->class_value) != rb_class_allocate_instance)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t ivar_index = ic->entry->index;
|
|
|
|
|
|
|
|
// Create a size-exit to fall back to the interpreter
|
2020-12-18 15:02:43 -05:00
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
2020-11-17 15:04:36 -05:00
|
|
|
|
|
|
|
// Load self from CFP
|
|
|
|
mov(cb, REG0, member_opnd(REG_CFP, rb_control_frame_t, self));
|
|
|
|
|
2020-11-20 14:05:36 -05:00
|
|
|
guard_self_is_object(cb, REG0, side_exit, ctx);
|
2020-11-17 15:04:36 -05:00
|
|
|
|
|
|
|
// Bail if receiver class is different from compiled time call cache class
|
|
|
|
x86opnd_t klass_opnd = mem_opnd(64, REG0, offsetof(struct RBasic, klass));
|
|
|
|
mov(cb, REG1, klass_opnd);
|
|
|
|
x86opnd_t serial_opnd = mem_opnd(64, REG1, offsetof(struct RClass, class_serial));
|
|
|
|
cmp(cb, serial_opnd, imm_opnd(ic->entry->class_serial));
|
|
|
|
jne_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Bail if the ivars are not on the extended table
|
|
|
|
// See ROBJECT_IVPTR() from include/ruby/internal/core/robject.h
|
|
|
|
x86opnd_t flags_opnd = member_opnd(REG0, struct RBasic, flags);
|
|
|
|
test(cb, flags_opnd, imm_opnd(ROBJECT_EMBED));
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// If we can't guarantee that the extended table is big enoughg
|
|
|
|
if (ivar_index >= ROBJECT_EMBED_LEN_MAX + 1)
|
|
|
|
{
|
|
|
|
// Check that the slot is inside the extended table (num_slots > index)
|
|
|
|
x86opnd_t num_slots = mem_opnd(32, REG0, offsetof(struct RObject, as.heap.numiv));
|
|
|
|
cmp(cb, num_slots, imm_opnd(ivar_index));
|
|
|
|
jle_ptr(cb, side_exit);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a pointer to the extended table
|
|
|
|
x86opnd_t tbl_opnd = mem_opnd(64, REG0, offsetof(struct RObject, as.heap.ivptr));
|
|
|
|
mov(cb, REG0, tbl_opnd);
|
|
|
|
|
|
|
|
// Pop the value to write from the stack
|
|
|
|
x86opnd_t stack_top = ctx_stack_pop(ctx, 1);
|
|
|
|
mov(cb, REG1, stack_top);
|
|
|
|
|
|
|
|
// Bail if this is a heap object, because this needs a write barrier
|
|
|
|
test(cb, REG1, imm_opnd(RUBY_IMMEDIATE_MASK));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Write the ivar to the extended table
|
|
|
|
x86opnd_t ivar_opnd = mem_opnd(64, REG0, sizeof(VALUE) * ivar_index);
|
|
|
|
mov(cb, ivar_opnd, REG1);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-02-03 11:25:34 -05:00
|
|
|
// Conditional move operation used by comparison operators
|
|
|
|
typedef void (*cmov_fn)(codeblock_t* cb, x86opnd_t opnd0, x86opnd_t opnd1);
|
|
|
|
|
2020-12-11 13:22:37 -05:00
|
|
|
static bool
|
2021-02-03 11:25:34 -05:00
|
|
|
gen_fixnum_cmp(jitstate_t* jit, ctx_t* ctx, cmov_fn cmov_op)
|
2020-12-11 13:22:37 -05:00
|
|
|
{
|
|
|
|
// Create a size-exit to fall back to the interpreter
|
|
|
|
// Note: we generate the side-exit before popping operands from the stack
|
2020-12-18 15:02:43 -05:00
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
2020-12-11 13:22:37 -05:00
|
|
|
|
|
|
|
// TODO: make a helper function for guarding on op-not-redefined
|
|
|
|
// Make sure that minus isn't redefined for integers
|
|
|
|
mov(cb, RAX, const_ptr_opnd(ruby_current_vm_ptr));
|
|
|
|
test(
|
|
|
|
cb,
|
|
|
|
member_opnd_idx(RAX, rb_vm_t, redefined_flag, BOP_LT),
|
|
|
|
imm_opnd(INTEGER_REDEFINED_OP_FLAG)
|
|
|
|
);
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Get the operands and destination from the stack
|
2021-01-25 16:42:42 -05:00
|
|
|
int arg1_type = ctx_get_top_type(ctx);
|
2020-12-11 13:22:37 -05:00
|
|
|
x86opnd_t arg1 = ctx_stack_pop(ctx, 1);
|
2021-01-25 16:42:42 -05:00
|
|
|
int arg0_type = ctx_get_top_type(ctx);
|
2020-12-11 13:22:37 -05:00
|
|
|
x86opnd_t arg0 = ctx_stack_pop(ctx, 1);
|
|
|
|
|
|
|
|
// If not fixnums, fall back
|
2021-01-25 16:42:42 -05:00
|
|
|
if (arg0_type != T_FIXNUM) {
|
|
|
|
test(cb, arg0, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
}
|
|
|
|
if (arg1_type != T_FIXNUM) {
|
|
|
|
test(cb, arg1, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
}
|
2020-12-11 13:22:37 -05:00
|
|
|
|
|
|
|
// Compare the arguments
|
2021-01-26 16:51:44 -05:00
|
|
|
xor(cb, REG0_32, REG0_32); // REG0 = Qfalse
|
|
|
|
mov(cb, REG1, arg0);
|
|
|
|
cmp(cb, REG1, arg1);
|
2020-12-11 13:22:37 -05:00
|
|
|
mov(cb, REG1, imm_opnd(Qtrue));
|
2021-02-03 11:25:34 -05:00
|
|
|
cmov_op(cb, REG0, REG1);
|
2020-12-11 13:22:37 -05:00
|
|
|
|
|
|
|
// Push the output on the stack
|
2021-01-20 16:58:09 -05:00
|
|
|
x86opnd_t dst = ctx_stack_push(ctx, T_NONE);
|
2020-12-11 13:22:37 -05:00
|
|
|
mov(cb, dst, REG0);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-02-03 11:25:34 -05:00
|
|
|
static bool
|
|
|
|
gen_opt_lt(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
return gen_fixnum_cmp(jit, ctx, cmovl);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
gen_opt_le(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
return gen_fixnum_cmp(jit, ctx, cmovle);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
gen_opt_ge(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
return gen_fixnum_cmp(jit, ctx, cmovge);
|
|
|
|
}
|
|
|
|
|
2021-02-04 16:37:14 -05:00
|
|
|
static bool
|
|
|
|
gen_opt_aref(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
struct rb_call_data * cd = (struct rb_call_data *)jit_get_arg(jit, 0);
|
|
|
|
int32_t argc = (int32_t)vm_ci_argc(cd->ci);
|
|
|
|
|
|
|
|
// Only JIT one arg calls like `ary[6]`
|
|
|
|
if (argc != 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const rb_callable_method_entry_t *cme = vm_cc_cme(cd->cc);
|
|
|
|
|
|
|
|
// Bail if the inline cache has been filled. Currently, certain types
|
|
|
|
// (including arrays) don't use the inline cache, so if the inline cache
|
|
|
|
// has an entry, then this must be used by some other type.
|
|
|
|
if (cme) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a size-exit to fall back to the interpreter
|
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
|
|
|
|
|
|
|
x86opnd_t recv = ctx_stack_pop(ctx, 1);
|
|
|
|
mov(cb, REG0, recv);
|
|
|
|
|
|
|
|
// if (SPECIAL_CONST_P(recv)) {
|
|
|
|
// Bail if it's not a heap object
|
|
|
|
test(cb, REG0, imm_opnd(RUBY_IMMEDIATE_MASK));
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
cmp(cb, REG0, imm_opnd(Qfalse));
|
|
|
|
je_ptr(cb, side_exit);
|
|
|
|
cmp(cb, REG0, imm_opnd(Qnil));
|
|
|
|
je_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Bail if recv is *not* an array
|
|
|
|
x86opnd_t klass_opnd = mem_opnd(64, REG0, offsetof(struct RBasic, klass));
|
|
|
|
mov(cb, REG0, klass_opnd);
|
|
|
|
mov(cb, REG1, const_ptr_opnd((void *)rb_cArray));
|
|
|
|
cmp(cb, REG0, REG1);
|
|
|
|
jne_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Bail if arg0 is *not* an FIXNUM
|
|
|
|
x86opnd_t operand = ctx_stack_pop(ctx, 1);
|
|
|
|
mov(cb, REG1, operand);
|
|
|
|
test(cb, REG1, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Save MicroJIT registers
|
|
|
|
push(cb, REG_CFP);
|
|
|
|
push(cb, REG_EC);
|
|
|
|
push(cb, REG_SP);
|
|
|
|
// Maintain 16-byte RSP alignment
|
|
|
|
sub(cb, RSP, imm_opnd(8));
|
|
|
|
|
|
|
|
mov(cb, RDI, recv);
|
|
|
|
sar(cb, REG1, imm_opnd(1)); // Convert fixnum to int
|
|
|
|
mov(cb, RSI, REG1);
|
|
|
|
call_ptr(cb, REG0, (void *)rb_ary_entry_internal);
|
|
|
|
|
|
|
|
// Restore registers
|
|
|
|
add(cb, RSP, imm_opnd(8));
|
|
|
|
pop(cb, REG_SP);
|
|
|
|
pop(cb, REG_EC);
|
|
|
|
pop(cb, REG_CFP);
|
|
|
|
|
|
|
|
x86opnd_t stack_ret = ctx_stack_push(ctx, T_NONE);
|
|
|
|
mov(cb, stack_ret, RAX);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-02-01 11:51:47 -05:00
|
|
|
static bool
|
|
|
|
gen_opt_and(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
// Create a size-exit to fall back to the interpreter
|
|
|
|
// Note: we generate the side-exit before popping operands from the stack
|
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
|
|
|
|
|
|
|
// TODO: make a helper function for guarding on op-not-redefined
|
|
|
|
// Make sure that plus isn't redefined for integers
|
|
|
|
mov(cb, RAX, const_ptr_opnd(ruby_current_vm_ptr));
|
|
|
|
test(
|
|
|
|
cb,
|
|
|
|
member_opnd_idx(RAX, rb_vm_t, redefined_flag, BOP_AND),
|
|
|
|
imm_opnd(INTEGER_REDEFINED_OP_FLAG)
|
|
|
|
);
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Get the operands and destination from the stack
|
|
|
|
int arg1_type = ctx_get_top_type(ctx);
|
|
|
|
x86opnd_t arg1 = ctx_stack_pop(ctx, 1);
|
|
|
|
int arg0_type = ctx_get_top_type(ctx);
|
|
|
|
x86opnd_t arg0 = ctx_stack_pop(ctx, 1);
|
|
|
|
|
|
|
|
// If not fixnums, fall back
|
|
|
|
if (arg0_type != T_FIXNUM) {
|
|
|
|
test(cb, arg0, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
}
|
|
|
|
if (arg1_type != T_FIXNUM) {
|
|
|
|
test(cb, arg1, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do the bitwise and arg0 & arg1
|
|
|
|
mov(cb, REG0, arg0);
|
|
|
|
and(cb, REG0, arg1);
|
|
|
|
|
|
|
|
// Push the output on the stack
|
|
|
|
x86opnd_t dst = ctx_stack_push(ctx, T_FIXNUM);
|
|
|
|
mov(cb, dst, REG0);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_opt_minus(jitstate_t* jit, ctx_t* ctx)
|
2020-10-02 12:12:28 -04:00
|
|
|
{
|
|
|
|
// Create a size-exit to fall back to the interpreter
|
|
|
|
// Note: we generate the side-exit before popping operands from the stack
|
2020-12-18 15:02:43 -05:00
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
2020-10-02 12:12:28 -04:00
|
|
|
|
2020-11-20 15:25:21 -05:00
|
|
|
// TODO: make a helper function for guarding on op-not-redefined
|
2020-10-02 12:12:28 -04:00
|
|
|
// Make sure that minus isn't redefined for integers
|
|
|
|
mov(cb, RAX, const_ptr_opnd(ruby_current_vm_ptr));
|
|
|
|
test(
|
|
|
|
cb,
|
|
|
|
member_opnd_idx(RAX, rb_vm_t, redefined_flag, BOP_MINUS),
|
|
|
|
imm_opnd(INTEGER_REDEFINED_OP_FLAG)
|
|
|
|
);
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Get the operands and destination from the stack
|
|
|
|
x86opnd_t arg1 = ctx_stack_pop(ctx, 1);
|
|
|
|
x86opnd_t arg0 = ctx_stack_pop(ctx, 1);
|
|
|
|
|
|
|
|
// If not fixnums, fall back
|
|
|
|
test(cb, arg0, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
test(cb, arg1, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Subtract arg0 - arg1 and test for overflow
|
2020-11-20 15:25:21 -05:00
|
|
|
mov(cb, REG0, arg0);
|
|
|
|
sub(cb, REG0, arg1);
|
|
|
|
jo_ptr(cb, side_exit);
|
|
|
|
add(cb, REG0, imm_opnd(1));
|
|
|
|
|
|
|
|
// Push the output on the stack
|
2021-01-25 18:49:54 -05:00
|
|
|
x86opnd_t dst = ctx_stack_push(ctx, T_FIXNUM);
|
2020-12-11 13:22:37 -05:00
|
|
|
mov(cb, dst, REG0);
|
2020-11-20 15:25:21 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2020-12-18 15:02:43 -05:00
|
|
|
gen_opt_plus(jitstate_t* jit, ctx_t* ctx)
|
2020-11-20 15:25:21 -05:00
|
|
|
{
|
|
|
|
// Create a size-exit to fall back to the interpreter
|
|
|
|
// Note: we generate the side-exit before popping operands from the stack
|
2020-12-18 15:02:43 -05:00
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
2020-11-20 15:25:21 -05:00
|
|
|
|
|
|
|
// TODO: make a helper function for guarding on op-not-redefined
|
|
|
|
// Make sure that plus isn't redefined for integers
|
|
|
|
mov(cb, RAX, const_ptr_opnd(ruby_current_vm_ptr));
|
|
|
|
test(
|
|
|
|
cb,
|
|
|
|
member_opnd_idx(RAX, rb_vm_t, redefined_flag, BOP_PLUS),
|
|
|
|
imm_opnd(INTEGER_REDEFINED_OP_FLAG)
|
|
|
|
);
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Get the operands and destination from the stack
|
2021-01-20 16:58:09 -05:00
|
|
|
int arg1_type = ctx_get_top_type(ctx);
|
2020-11-20 15:25:21 -05:00
|
|
|
x86opnd_t arg1 = ctx_stack_pop(ctx, 1);
|
2021-01-20 16:58:09 -05:00
|
|
|
int arg0_type = ctx_get_top_type(ctx);
|
2020-11-20 15:25:21 -05:00
|
|
|
x86opnd_t arg0 = ctx_stack_pop(ctx, 1);
|
|
|
|
|
|
|
|
// If not fixnums, fall back
|
2021-01-20 16:58:09 -05:00
|
|
|
if (arg0_type != T_FIXNUM) {
|
|
|
|
test(cb, arg0, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
}
|
|
|
|
if (arg1_type != T_FIXNUM) {
|
|
|
|
test(cb, arg1, imm_opnd(RUBY_FIXNUM_FLAG));
|
|
|
|
jz_ptr(cb, side_exit);
|
|
|
|
}
|
2020-11-20 15:25:21 -05:00
|
|
|
|
|
|
|
// Add arg0 + arg1 and test for overflow
|
|
|
|
mov(cb, REG0, arg0);
|
|
|
|
sub(cb, REG0, imm_opnd(1));
|
|
|
|
add(cb, REG0, arg1);
|
2020-10-02 12:12:28 -04:00
|
|
|
jo_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Push the output on the stack
|
2021-01-25 18:49:54 -05:00
|
|
|
x86opnd_t dst = ctx_stack_push(ctx, T_FIXNUM);
|
2020-12-11 13:22:37 -05:00
|
|
|
mov(cb, dst, REG0);
|
2020-10-15 11:46:37 -04:00
|
|
|
|
|
|
|
return true;
|
2020-10-02 12:12:28 -04:00
|
|
|
}
|
|
|
|
|
2021-01-21 15:05:44 -05:00
|
|
|
void
|
|
|
|
gen_branchif_branch(codeblock_t* cb, uint8_t* target0, uint8_t* target1, uint8_t shape)
|
|
|
|
{
|
|
|
|
switch (shape)
|
|
|
|
{
|
|
|
|
case SHAPE_NEXT0:
|
|
|
|
jz_ptr(cb, target1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHAPE_NEXT1:
|
|
|
|
jnz_ptr(cb, target0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHAPE_DEFAULT:
|
|
|
|
jnz_ptr(cb, target0);
|
|
|
|
jmp_ptr(cb, target1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
gen_branchif(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
// TODO: we need to eventually do an interrupt check
|
|
|
|
// The check is supposed to happen only when we jump to the jump target block
|
|
|
|
//
|
|
|
|
// How can we do this while keeping the check logic out of line?
|
|
|
|
// Can we push the VM_CHECK_INTS() into the next block or the stub?
|
|
|
|
// Maybe into a transition edge block
|
|
|
|
//
|
|
|
|
// RUBY_VM_CHECK_INTS(ec);
|
|
|
|
|
|
|
|
// Test if any bit (outside of the Qnil bit) is on
|
|
|
|
// RUBY_Qfalse /* ...0000 0000 */
|
|
|
|
// RUBY_Qnil /* ...0000 1000 */
|
|
|
|
x86opnd_t val_opnd = ctx_stack_pop(ctx, 1);
|
|
|
|
test(cb, val_opnd, imm_opnd(~Qnil));
|
|
|
|
|
|
|
|
// Get the branch target instruction offsets
|
|
|
|
uint32_t next_idx = jit_next_idx(jit);
|
|
|
|
uint32_t jump_idx = next_idx + (uint32_t)jit_get_arg(jit, 0);
|
|
|
|
blockid_t next_block = { jit->iseq, next_idx };
|
|
|
|
blockid_t jump_block = { jit->iseq, jump_idx };
|
|
|
|
|
|
|
|
// Generate the branch instructions
|
|
|
|
gen_branch(
|
|
|
|
ctx,
|
|
|
|
jump_block,
|
|
|
|
ctx,
|
|
|
|
next_block,
|
|
|
|
ctx,
|
|
|
|
gen_branchif_branch
|
|
|
|
);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-01-15 17:10:52 -05:00
|
|
|
void
|
|
|
|
gen_branchunless_branch(codeblock_t* cb, uint8_t* target0, uint8_t* target1, uint8_t shape)
|
2020-10-27 18:49:17 -04:00
|
|
|
{
|
2021-01-15 17:10:52 -05:00
|
|
|
switch (shape)
|
|
|
|
{
|
|
|
|
case SHAPE_NEXT0:
|
|
|
|
jnz_ptr(cb, target1);
|
|
|
|
break;
|
2020-10-27 18:49:17 -04:00
|
|
|
|
2021-01-15 17:10:52 -05:00
|
|
|
case SHAPE_NEXT1:
|
|
|
|
jz_ptr(cb, target0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHAPE_DEFAULT:
|
|
|
|
jz_ptr(cb, target0);
|
|
|
|
jmp_ptr(cb, target1);
|
|
|
|
break;
|
2020-10-27 18:49:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-15 17:10:52 -05:00
|
|
|
static bool
|
|
|
|
gen_branchunless(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
2021-01-21 15:05:44 -05:00
|
|
|
// TODO: we need to eventually do an interrupt check
|
|
|
|
// The check is supposed to happen only when we jump to the jump target block
|
|
|
|
//
|
2021-01-15 17:10:52 -05:00
|
|
|
// How can we do this while keeping the check logic out of line?
|
2021-01-21 15:05:44 -05:00
|
|
|
// Can we push the VM_CHECK_INTS() into the next block or the stub?
|
|
|
|
// Maybe into a transition edge block
|
2021-01-15 17:10:52 -05:00
|
|
|
//
|
|
|
|
// RUBY_VM_CHECK_INTS(ec);
|
|
|
|
|
|
|
|
// Test if any bit (outside of the Qnil bit) is on
|
|
|
|
// RUBY_Qfalse /* ...0000 0000 */
|
|
|
|
// RUBY_Qnil /* ...0000 1000 */
|
|
|
|
x86opnd_t val_opnd = ctx_stack_pop(ctx, 1);
|
|
|
|
test(cb, val_opnd, imm_opnd(~Qnil));
|
|
|
|
|
|
|
|
// Get the branch target instruction offsets
|
|
|
|
uint32_t next_idx = jit_next_idx(jit);
|
|
|
|
uint32_t jump_idx = next_idx + (uint32_t)jit_get_arg(jit, 0);
|
|
|
|
blockid_t next_block = { jit->iseq, next_idx };
|
|
|
|
blockid_t jump_block = { jit->iseq, jump_idx };
|
|
|
|
|
|
|
|
// Generate the branch instructions
|
|
|
|
gen_branch(
|
|
|
|
ctx,
|
|
|
|
jump_block,
|
|
|
|
ctx,
|
|
|
|
next_block,
|
|
|
|
ctx,
|
|
|
|
gen_branchunless_branch
|
|
|
|
);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2021-01-15 17:10:52 -05:00
|
|
|
gen_jump(jitstate_t* jit, ctx_t* ctx)
|
2020-10-27 15:58:26 -04:00
|
|
|
{
|
2021-01-15 17:10:52 -05:00
|
|
|
// Get the branch target instruction offsets
|
|
|
|
uint32_t jump_idx = jit_next_idx(jit) + (int32_t)jit_get_arg(jit, 0);
|
|
|
|
blockid_t jump_block = { jit->iseq, jump_idx };
|
|
|
|
|
|
|
|
//
|
|
|
|
// TODO:
|
|
|
|
// RUBY_VM_CHECK_INTS(ec);
|
|
|
|
//
|
2020-10-27 15:58:26 -04:00
|
|
|
|
2021-01-15 17:10:52 -05:00
|
|
|
// Generate the jump instruction
|
2021-01-19 11:11:11 -05:00
|
|
|
gen_direct_jump(
|
2021-01-15 17:10:52 -05:00
|
|
|
ctx,
|
2021-01-19 11:11:11 -05:00
|
|
|
jump_block
|
2020-10-27 15:58:26 -04:00
|
|
|
);
|
2021-01-15 17:10:52 -05:00
|
|
|
|
|
|
|
return true;
|
2020-10-27 15:58:26 -04:00
|
|
|
}
|
|
|
|
|
2020-10-29 17:40:58 -04:00
|
|
|
static bool
|
2021-02-01 16:57:38 -05:00
|
|
|
gen_opt_swb_cfunc(jitstate_t* jit, ctx_t* ctx, struct rb_call_data * cd, const rb_callable_method_entry_t *cme, int32_t argc)
|
2020-09-30 15:17:13 -04:00
|
|
|
{
|
2020-10-27 18:49:17 -04:00
|
|
|
const rb_method_cfunc_t *cfunc = UNALIGNED_MEMBER_PTR(cme->def, body.cfunc);
|
2020-10-15 11:46:37 -04:00
|
|
|
|
2020-10-20 15:03:06 -04:00
|
|
|
// Don't JIT if the argument count doesn't match
|
2020-10-19 16:31:15 -04:00
|
|
|
if (cfunc->argc < 0 || cfunc->argc != argc)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-10-20 15:03:06 -04:00
|
|
|
// Don't JIT functions that need C stack arguments for now
|
|
|
|
if (argc + 1 > NUM_C_ARG_REGS)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-10-16 14:46:46 -04:00
|
|
|
// Create a size-exit to fall back to the interpreter
|
2020-12-18 15:02:43 -05:00
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
2020-10-16 14:46:46 -04:00
|
|
|
|
2020-10-27 11:10:19 -04:00
|
|
|
// Check for interrupts
|
|
|
|
// RUBY_VM_CHECK_INTS(ec)
|
|
|
|
mov(cb, REG0_32, member_opnd(REG_EC, rb_execution_context_t, interrupt_mask));
|
|
|
|
not(cb, REG0_32);
|
|
|
|
test(cb, member_opnd(REG_EC, rb_execution_context_t, interrupt_flag), REG0_32);
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
2020-10-16 14:46:46 -04:00
|
|
|
// Points to the receiver operand on the stack
|
|
|
|
x86opnd_t recv = ctx_stack_opnd(ctx, argc);
|
2020-10-20 15:03:06 -04:00
|
|
|
mov(cb, REG0, recv);
|
2020-10-16 14:46:46 -04:00
|
|
|
|
2020-10-23 16:49:59 -04:00
|
|
|
// Callee method ID
|
2021-01-15 17:10:52 -05:00
|
|
|
//ID mid = vm_ci_mid(cd->ci);
|
2020-10-22 12:11:29 -04:00
|
|
|
//printf("JITting call to C function \"%s\", argc: %lu\n", rb_id2name(mid), argc);
|
2020-10-21 16:10:19 -04:00
|
|
|
//print_str(cb, "");
|
|
|
|
//print_str(cb, "calling CFUNC:");
|
|
|
|
//print_str(cb, rb_id2name(mid));
|
|
|
|
//print_str(cb, "recv");
|
|
|
|
//print_ptr(cb, recv);
|
|
|
|
|
2020-10-19 16:31:15 -04:00
|
|
|
// Check that the receiver is a heap object
|
2020-10-20 15:03:06 -04:00
|
|
|
test(cb, REG0, imm_opnd(RUBY_IMMEDIATE_MASK));
|
2020-10-16 14:46:46 -04:00
|
|
|
jnz_ptr(cb, side_exit);
|
2020-10-20 15:03:06 -04:00
|
|
|
cmp(cb, REG0, imm_opnd(Qfalse));
|
2020-10-16 16:57:56 -04:00
|
|
|
je_ptr(cb, side_exit);
|
2020-10-20 15:03:06 -04:00
|
|
|
cmp(cb, REG0, imm_opnd(Qnil));
|
2020-10-16 16:57:56 -04:00
|
|
|
je_ptr(cb, side_exit);
|
2020-10-16 14:46:46 -04:00
|
|
|
|
|
|
|
// Pointer to the klass field of the receiver &(recv->klass)
|
2020-10-20 15:03:06 -04:00
|
|
|
x86opnd_t klass_opnd = mem_opnd(64, REG0, offsetof(struct RBasic, klass));
|
2020-10-16 14:46:46 -04:00
|
|
|
|
2021-01-14 16:58:20 -05:00
|
|
|
assume_method_lookup_stable(cd->cc, cme, jit->block);
|
2021-01-12 12:30:11 -05:00
|
|
|
|
|
|
|
// Bail if receiver class is different from compile-time call cache class
|
2020-10-27 18:49:17 -04:00
|
|
|
mov(cb, REG1, imm_opnd(cd->cc->klass));
|
|
|
|
cmp(cb, klass_opnd, REG1);
|
2020-10-16 14:46:46 -04:00
|
|
|
jne_ptr(cb, side_exit);
|
|
|
|
|
2020-10-27 18:49:17 -04:00
|
|
|
// Store incremented PC into current control frame in case callee raises.
|
2020-12-18 15:02:43 -05:00
|
|
|
mov(cb, REG0, const_ptr_opnd(jit->pc + insn_len(BIN(opt_send_without_block))));
|
2020-10-27 18:49:17 -04:00
|
|
|
mov(cb, mem_opnd(64, REG_CFP, offsetof(rb_control_frame_t, pc)), REG0);
|
2020-10-16 14:46:46 -04:00
|
|
|
|
2020-10-27 15:58:26 -04:00
|
|
|
// If this function needs a Ruby stack frame
|
|
|
|
if (cfunc_needs_frame(cfunc))
|
|
|
|
{
|
|
|
|
// Stack overflow check
|
|
|
|
// #define CHECK_VM_STACK_OVERFLOW0(cfp, sp, margin)
|
|
|
|
// REG_CFP <= REG_SP + 4 * sizeof(VALUE) + sizeof(rb_control_frame_t)
|
|
|
|
lea(cb, REG0, ctx_sp_opnd(ctx, sizeof(VALUE) * 4 + sizeof(rb_control_frame_t)));
|
|
|
|
cmp(cb, REG_CFP, REG0);
|
|
|
|
jle_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Increment the stack pointer by 3 (in the callee)
|
|
|
|
// sp += 3
|
|
|
|
lea(cb, REG0, ctx_sp_opnd(ctx, sizeof(VALUE) * 3));
|
|
|
|
|
2020-10-27 18:49:17 -04:00
|
|
|
// Put compile time cme into REG1. It's assumed to be valid because we are notified when
|
|
|
|
// any cme we depend on become outdated. See rb_ujit_method_lookup_change().
|
|
|
|
mov(cb, REG1, const_ptr_opnd(cme));
|
2020-10-27 15:58:26 -04:00
|
|
|
// Write method entry at sp[-3]
|
|
|
|
// sp[-3] = me;
|
|
|
|
mov(cb, mem_opnd(64, REG0, 8 * -3), REG1);
|
|
|
|
|
|
|
|
// Write block handler at sp[-2]
|
|
|
|
// sp[-2] = block_handler;
|
|
|
|
mov(cb, mem_opnd(64, REG0, 8 * -2), imm_opnd(VM_BLOCK_HANDLER_NONE));
|
|
|
|
|
|
|
|
// Write env flags at sp[-1]
|
|
|
|
// sp[-1] = frame_type;
|
|
|
|
uint64_t frame_type = VM_FRAME_MAGIC_CFUNC | VM_FRAME_FLAG_CFRAME | VM_ENV_FLAG_LOCAL;
|
|
|
|
mov(cb, mem_opnd(64, REG0, 8 * -1), imm_opnd(frame_type));
|
|
|
|
|
|
|
|
// Allocate a new CFP (ec->cfp--)
|
|
|
|
sub(
|
|
|
|
cb,
|
|
|
|
member_opnd(REG_EC, rb_execution_context_t, cfp),
|
|
|
|
imm_opnd(sizeof(rb_control_frame_t))
|
|
|
|
);
|
|
|
|
|
|
|
|
// Setup the new frame
|
|
|
|
// *cfp = (const struct rb_control_frame_struct) {
|
|
|
|
// .pc = 0,
|
|
|
|
// .sp = sp,
|
|
|
|
// .iseq = 0,
|
|
|
|
// .self = recv,
|
|
|
|
// .ep = sp - 1,
|
|
|
|
// .block_code = 0,
|
|
|
|
// .__bp__ = sp,
|
|
|
|
// };
|
|
|
|
mov(cb, REG1, member_opnd(REG_EC, rb_execution_context_t, cfp));
|
|
|
|
mov(cb, member_opnd(REG1, rb_control_frame_t, pc), imm_opnd(0));
|
|
|
|
mov(cb, member_opnd(REG1, rb_control_frame_t, sp), REG0);
|
|
|
|
mov(cb, member_opnd(REG1, rb_control_frame_t, iseq), imm_opnd(0));
|
|
|
|
mov(cb, member_opnd(REG1, rb_control_frame_t, block_code), imm_opnd(0));
|
|
|
|
mov(cb, member_opnd(REG1, rb_control_frame_t, __bp__), REG0);
|
|
|
|
sub(cb, REG0, imm_opnd(sizeof(VALUE)));
|
|
|
|
mov(cb, member_opnd(REG1, rb_control_frame_t, ep), REG0);
|
|
|
|
mov(cb, REG0, recv);
|
|
|
|
mov(cb, member_opnd(REG1, rb_control_frame_t, self), REG0);
|
|
|
|
}
|
2020-09-30 15:17:13 -04:00
|
|
|
|
2020-10-27 18:49:17 -04:00
|
|
|
if (UJIT_CHECK_MODE > 0) {
|
|
|
|
// Verify that we are calling the right function
|
|
|
|
// Save MicroJIT registers
|
|
|
|
push(cb, REG_CFP);
|
|
|
|
push(cb, REG_EC);
|
|
|
|
push(cb, REG_SP);
|
|
|
|
// Maintain 16-byte RSP alignment
|
|
|
|
sub(cb, RSP, imm_opnd(8));
|
|
|
|
|
|
|
|
// Call check_cfunc_dispatch
|
|
|
|
mov(cb, RDI, recv);
|
|
|
|
mov(cb, RSI, const_ptr_opnd(cd));
|
|
|
|
mov(cb, RDX, const_ptr_opnd((void *)cfunc->func));
|
|
|
|
mov(cb, RCX, const_ptr_opnd(cme));
|
|
|
|
call_ptr(cb, REG0, (void *)&check_cfunc_dispatch);
|
|
|
|
|
|
|
|
// Restore registers
|
|
|
|
add(cb, RSP, imm_opnd(8));
|
|
|
|
pop(cb, REG_SP);
|
|
|
|
pop(cb, REG_EC);
|
|
|
|
pop(cb, REG_CFP);
|
|
|
|
}
|
|
|
|
|
2020-10-19 16:31:15 -04:00
|
|
|
// Save the MicroJIT registers
|
2020-10-20 11:11:47 -04:00
|
|
|
push(cb, REG_CFP);
|
|
|
|
push(cb, REG_EC);
|
|
|
|
push(cb, REG_SP);
|
2020-09-30 15:17:13 -04:00
|
|
|
|
2020-10-20 15:03:06 -04:00
|
|
|
// Maintain 16-byte RSP alignment
|
2020-10-22 12:11:29 -04:00
|
|
|
sub(cb, RSP, imm_opnd(8));
|
2020-09-30 15:17:13 -04:00
|
|
|
|
2020-10-20 15:03:06 -04:00
|
|
|
// Copy SP into RAX because REG_SP will get overwritten
|
2020-10-27 14:25:00 -04:00
|
|
|
lea(cb, RAX, ctx_sp_opnd(ctx, 0));
|
2020-10-15 11:46:37 -04:00
|
|
|
|
2020-10-20 15:03:06 -04:00
|
|
|
// Copy the arguments from the stack to the C argument registers
|
2020-10-21 16:10:19 -04:00
|
|
|
// self is the 0th argument and is at index argc from the stack top
|
|
|
|
for (int32_t i = 0; i < argc + 1; ++i)
|
2020-10-20 15:03:06 -04:00
|
|
|
{
|
2020-10-21 16:10:19 -04:00
|
|
|
x86opnd_t stack_opnd = mem_opnd(64, RAX, -(argc + 1 - i) * 8);
|
2020-10-20 15:03:06 -04:00
|
|
|
x86opnd_t c_arg_reg = C_ARG_REGS[i];
|
|
|
|
mov(cb, c_arg_reg, stack_opnd);
|
|
|
|
}
|
2020-10-15 11:46:37 -04:00
|
|
|
|
2020-10-20 15:03:06 -04:00
|
|
|
// Pop the C function arguments from the stack (in the caller)
|
|
|
|
ctx_stack_pop(ctx, argc + 1);
|
2020-10-19 16:31:15 -04:00
|
|
|
|
2020-10-22 12:11:29 -04:00
|
|
|
//print_str(cb, "before C call");
|
2020-10-19 16:31:15 -04:00
|
|
|
|
2020-10-20 15:03:06 -04:00
|
|
|
// Call the C function
|
|
|
|
// VALUE ret = (cfunc->func)(recv, argv[0], argv[1]);
|
2020-10-27 18:49:17 -04:00
|
|
|
// cfunc comes from compile-time cme->def, which we assume to be stable.
|
|
|
|
// Invalidation logic is in rb_ujit_method_lookup_change()
|
2020-10-23 16:49:59 -04:00
|
|
|
call_ptr(cb, REG0, (void*)cfunc->func);
|
2020-10-15 11:46:37 -04:00
|
|
|
|
2020-10-22 12:11:29 -04:00
|
|
|
//print_str(cb, "after C call");
|
2020-10-20 15:03:06 -04:00
|
|
|
|
|
|
|
// Maintain 16-byte RSP alignment
|
2020-10-22 12:11:29 -04:00
|
|
|
add(cb, RSP, imm_opnd(8));
|
2020-10-19 16:31:15 -04:00
|
|
|
|
|
|
|
// Restore MicroJIT registers
|
2020-10-20 11:11:47 -04:00
|
|
|
pop(cb, REG_SP);
|
|
|
|
pop(cb, REG_EC);
|
|
|
|
pop(cb, REG_CFP);
|
2020-10-15 11:46:37 -04:00
|
|
|
|
2020-10-20 16:55:49 -04:00
|
|
|
// Push the return value on the Ruby stack
|
2021-01-20 16:58:09 -05:00
|
|
|
x86opnd_t stack_ret = ctx_stack_push(ctx, T_NONE);
|
2020-10-20 16:55:49 -04:00
|
|
|
mov(cb, stack_ret, RAX);
|
|
|
|
|
2020-10-27 15:58:26 -04:00
|
|
|
// If this function needs a Ruby stack frame
|
|
|
|
if (cfunc_needs_frame(cfunc))
|
|
|
|
{
|
|
|
|
// Pop the stack frame (ec->cfp++)
|
|
|
|
add(
|
|
|
|
cb,
|
|
|
|
member_opnd(REG_EC, rb_execution_context_t, cfp),
|
|
|
|
imm_opnd(sizeof(rb_control_frame_t))
|
|
|
|
);
|
|
|
|
}
|
2020-10-19 16:31:15 -04:00
|
|
|
|
2021-01-15 17:10:52 -05:00
|
|
|
// Jump (fall through) to the call continuation block
|
|
|
|
// We do this to end the current block after the call
|
|
|
|
blockid_t cont_block = { jit->iseq, jit_next_idx(jit) };
|
2021-01-19 11:11:11 -05:00
|
|
|
gen_direct_jump(
|
2021-01-13 15:18:35 -05:00
|
|
|
ctx,
|
2021-01-19 11:11:11 -05:00
|
|
|
cont_block
|
2021-01-13 15:18:35 -05:00
|
|
|
);
|
2020-12-16 17:07:18 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-02-03 16:54:25 -05:00
|
|
|
bool rb_simple_iseq_p(const rb_iseq_t *iseq);
|
|
|
|
|
2021-02-09 16:24:06 -05:00
|
|
|
void
|
|
|
|
gen_return_branch(codeblock_t* cb, uint8_t* target0, uint8_t* target1, uint8_t shape)
|
|
|
|
{
|
|
|
|
switch (shape)
|
|
|
|
{
|
|
|
|
case SHAPE_NEXT0:
|
|
|
|
case SHAPE_NEXT1:
|
|
|
|
RUBY_ASSERT(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHAPE_DEFAULT:
|
|
|
|
mov(cb, REG0, const_ptr_opnd(target0));
|
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, jit_return), REG0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-01 16:57:38 -05:00
|
|
|
static bool
|
|
|
|
gen_opt_swb_iseq(jitstate_t* jit, ctx_t* ctx, struct rb_call_data * cd, const rb_callable_method_entry_t *cme, int32_t argc)
|
|
|
|
{
|
|
|
|
const rb_iseq_t *iseq = def_iseq_ptr(cme->def);
|
|
|
|
const VALUE* start_pc = iseq->body->iseq_encoded;
|
|
|
|
int num_params = iseq->body->param.size;
|
|
|
|
int num_locals = iseq->body->local_table_size - num_params;
|
|
|
|
|
|
|
|
if (num_params != argc) {
|
|
|
|
//fprintf(stderr, "param argc mismatch\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-03 16:54:25 -05:00
|
|
|
if (!rb_simple_iseq_p(iseq)) {
|
|
|
|
// Only handle iseqs that have simple parameters.
|
|
|
|
// See vm_callee_setup_arg().
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
rb_gc_register_mark_object((VALUE)iseq); // FIXME: intentional LEAK!
|
|
|
|
|
2021-02-01 16:57:38 -05:00
|
|
|
// Create a size-exit to fall back to the interpreter
|
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
|
|
|
|
|
|
|
// Check for interrupts
|
|
|
|
// RUBY_VM_CHECK_INTS(ec)
|
|
|
|
mov(cb, REG0_32, member_opnd(REG_EC, rb_execution_context_t, interrupt_mask));
|
|
|
|
not(cb, REG0_32);
|
|
|
|
test(cb, member_opnd(REG_EC, rb_execution_context_t, interrupt_flag), REG0_32);
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Points to the receiver operand on the stack
|
|
|
|
x86opnd_t recv = ctx_stack_opnd(ctx, argc);
|
|
|
|
mov(cb, REG0, recv);
|
|
|
|
|
|
|
|
// Callee method ID
|
|
|
|
//ID mid = vm_ci_mid(cd->ci);
|
|
|
|
//printf("JITting call to Ruby function \"%s\", argc: %d\n", rb_id2name(mid), argc);
|
|
|
|
//print_str(cb, "");
|
|
|
|
//print_str(cb, "recv");
|
|
|
|
//print_ptr(cb, recv);
|
|
|
|
|
|
|
|
// Check that the receiver is a heap object
|
|
|
|
test(cb, REG0, imm_opnd(RUBY_IMMEDIATE_MASK));
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
cmp(cb, REG0, imm_opnd(Qfalse));
|
|
|
|
je_ptr(cb, side_exit);
|
|
|
|
cmp(cb, REG0, imm_opnd(Qnil));
|
|
|
|
je_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// Pointer to the klass field of the receiver &(recv->klass)
|
|
|
|
x86opnd_t klass_opnd = mem_opnd(64, REG0, offsetof(struct RBasic, klass));
|
|
|
|
|
|
|
|
assume_method_lookup_stable(cd->cc, cme, jit->block);
|
|
|
|
|
|
|
|
// Bail if receiver class is different from compile-time call cache class
|
|
|
|
mov(cb, REG1, imm_opnd(cd->cc->klass));
|
|
|
|
cmp(cb, klass_opnd, REG1);
|
|
|
|
jne_ptr(cb, side_exit);
|
|
|
|
|
2021-02-09 16:24:06 -05:00
|
|
|
// Store the updated SP on the current frame (pop arguments and receiver)
|
|
|
|
lea(cb, REG0, ctx_sp_opnd(ctx, sizeof(VALUE) * -(argc + 1)));
|
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, sp), REG0);
|
|
|
|
|
|
|
|
// Store the next PC i the current frame
|
2021-02-01 16:57:38 -05:00
|
|
|
mov(cb, REG0, const_ptr_opnd(jit->pc + insn_len(BIN(opt_send_without_block))));
|
|
|
|
mov(cb, mem_opnd(64, REG_CFP, offsetof(rb_control_frame_t, pc)), REG0);
|
|
|
|
|
|
|
|
// Stack overflow check
|
|
|
|
// #define CHECK_VM_STACK_OVERFLOW0(cfp, sp, margin)
|
2021-02-02 14:31:02 -05:00
|
|
|
lea(cb, REG0, ctx_sp_opnd(ctx, sizeof(VALUE) * (num_locals + iseq->body->stack_max) + sizeof(rb_control_frame_t)));
|
2021-02-01 16:57:38 -05:00
|
|
|
cmp(cb, REG_CFP, REG0);
|
|
|
|
jle_ptr(cb, side_exit);
|
2021-02-02 14:31:02 -05:00
|
|
|
|
2021-02-01 16:57:38 -05:00
|
|
|
// Adjust the callee's stack pointer
|
|
|
|
lea(cb, REG0, ctx_sp_opnd(ctx, sizeof(VALUE) * (3 + num_locals)));
|
|
|
|
|
|
|
|
// Initialize local variables to Qnil
|
2021-02-04 16:37:14 -05:00
|
|
|
for (int i = 0; i < num_locals; i++) {
|
2021-02-01 16:57:38 -05:00
|
|
|
mov(cb, mem_opnd(64, REG0, sizeof(VALUE) * (i - num_locals - 3)), imm_opnd(Qnil));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put compile time cme into REG1. It's assumed to be valid because we are notified when
|
|
|
|
// any cme we depend on become outdated. See rb_ujit_method_lookup_change().
|
|
|
|
mov(cb, REG1, const_ptr_opnd(cme));
|
|
|
|
// Write method entry at sp[-3]
|
|
|
|
// sp[-3] = me;
|
|
|
|
mov(cb, mem_opnd(64, REG0, 8 * -3), REG1);
|
|
|
|
|
|
|
|
// Write block handler at sp[-2]
|
|
|
|
// sp[-2] = block_handler;
|
|
|
|
mov(cb, mem_opnd(64, REG0, 8 * -2), imm_opnd(VM_BLOCK_HANDLER_NONE));
|
|
|
|
|
|
|
|
// Write env flags at sp[-1]
|
|
|
|
// sp[-1] = frame_type;
|
|
|
|
uint64_t frame_type = VM_FRAME_MAGIC_METHOD | VM_ENV_FLAG_LOCAL;
|
|
|
|
mov(cb, mem_opnd(64, REG0, 8 * -1), imm_opnd(frame_type));
|
|
|
|
|
|
|
|
// Allocate a new CFP (ec->cfp--)
|
2021-02-05 12:18:55 -05:00
|
|
|
sub(cb, REG_CFP, imm_opnd(sizeof(rb_control_frame_t)));
|
|
|
|
mov(cb, member_opnd(REG_EC, rb_execution_context_t, cfp), REG_CFP);
|
2021-02-01 16:57:38 -05:00
|
|
|
|
|
|
|
// Setup the new frame
|
|
|
|
// *cfp = (const struct rb_control_frame_struct) {
|
2021-02-03 16:09:03 -05:00
|
|
|
// .pc = pc,
|
2021-02-01 16:57:38 -05:00
|
|
|
// .sp = sp,
|
2021-02-03 16:09:03 -05:00
|
|
|
// .iseq = iseq,
|
2021-02-01 16:57:38 -05:00
|
|
|
// .self = recv,
|
|
|
|
// .ep = sp - 1,
|
|
|
|
// .block_code = 0,
|
|
|
|
// .__bp__ = sp,
|
|
|
|
// };
|
2021-02-10 19:56:50 -05:00
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, block_code), imm_opnd(0));
|
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, sp), REG0);
|
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, __bp__), REG0);
|
2021-02-01 16:57:38 -05:00
|
|
|
sub(cb, REG0, imm_opnd(sizeof(VALUE)));
|
2021-02-10 19:56:50 -05:00
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, ep), REG0);
|
2021-02-01 16:57:38 -05:00
|
|
|
mov(cb, REG0, recv);
|
2021-02-10 19:56:50 -05:00
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, self), REG0);
|
2021-02-01 16:57:38 -05:00
|
|
|
mov(cb, REG0, const_ptr_opnd(iseq));
|
2021-02-10 19:56:50 -05:00
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, iseq), REG0);
|
2021-02-01 16:57:38 -05:00
|
|
|
mov(cb, REG0, const_ptr_opnd(start_pc));
|
2021-02-10 19:56:50 -05:00
|
|
|
mov(cb, member_opnd(REG_CFP, rb_control_frame_t, pc), REG0);
|
2021-02-10 15:51:07 -05:00
|
|
|
|
|
|
|
// Stub so we can return to JITted code
|
|
|
|
blockid_t return_block = { jit->iseq, jit_next_insn_idx(jit) };
|
|
|
|
|
|
|
|
// Pop arguments and receiver in return context, push the return value
|
|
|
|
// After the return, the JIT and interpreter SP will match up
|
|
|
|
ctx_t return_ctx = *ctx;
|
|
|
|
ctx_stack_pop(&return_ctx, argc + 1);
|
|
|
|
ctx_stack_push(&return_ctx, T_NONE);
|
|
|
|
return_ctx.sp_offset = 0;
|
|
|
|
|
|
|
|
// Write the JIT return address on the callee frame
|
|
|
|
gen_branch(
|
|
|
|
ctx,
|
|
|
|
return_block,
|
|
|
|
&return_ctx,
|
|
|
|
return_block,
|
|
|
|
&return_ctx,
|
|
|
|
gen_return_branch
|
|
|
|
);
|
|
|
|
|
2021-02-01 16:57:38 -05:00
|
|
|
//print_str(cb, "calling Ruby func:");
|
2021-02-05 12:18:55 -05:00
|
|
|
//print_str(cb, rb_id2name(vm_ci_mid(cd->ci)));
|
|
|
|
|
|
|
|
// Load the updated SP
|
|
|
|
mov(cb, REG_SP, member_opnd(REG_CFP, rb_control_frame_t, sp));
|
|
|
|
|
|
|
|
// Directly jump to the entry point of the callee
|
|
|
|
gen_direct_jump(
|
|
|
|
&DEFAULT_CTX,
|
|
|
|
(blockid_t){ iseq, 0 }
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: create stub for call continuation
|
|
|
|
|
|
|
|
// TODO: need to pop args in the caller ctx
|
|
|
|
|
|
|
|
// TODO: stub so we can return to JITted code
|
|
|
|
//blockid_t cont_block = { jit->iseq, jit_next_insn_idx(jit) };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-02-01 16:57:38 -05:00
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
gen_opt_send_without_block(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
// Relevant definitions:
|
|
|
|
// rb_execution_context_t : vm_core.h
|
|
|
|
// invoker, cfunc logic : method.h, vm_method.c
|
|
|
|
// rb_callable_method_entry_t : method.h
|
|
|
|
// vm_call_cfunc_with_frame : vm_insnhelper.c
|
|
|
|
// rb_callcache : vm_callinfo.h
|
|
|
|
|
|
|
|
struct rb_call_data * cd = (struct rb_call_data *)jit_get_arg(jit, 0);
|
|
|
|
int32_t argc = (int32_t)vm_ci_argc(cd->ci);
|
|
|
|
|
|
|
|
// Don't JIT calls with keyword splat
|
|
|
|
if (vm_ci_flag(cd->ci) & VM_CALL_KW_SPLAT)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't JIT calls that aren't simple
|
|
|
|
if (!(vm_ci_flag(cd->ci) & VM_CALL_ARGS_SIMPLE))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't JIT if the inline cache is not set
|
|
|
|
if (!cd->cc || !cd->cc->klass) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const rb_callable_method_entry_t *cme = vm_cc_cme(cd->cc);
|
|
|
|
|
|
|
|
// Don't JIT if the method entry is out of date
|
|
|
|
if (METHOD_ENTRY_INVALIDATED(cme)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is a C call
|
|
|
|
if (cme->def->type == VM_METHOD_TYPE_CFUNC)
|
|
|
|
{
|
|
|
|
return gen_opt_swb_cfunc(jit, ctx, cd, cme, argc);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is a Ruby call
|
|
|
|
if (cme->def->type == VM_METHOD_TYPE_ISEQ)
|
|
|
|
{
|
|
|
|
return gen_opt_swb_iseq(jit, ctx, cd, cme, argc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-01-28 16:58:20 -05:00
|
|
|
static bool
|
|
|
|
gen_leave(jitstate_t* jit, ctx_t* ctx)
|
|
|
|
{
|
|
|
|
// Only the return value should be on the stack
|
|
|
|
RUBY_ASSERT(ctx->stack_size == 1);
|
|
|
|
|
|
|
|
// Create a size-exit to fall back to the interpreter
|
|
|
|
uint8_t* side_exit = ujit_side_exit(jit, ctx);
|
|
|
|
|
|
|
|
// Load environment pointer EP from CFP
|
|
|
|
mov(cb, REG0, member_opnd(REG_CFP, rb_control_frame_t, ep));
|
|
|
|
|
2021-02-05 12:18:55 -05:00
|
|
|
// if (flags & VM_FRAME_FLAG_FINISH) != 0
|
2021-01-28 16:58:20 -05:00
|
|
|
x86opnd_t flags_opnd = mem_opnd(64, REG0, sizeof(VALUE) * VM_ENV_DATA_INDEX_FLAGS);
|
|
|
|
test(cb, flags_opnd, imm_opnd(VM_FRAME_FLAG_FINISH));
|
|
|
|
jnz_ptr(cb, side_exit);
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
// RUBY_VM_CHECK_INTS(ec);
|
|
|
|
|
|
|
|
// Load the return value
|
|
|
|
mov(cb, REG0, ctx_stack_pop(ctx, 1));
|
|
|
|
|
2021-02-10 15:51:07 -05:00
|
|
|
// Load the JIT return address
|
|
|
|
mov(cb, REG1, member_opnd(REG_CFP, rb_control_frame_t, jit_return));
|
|
|
|
|
2021-02-05 12:18:55 -05:00
|
|
|
// Pop the current frame (ec->cfp++)
|
2021-01-28 16:58:20 -05:00
|
|
|
// Note: the return PC is already in the previous CFP
|
|
|
|
add(cb, REG_CFP, imm_opnd(sizeof(rb_control_frame_t)));
|
|
|
|
mov(cb, member_opnd(REG_EC, rb_execution_context_t, cfp), REG_CFP);
|
|
|
|
|
|
|
|
// Push the return value on the caller frame
|
2021-02-05 12:18:55 -05:00
|
|
|
// The SP points one above the topmost value
|
2021-01-28 16:58:20 -05:00
|
|
|
add(cb, member_opnd(REG_CFP, rb_control_frame_t, sp), imm_opnd(SIZEOF_VALUE));
|
2021-02-05 12:18:55 -05:00
|
|
|
mov(cb, REG_SP, member_opnd(REG_CFP, rb_control_frame_t, sp));
|
2021-02-10 19:56:50 -05:00
|
|
|
mov(cb, mem_opnd(64, REG_SP, -SIZEOF_VALUE), REG0);
|
2021-02-09 16:24:06 -05:00
|
|
|
|
|
|
|
// If the return address is NULL, fall back to the interpreter
|
|
|
|
int FALLBACK_LABEL = cb_new_label(cb, "FALLBACK");
|
2021-02-10 15:51:07 -05:00
|
|
|
cmp(cb, REG1, imm_opnd(0));
|
2021-02-09 16:24:06 -05:00
|
|
|
jz(cb, FALLBACK_LABEL);
|
|
|
|
|
|
|
|
// Jump to the JIT return address
|
2021-02-10 15:51:07 -05:00
|
|
|
jmp_rm(cb, REG1);
|
2021-02-09 16:24:06 -05:00
|
|
|
|
|
|
|
// Fall back to the interpreter
|
|
|
|
cb_write_label(cb, FALLBACK_LABEL);
|
|
|
|
cb_link_labels(cb);
|
2021-01-28 16:58:20 -05:00
|
|
|
cb_write_post_call_bytes(cb);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-01-07 17:09:25 -05:00
|
|
|
void ujit_reg_op(int opcode, codegen_fn gen_fn, bool is_branch)
|
|
|
|
{
|
|
|
|
// Check that the op wasn't previously registered
|
|
|
|
st_data_t st_desc;
|
|
|
|
if (rb_st_lookup(gen_fns, opcode, &st_desc)) {
|
|
|
|
rb_bug("op already registered");
|
|
|
|
}
|
|
|
|
|
|
|
|
opdesc_t* p_desc = (opdesc_t*)malloc(sizeof(opdesc_t));
|
|
|
|
p_desc->gen_fn = gen_fn;
|
|
|
|
p_desc->is_branch = is_branch;
|
|
|
|
|
|
|
|
st_insert(gen_fns, (st_data_t)opcode, (st_data_t)p_desc);
|
|
|
|
}
|
|
|
|
|
2020-10-13 11:15:22 -04:00
|
|
|
void
|
2020-12-08 16:54:41 -05:00
|
|
|
ujit_init_codegen(void)
|
2020-09-14 13:31:34 -04:00
|
|
|
{
|
2020-09-28 15:50:41 -04:00
|
|
|
// Initialize the code blocks
|
2021-01-12 14:56:43 -05:00
|
|
|
uint32_t mem_size = 128 * 1024 * 1024;
|
2020-09-28 15:50:41 -04:00
|
|
|
uint8_t* mem_block = alloc_exec_mem(mem_size);
|
2020-09-14 13:31:34 -04:00
|
|
|
cb = █
|
2020-09-28 15:50:41 -04:00
|
|
|
cb_init(cb, mem_block, mem_size/2);
|
|
|
|
ocb = &outline_block;
|
|
|
|
cb_init(ocb, mem_block + mem_size/2, mem_size/2);
|
2020-09-15 17:04:33 -04:00
|
|
|
|
|
|
|
// Initialize the codegen function table
|
|
|
|
gen_fns = rb_st_init_numtable();
|
|
|
|
|
|
|
|
// Map YARV opcodes to the corresponding codegen functions
|
2021-01-07 17:09:25 -05:00
|
|
|
ujit_reg_op(BIN(dup), gen_dup, false);
|
|
|
|
ujit_reg_op(BIN(nop), gen_nop, false);
|
|
|
|
ujit_reg_op(BIN(pop), gen_pop, false);
|
|
|
|
ujit_reg_op(BIN(putnil), gen_putnil, false);
|
|
|
|
ujit_reg_op(BIN(putobject), gen_putobject, false);
|
|
|
|
ujit_reg_op(BIN(putobject_INT2FIX_0_), gen_putobject_int2fix, false);
|
|
|
|
ujit_reg_op(BIN(putobject_INT2FIX_1_), gen_putobject_int2fix, false);
|
|
|
|
ujit_reg_op(BIN(putself), gen_putself, false);
|
|
|
|
ujit_reg_op(BIN(getlocal_WC_0), gen_getlocal_wc0, false);
|
2021-02-03 16:54:25 -05:00
|
|
|
ujit_reg_op(BIN(getlocal_WC_1), gen_getlocal_wc1, false);
|
2021-01-07 17:09:25 -05:00
|
|
|
ujit_reg_op(BIN(setlocal_WC_0), gen_setlocal_wc0, false);
|
|
|
|
ujit_reg_op(BIN(getinstancevariable), gen_getinstancevariable, false);
|
|
|
|
ujit_reg_op(BIN(setinstancevariable), gen_setinstancevariable, false);
|
|
|
|
ujit_reg_op(BIN(opt_lt), gen_opt_lt, false);
|
2021-02-03 11:25:34 -05:00
|
|
|
ujit_reg_op(BIN(opt_le), gen_opt_le, false);
|
|
|
|
ujit_reg_op(BIN(opt_ge), gen_opt_ge, false);
|
2021-02-04 16:37:14 -05:00
|
|
|
ujit_reg_op(BIN(opt_aref), gen_opt_aref, false);
|
2021-02-01 11:51:47 -05:00
|
|
|
ujit_reg_op(BIN(opt_and), gen_opt_and, false);
|
2021-01-07 17:09:25 -05:00
|
|
|
ujit_reg_op(BIN(opt_minus), gen_opt_minus, false);
|
|
|
|
ujit_reg_op(BIN(opt_plus), gen_opt_plus, false);
|
2021-01-21 15:05:44 -05:00
|
|
|
ujit_reg_op(BIN(branchif), gen_branchif, true);
|
2021-01-07 17:09:25 -05:00
|
|
|
ujit_reg_op(BIN(branchunless), gen_branchunless, true);
|
2021-01-08 15:18:03 -05:00
|
|
|
ujit_reg_op(BIN(jump), gen_jump, true);
|
2021-01-15 17:10:52 -05:00
|
|
|
ujit_reg_op(BIN(opt_send_without_block), gen_opt_send_without_block, true);
|
2021-01-28 16:58:20 -05:00
|
|
|
ujit_reg_op(BIN(leave), gen_leave, true);
|
2020-09-14 13:31:34 -04:00
|
|
|
}
|