summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-compiler/core/codegen.c
AgeCommit message (Expand)Author
2016-07-25OP_ASGN vsp may be negativeYukihiro "Matz" Matsumoto
2016-06-10fix a compiler warning for uninitialized variableYukihiro "Matz" Matsumoto
2016-05-16fixed remaining bugs in OP_ASGN stack adjustment; close #3159Yukihiro "Matz" Matsumoto
2016-05-16stack adjustment after NODE_OP_ASGN with NODE_CALL was wrong; fix #3159Yukihiro "Matz" Matsumoto
2016-05-09raise the error at runtime; fix #3152cremno
2016-04-01fix too much optimization for `||=`Yukihiro "Matz" Matsumoto
2016-03-30fix duplicated eval in op_asgnYukihiro "Matz" Matsumoto
2016-03-30reduce OP_ARRAY in argument splatYukihiro "Matz" Matsumoto
2016-03-24better code generation for `||=`; #3138Yukihiro "Matz" Matsumoto
2016-03-23add safe-navigation (aka lonely) operator `&.`Yukihiro "Matz" Matsumoto
2016-03-21rescue NameError from class variable access like `@@foo ||= 42`; fix #3138Yukihiro "Matz" Matsumoto
2016-02-22too many register push for else-less condtions; fix #3117Yukihiro "Matz" Matsumoto
2016-02-17peephole optimization for LOADNIL before STRCAT; ref #3110Yukihiro "Matz" Matsumoto
2016-02-17push value for NULL AST when value is required; fix #3110Yukihiro "Matz" Matsumoto
2015-11-27include changed from by quotes ("") to by brackets (<>); close #3032Yukihiro "Matz" Matsumoto
2015-11-19Fix typo on MRB_DISABLE_STDIO.Simon Génier
2015-11-17DISABLE_STDIO/ENABLE_DEBUG macros to rename; close #3014Yukihiro "Matz" Matsumoto
2015-10-01optimize if statement with constant conditionYukihiro "Matz" Matsumoto
2015-09-26support Regexp literal option: //n and //utakahashim
2015-08-10codegen: don't need to genop(); just update s->iseq directlyYukihiro "Matz" Matsumoto
2015-08-10codegen: add peep hole optimization to skip overridden OP_MOVEYukihiro "Matz" Matsumoto
2015-08-10codegen: reserve stack region for OP_APOST; fix #2824Yukihiro "Matz" Matsumoto
2015-06-28Fix segfault found using afl-fuzzJurriaan Pruis
2015-06-02push only after OP_GETCONST in VAL mode; ref #2769cremno
2015-06-01Compile mruby compiler as mrbgem.take_cheeze