| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-08-02 | Now `local_variables` works when for closures; fix #3710 | Yukihiro "Matz" Matsumoto | |
| 2017-08-01 | Better class name management. | Yukihiro "Matz" Matsumoto | |
| The change removes several internal instance variables used by class name management. The variables `__classid__` and `__classpath__` are no longer available. `__outer__` is used only for unnamed outer classes/modules (and will be removed after they are named). [Important note] Along with this change we removed several public functions. - mrb_class_outer_module() - mrb_class_sym() We believe no one have used those functions, but if you do, please ask us for the workaround. | |||
| 2017-08-01 | Cosmetic changes (removing spaces before `*` in return types). | Yukihiro "Matz" Matsumoto | |
| 2017-08-01 | Move naming unnamed classes/modules | Yukihiro "Matz" Matsumoto | |
| From `mrb_mod_const_set` to `mrb_const_set`. | |||
| 2017-08-01 | Reimplement constant look-up rule to follow lexical scoping. | Yukihiro "Matz" Matsumoto | |
| This update fix CRuby scoping incompatibility; close #600; close #3200 | |||
| 2017-08-01 | Implements `Module::nesting' (15.2.2.3.2); ref #600, #3200 | Yukihiro "Matz" Matsumoto | |
| 2017-07-28 | Extended Module#const_get to support class paths | Christopher Aue | |
| 2017-07-28 | Added mrb_str_index to the mrb API | Christopher Aue | |
| 2017-07-27 | Rename `MRB_SEGMENT_SIZE` to `MRB_IV_SEGMENT_SIZE`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-27 | Always use `MRB_USE_IV_SEGLIST`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-27 | Embed small size array elements in the heap. | Yukihiro "Matz" Matsumoto | |
| It reduces the memory consumption and sometimes improve the performance as well. For example, the consumed memory size of `bench/bm_ao_render.rb` is reduced from 1.2GB to 1GB, and its total execution time become 18.795 sec from 22.229 sec. | |||
| 2017-07-27 | Remove loop from `OP_POPERR`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-26 | `(0).div(0.0)` should be NaN; fix #3754 | Yukihiro "Matz" Matsumoto | |
| 2017-07-25 | `(0.0).div(0)` should not be infinity; fix #3753 | Yukihiro "Matz" Matsumoto | |
| 2017-07-25 | `0/0` should not be infinity; fix #3752 | Yukihiro "Matz" Matsumoto | |
| 2017-07-24 | Clear mrb_callinfo struct by zero initializer. | Yukihiro "Matz" Matsumoto | |
| 2017-07-21 | Need to unshare env on OP_R_BREAK too. | Yukihiro "Matz" Matsumoto | |
| 2017-07-21 | Move NULL check to `mrb_env_unshare()`; ref #3750 | Yukihiro "Matz" Matsumoto | |
| 2017-07-21 | Should not raise `LocalJumpError` on funcall'ed frame; fix #3750 | Yukihiro "Matz" Matsumoto | |
| 2017-07-19 | Avoid C undefined behavior of division by zero; close #3745 | Yukihiro "Matz" Matsumoto | |
| 2017-07-19 | Avoid constant-set duplication; ref #3747 | Yukihiro "Matz" Matsumoto | |
| 2017-07-19 | Merge branch 'const_set_mod_to_s' of https://github.com/christopheraue/mruby ↵ | Yukihiro "Matz" Matsumoto | |
| into christopheraue-const_set_mod_to_s | |||
| 2017-07-18 | Fixed Module#to_s and #name for #const_set modules | Christopher Aue | |
| 2017-07-18 | Simplify `mrb_gc_arena_restore()` to reduce overhead. | Yukihiro "Matz" Matsumoto | |
| It will no longer shrink arena region. Instead `vm.c` uses a static function `mrb_gc_arena_shrink()` to shrink. | |||
| 2017-07-12 | Avoid float operation to shrink arena buffer size. | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | Add `inline` modifier to `cipush()` and `cipop()` functions. | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | Use "$!" specifier of `mrb_get_args`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | Update `mrb_get_args()` document. | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | Add "*!" argument specifier to avoid stack copying. | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | Add `ary_modify_check()` to `Array#unshift`; ref #3737 | Yukihiro "Matz" Matsumoto | |
| 2017-07-09 | Should only check frozen for Array#pop | ksss | |
| 2017-07-09 | Should only check frozen fix #3737 | ksss | |
| 2017-07-06 | Reduce allocation size of backtrace arrays. | Yukihiro "Matz" Matsumoto | |
| 2017-07-06 | Avoid out-of-bounds access of the backtrace array. | Yukihiro "Matz" Matsumoto | |
| 2017-07-05 | Put a space between error position and error message. | Yukihiro "Matz" Matsumoto | |
| For readability's sake. | |||
| 2017-07-05 | Check stack size before accessing env stack; fix #3727 | Yukihiro "Matz" Matsumoto | |
| 2017-07-05 | Avoid undefined behavior of left shifting negative integer; #3728 | Yukihiro "Matz" Matsumoto | |
| 2017-07-05 | Avoid undefined behavior of signed integer overflow; fix #3728 | Yukihiro "Matz" Matsumoto | |
| 2017-07-01 | `break` should not cross fiber-context boundary; fix #3724 | Yukihiro "Matz" Matsumoto | |
| 2017-07-01 | `super` may be called from a block; fix #3723 | Yukihiro "Matz" Matsumoto | |
| 2017-06-27 | No longer need to copy `argv` from `mrb_get_args`; ref #3722 | Yukihiro "Matz" Matsumoto | |
| 2017-06-27 | Copy argv from VM stack to avoid use-after-free; fix #3722 | Yukihiro "Matz" Matsumoto | |
| 2017-06-22 | No need to mark stacks of terminated fibers; fix #3720 | Yukihiro "Matz" Matsumoto | |
| 2017-06-22 | Add write barrier to protect singleton class from GC; fix #3717 | Yukihiro "Matz" Matsumoto | |
| 2017-06-21 | Should call `ecall()` before callinfo adjustment; fix #3715 | Yukihiro "Matz" Matsumoto | |
| 2017-06-20 | Array size can be cause integer overflow; fix #3710 | Yukihiro "Matz" Matsumoto | |
| 2017-06-20 | #3711 fix | Miura Hideki | |
| 2017-06-19 | Use `mrb_int` instead of `int` as argument to `mrb_hash_new_capa`. | Yukihiro "Matz" Matsumoto | |
| 2017-06-17 | Use `mrb_int` instead of `int`. | Yukihiro "Matz" Matsumoto | |
| 2017-06-17 | Merge pull request #3706 from MasahikoSawada/fix_typo | Yukihiro "Matz" Matsumoto | |
| Fix a typo in gc.c. | |||
