index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
mrbgems
/
mruby-compiler
Age
Commit message (
Expand
)
Author
2021-09-20
codegen.c: check `no_peephole(s)` before `mrb_last_insn(s)`.
Yukihiro "Matz" Matsumoto
2021-09-20
codegen.c (mrb_last_insn): no previous instruction on top.
Yukihiro "Matz" Matsumoto
2021-09-19
codegen.c: unify `OP_ARYPUSH` and `OP_ARYPUSH_N`.
Yukihiro "Matz" Matsumoto
2021-09-17
ops.h: add `OP_ARYPUSH_N` instruction.
Yukihiro "Matz" Matsumoto
2021-09-13
parse.y: `cons_free` unused node (empty string node).
Yukihiro "Matz" Matsumoto
2021-09-13
parse.y: allow non-local variable access from hash value omission.
Yukihiro "Matz" Matsumoto
2021-09-13
parse.y: allow value omission in Hash literals introduced in Ruby3.1.
Yukihiro "Matz" Matsumoto
2021-09-12
parse.y: fix `nint` (int to node) and `intn` (node to int).
Yukihiro "Matz" Matsumoto
2021-09-12
parse.y: avoid adding zero length strings.
Yukihiro "Matz" Matsumoto
2021-09-10
codegen.c: fixed `gen_setxv` bug with taking assignment value; fix #5550
Yukihiro "Matz" Matsumoto
2021-09-10
codegen.c: `gen_move` refactoring.
Yukihiro "Matz" Matsumoto
2021-09-10
ops.h: add `OP_SYMBOL` instruction.
Yukihiro "Matz" Matsumoto
2021-09-10
fixup! codegen.c: resurrect `s->lastpc` to reduce `iseq` scans.
Yukihiro "Matz" Matsumoto
2021-09-10
codegen.c: resurrect `s->lastpc` to reduce `iseq` scans.
Yukihiro "Matz" Matsumoto
2021-09-07
codegen.c: improve exception handling in `generate_code`.
Yukihiro "Matz" Matsumoto
2021-09-07
parse.y: refactor `mrb_parser_parse()`.
Yukihiro "Matz" Matsumoto
2021-09-06
parse.y: refactoring `mrb_parser_parser()`.
Yukihiro "Matz" Matsumoto
2021-09-05
codegen.c: avoid integer overflow.
Yukihiro "Matz" Matsumoto
2021-08-21
Organize the include of header files
dearblue
2021-08-13
codegen.c: fixed a bug in `mrb_decode_insn()`.
Yukihiro "Matz" Matsumoto
2021-08-13
codegen.c: add a comment that notice `rewind_pc` calling convention.
Yukihiro "Matz" Matsumoto
2021-08-13
codegen.c: refactor `mrb_last_insn()`.
Yukihiro "Matz" Matsumoto
2021-08-13
codegen.c: `mrb_prev_pc` can return `NULL` at the top of `iseq`.
Yukihiro "Matz" Matsumoto
2021-08-11
codegen.c: avoid signedness warning of int comparison.
Yukihiro "Matz" Matsumoto
2021-08-11
codegen.c: avoid cross initialization of `mrb_insn_data`.
Yukihiro "Matz" Matsumoto
2021-08-11
codegen.c: more peephole optimization.
Yukihiro "Matz" Matsumoto
2021-08-07
codegen.c: need to push the value when the loop was eliminated.
Yukihiro "Matz" Matsumoto
2021-08-06
codegen.c: `-9223372036854775808 % -1` overflows 64 bit integer.
Yukihiro "Matz" Matsumoto
2021-08-05
codegen.c: remove code duplication from `NODE_ARRAY`.
Yukihiro "Matz" Matsumoto
2021-08-04
codegen.c: detect integer overflow in division.
Yukihiro "Matz" Matsumoto
2021-08-03
codegen.c: check zero division before constant folding.
Yukihiro "Matz" Matsumoto
2021-08-03
codegen.c: avoid division by zero in constant folding.
Yukihiro "Matz" Matsumoto
2021-08-02
codegen.c: allow constant folding for negative integer modulo.
Yukihiro "Matz" Matsumoto
2021-08-02
codegen.c: refactor `readint()` to read `MRB_INT_MIN`.
Yukihiro "Matz" Matsumoto
2021-08-02
codegen.c: fix a bug in bit shift constant folding.
Yukihiro "Matz" Matsumoto
2021-08-02
codegen.c: refactor unary operator optimization.
Yukihiro "Matz" Matsumoto
2021-08-02
codegen.c: constant folding binary operators, <<, >>, %, &, |, ^.
Yukihiro "Matz" Matsumoto
2021-08-01
codegen.c: eliminate loop if condition is constant.
Yukihiro "Matz" Matsumoto
2021-08-01
codegen.c: peephole optimize OP_JMPxxx.
Yukihiro "Matz" Matsumoto
2021-07-31
codegen.c: allow constant folding for mul / div.
Yukihiro "Matz" Matsumoto
2021-07-31
codegen.c: `mrb_prev_pc()` to take previous instruction position.
Yukihiro "Matz" Matsumoto
2021-07-29
codegen.c: order instructions in natural order for loops.
Yukihiro "Matz" Matsumoto
2021-07-28
codegen.c: labels should be `uint32_t`.
Yukihiro "Matz" Matsumoto
2021-07-28
codegen.c: fix `loopinfo` structure members.
Yukihiro "Matz" Matsumoto
2021-07-28
codegen.c: removed bytecode when the value of `while` is not used.
Yukihiro "Matz" Matsumoto
2021-07-28
codegen.c: fixed a bug when value is taken from `while` and `until`.
Yukihiro "Matz" Matsumoto
2021-07-26
parse.y: fix an integer cast warning.
Yukihiro "Matz" Matsumoto
2021-07-26
parse.y: `mrb_int_read()` returns `mrb_int` not `unsigned long`.
Yukihiro "Matz" Matsumoto
2021-07-26
parse.y: unify redundant functions `yywarn()` and `yywarning()`.
Yukihiro "Matz" Matsumoto
2021-07-25
parse.y: replace `strtoul()` by `mrb_int_read()`.
Yukihiro "Matz" Matsumoto
[prev]
[next]