From 887df090cbec2b7e2c738e451a9b9f5aea2fb70a Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sat, 17 Jul 2021 08:11:15 +0900 Subject: codegen.c: optimize variable assignments after `OP_MOVE`. - `OP_SETGV` - `OP_SETIV` - `OP_SETCV` - `OP_SETCONST` --- mrbgems/mruby-compiler/core/codegen.c | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) (limited to 'mrbgems/mruby-compiler/core/codegen.c') diff --git a/mrbgems/mruby-compiler/core/codegen.c b/mrbgems/mruby-compiler/core/codegen.c index 2a95a79ad..a673bd274 100644 --- a/mrbgems/mruby-compiler/core/codegen.c +++ b/mrbgems/mruby-compiler/core/codegen.c @@ -529,6 +529,20 @@ gen_setupvar(codegen_scope *s, uint16_t dst, mrb_sym id) genop_3(s, OP_SETUPVAR, dst, idx, lv); } +static int new_sym(codegen_scope *s, mrb_sym sym); + +static void +gen_setxv(codegen_scope *s, uint8_t op, uint16_t dst, mrb_sym sym) +{ + int idx = new_sym(s, sym); + struct mrb_insn_data data = mrb_last_insn(s); + if (!no_peephole(s) && data.insn == OP_MOVE && data.a == dst) { + dst = data.b; + s->pc = s->lastpc; + } + genop_2(s, op, dst, idx); +} + static void gen_return(codegen_scope *s, uint8_t op, uint16_t src) { @@ -1312,8 +1326,7 @@ gen_assignment(codegen_scope *s, node *tree, int sp, int val) tree = tree->cdr; switch (type) { case NODE_GVAR: - idx = new_sym(s, nsym(tree)); - genop_2(s, OP_SETGV, sp, idx); + gen_setxv(s, OP_SETGV, sp, nsym(tree)); break; case NODE_ARG: case NODE_LVAR: @@ -1333,16 +1346,13 @@ gen_assignment(codegen_scope *s, node *tree, int sp, int val) codegen_error(s, "Can't assign to numbered parameter"); break; case NODE_IVAR: - idx = new_sym(s, nsym(tree)); - genop_2(s, OP_SETIV, sp, idx); + gen_setxv(s, OP_SETIV, sp, nsym(tree)); break; case NODE_CVAR: - idx = new_sym(s, nsym(tree)); - genop_2(s, OP_SETCV, sp, idx); + gen_setxv(s, OP_SETCV, sp, nsym(tree)); break; case NODE_CONST: - idx = new_sym(s, nsym(tree)); - genop_2(s, OP_SETCONST, sp, idx); + gen_setxv(s, OP_SETCONST, sp, nsym(tree)); break; case NODE_COLON2: gen_move(s, cursp(), sp, 0); -- cgit v1.2.3