| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-09-27 | fix: src\gc.c(1425): warning C4244: '=': conversion from 'mrb_int' to 'int', ↵ | Tomasz Dąbrowski | |
| possible loss of data | |||
| 2017-09-27 | fix: src\gc.c(1392): warning C4244: '=': conversion from 'mrb_int' to 'int', ↵ | Tomasz Dąbrowski | |
| possible loss of data | |||
| 2017-09-27 | fix: src\gc.c(559): warning C4244: '=': conversion from 'mrb_int' to 'int', ↵ | Tomasz Dąbrowski | |
| possible loss of data | |||
| 2017-09-27 | fix: src\error.c(76): warning C4244: '=': conversion from 'mrb_int' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-09-27 | fix: src\dump.c(710): warning C4244: 'function': conversion from 'mrb_int' ↵ | Tomasz Dąbrowski | |
| to 'uint16_t', possible loss of data | |||
| 2017-09-27 | fix: src\dump.c(657): warning C4244: 'function': conversion from 'mrb_int' ↵ | Tomasz Dąbrowski | |
| to 'uint16_t', possible loss of data | |||
| 2017-09-27 | fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-09-27 | fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-09-27 | fix: src\class.c(583): warning C4244: '=': conversion from 'mrb_int' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-09-27 | fix: src\backtrace.c(83): warning C4244: '=': conversion from 'mrb_int' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-09-27 | fix: mrbgems\mruby-kernel-ext\src\kernel.c(114): warning C4244: 'function': ↵ | Tomasz Dąbrowski | |
| conversion from 'mrb_int' to 'int', possible loss of data | |||
| 2017-09-23 | The first instruction was skipped mistakenly in ensure clause; fix #3811 | Yukihiro "Matz" Matsumoto | |
| 2017-09-22 | `OP_EPOP` operand may be bigger than `mrb->c->eidx`; fix #3810 | Yukihiro "Matz" Matsumoto | |
| 2017-09-12 | Remove temporary limitation of `OP_EPOP`. | Yukihiro "Matz" Matsumoto | |
| After f68f5f6, the operand of `OP_EPOP` should have been `1`. Now we have removed the limitation. | |||
| 2017-09-11 | The callinfo stack may be reallocated in `cipush`; fix rest of #3809 | Yukihiro "Matz" Matsumoto | |
| fix #3809 | |||
| 2017-09-11 | The ensure stack may be empty at `OP_EPOP`; fix 1st part of #3809 | Yukihiro "Matz" Matsumoto | |
| 2017-09-06 | Avoid calling `mrb_funcall` to invoke `#initialize` from `Class.new`. | Yukihiro "Matz" Matsumoto | |
| If `#initialize` is implemented in C, we don't need stack consuming `mrb_funcall`. | |||
| 2017-09-05 | Avoid recursion from `mark_context()`. | Yukihiro "Matz" Matsumoto | |
| 2017-09-05 | Avoid crossing C function boundary from `OP_EPOP`; ref #3789 | Yukihiro "Matz" Matsumoto | |
| 2017-09-04 | Restructure `irep->outer` chain; fix #3804 | Yukihiro "Matz" Matsumoto | |
| Instead of `irep -> proc` chain, we use `irep -> irep` chain to avoid GC bugs like #3804. We added `target_class` reference to `mrb_irep` struct. That means one more word consumption per `irep`. | |||
| 2017-09-04 | Call `initialize` only when it's not empty. | Yukihiro "Matz" Matsumoto | |
| 2017-09-02 | Trying to make the source code more understandable by removing mixing of ↵ | Flavio Medeiros | |
| ternary if statements with attributions. | |||
| 2017-09-01 | Avoid copying over initialized procs using `initialize_copy`; fix #3803 | Yukihiro "Matz" Matsumoto | |
| It may be better to raise exceptions, but CRuby doesn't. | |||
| 2017-09-01 | Update method cache clearing. | Yukihiro "Matz" Matsumoto | |
| 2017-08-30 | Set the ORPHAN flag in `Proc.new`; fix #3798 | Yukihiro "Matz" Matsumoto | |
| 2017-08-30 | Fixed a critical typo; ref #3798 | Yukihiro "Matz" Matsumoto | |
| 2017-08-30 | Need to mark `mrb->range_class`; fix #3797 | Yukihiro "Matz" Matsumoto | |
| 2017-08-29 | Need to update `ci` after `callinfo` stack reallocation; fix #3796 | Yukihiro "Matz" Matsumoto | |
| 2017-08-29 | Exclude the top-level closure from `each_object`; fix #3793 | Yukihiro "Matz" Matsumoto | |
| 2017-08-29 | Revert "Clear `irep->outer` when no `Proc` reference the `irep`; fix #3793" | Yukihiro "Matz" Matsumoto | |
| This reverts commit 15d48efa4bf6a6b999dab99720fb9fe3c4a06ef0. | |||
| 2017-08-28 | Clear `irep->outer` when no `Proc` reference the `irep`; fix #3793 | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Reimplement `Array#shift` to be faster. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | `Array#first` to treat 1 argument case specially to improve performance. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Check for ability to skip optional argument parsing. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Silence compiler warning regarding float condition; fix #3790 | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Remove unused `mrb_obj_iv_ifnone()` from API. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Add checks if `iv_tbl` is NULL. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Keep `Range` class in `mrb_state` structure for performance. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Use `khash` for instance variables tables instead of segment list. | Yukihiro "Matz" Matsumoto | |
| For performance reason. Segmented list consumes slightly less memory but takes a lot of time especially when there are many slots in the segment lists (e.g. class constants). | |||
| 2017-08-25 | fix fmt_fp.c(329) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(251) : warning C4244: '=' : conversion from '__int64' to 'int', ↵ | Tomasz Dąbrowski | |
| possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(224) : warning C4244: '=' : conversion from 'ptrdiff_t' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(220) : warning C4244: '=' : conversion from '__int64' to 'int', ↵ | Tomasz Dąbrowski | |
| possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(206) : warning C4244: 'initializing' : conversion from ↵ | Tomasz Dąbrowski | |
| 'ptrdiff_t' to 'int', possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(178) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(123) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-08-23 | Asserted bidx < ci->nregs for OP_SEND and OP_SUPER | Christopher Aue | |
| 2017-08-22 | Added method cache. | Yukihiro "Matz" Matsumoto | |
| To enable method cache, define `MRB_METHOD_CACHE` or `MRB_METHOD_CACHE_SIZE`. The cache size must be power of 2. The default cache size is 128. The measurement: I measured simple benchmarks found in benchmark/ directory. With method cache enabled, we gained 6-8% performance improvement, with 97-99% cache hit rate. | |||
| 2017-08-22 | Remove possible path that leaves a local variable uninitialized. | Yukihiro "Matz" Matsumoto | |
| 2017-08-22 | `mrb_obj_respond_to` to use `mrb_method_search_vm`. | Yukihiro "Matz" Matsumoto | |
