From 2b53562cc763d3e351770f1a80c874bcfe6620d1 Mon Sep 17 00:00:00 2001 From: "yu.dongliang" <18588496441@163.com> Date: Fri, 23 Jun 2023 12:10:28 +0800 Subject: [PATCH] x64: re-open peephole optimizer --- native/x64/scf_x64.c | 14 +++++++-- native/x64/scf_x64_peephole.c | 55 ++--------------------------------- 2 files changed, 14 insertions(+), 55 deletions(-) diff --git a/native/x64/scf_x64.c b/native/x64/scf_x64.c index 2007c5c..dba3224 100644 --- a/native/x64/scf_x64.c +++ b/native/x64/scf_x64.c @@ -260,8 +260,16 @@ static int _x64_function_finish(scf_function_t* f) int err = _x64_save_rabi(f); if (err < 0) return err; - } else - f->init_code_bytes = 0; + } else { + inst = x64_make_inst_G(pop, rbp); + X64_INST_ADD_CHECK(end->instructions, inst); + end->inst_bytes += inst->len; + bb ->code_bytes += inst->len; + + inst = x64_make_inst_G(push, rbp); + X64_INST_ADD_CHECK(f->init_code->instructions, inst); + f->init_code_bytes = inst->len; + } err = x64_push_callee_regs(f->init_code, f); if (err < 0) @@ -1102,7 +1110,7 @@ int _scf_x64_select_inst(scf_native_t* ctx) return ret; } } -#if 0 +#if 1 if (x64_optimize_peephole(ctx, f) < 0) { scf_loge("\n"); return -1; diff --git a/native/x64/scf_x64_peephole.c b/native/x64/scf_x64_peephole.c index 52cc854..05c731d 100644 --- a/native/x64/scf_x64_peephole.c +++ b/native/x64/scf_x64_peephole.c @@ -69,9 +69,6 @@ static int _x64_peephole_common(scf_vector_t* std_insts, scf_instruction_t* inst if (std->nb_used > 0) continue; - if (SCF_X64_POP == std->OpCode->type) - _x64_peephole_del_push_by_pop(std_insts, std); - assert(0 == scf_vector_del(std->c->instructions, std)); free(std); @@ -293,18 +290,7 @@ static void _x64_peephole_function(scf_vector_t* tmp_insts, scf_function_t* f, i scf_register_t* r0; scf_register_t* r1; - if (SCF_X64_PUSH == inst->OpCode->type) - continue; - - else if (SCF_X64_POP == inst->OpCode->type) { - - r0 = (scf_register_t*)inst->dst.base; - - if (x64_inst_data_is_reg(&inst->dst) - && (r0 == rax || r0 == rsp || r0 == rbp)) - continue; - - } else if (SCF_X64_MOV != inst->OpCode->type) + if (SCF_X64_MOV != inst->OpCode->type) continue; if (x64_inst_data_is_reg(&inst->dst)) { @@ -385,10 +371,6 @@ static void _x64_peephole_function(scf_vector_t* tmp_insts, scf_function_t* f, i c = inst->c; - if (SCF_X64_POP == inst->OpCode->type) { - _x64_peephole_del_push_by_pop(tmp_insts, inst); - i--; - } assert(0 == scf_vector_del(c->instructions, inst)); assert(0 == scf_vector_del(tmp_insts, inst)); @@ -411,34 +393,8 @@ static void _x64_peephole_function(scf_vector_t* tmp_insts, scf_function_t* f, i if (nb_locals > 0) f->bp_used_flag = 1; - else { + else f->bp_used_flag = 0; - - l = scf_list_tail(&f->basic_block_list_head); - bb = scf_list_data(l, scf_basic_block_t, list); - - l = scf_list_tail(&bb->code_list_head); - c = scf_list_data(l, scf_3ac_code_t, list); - - assert(SCF_OP_3AC_END == c->op->type); - - for (i = c->instructions->size - 2; i >= 0; i--) { - inst = c->instructions->data[i]; - - c ->inst_bytes -= inst->len; - bb->code_bytes -= inst->len; - - assert(0 == scf_vector_del(c->instructions, inst)); - - free(inst); - inst = NULL; - } - - assert(1 == c->instructions->size); - - inst = c->instructions->data[0]; - assert(SCF_X64_RET == inst->OpCode->type); - } } int x64_optimize_peephole(scf_native_t* ctx, scf_function_t* f) @@ -511,16 +467,11 @@ int x64_optimize_peephole(scf_native_t* ctx, scf_function_t* f) if (SCF_X64_MOV != inst->OpCode->type && SCF_X64_CMP != inst->OpCode->type - && SCF_X64_TEST != inst->OpCode->type - && SCF_X64_PUSH != inst->OpCode->type - && SCF_X64_POP != inst->OpCode->type) { + && SCF_X64_TEST != inst->OpCode->type) { scf_vector_clear(std_insts, NULL); goto next; } - if (SCF_X64_PUSH == inst->OpCode->type) - goto next; - if (SCF_X64_CMP == inst->OpCode->type || SCF_X64_TEST == inst->OpCode->type) { ret = _x64_peephole_cmp(std_insts, inst); -- 2.25.1