| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-11-07 | Wrong pool data length for negative floating value in a mrb file. | Hiroshi Mimaki | |
| 2018-11-05 | Fixed wrong `ArgumentError` with keyword arguments; fix #4159 | Yukihiro "Matz" Matsumoto | |
| 2018-11-05 | Fixed a bug in argument number check with kwargs; fix #4159 | Yukihiro "Matz" Matsumoto | |
| 2018-11-02 | Remove reserved symbols for now. | Yukihiro "Matz" Matsumoto | |
| It should be done by planned embedded symbols. | |||
| 2018-11-02 | Merge pull request #4151 from take-cheeze/remove_op_symidx | Yukihiro "Matz" Matsumoto | |
| Reduce instruction size | |||
| 2018-11-02 | Merge branch 'take-cheeze-fix_dump_load' | Yukihiro "Matz" Matsumoto | |
| Since our new VM instruction is byte based, there's no need to endian conversion of instruction sequences. | |||
| 2018-11-02 | Suppress warning | take-cheeze | |
| 2018-11-02 | Fix dump and load with endianess | take-cheeze | |
| 2018-11-02 | Add `NULL` checks for `mrb->ci` and `proc->upeer`; #4024 | Yukihiro "Matz" Matsumoto | |
| 2018-11-02 | Add tests for empty patterns for `tr` and `count`; #4156 #4157 | Yukihiro "Matz" Matsumoto | |
| 2018-11-02 | Empty pattern string for `String#tr` should remove characters; fix #4157 | Yukihiro "Matz" Matsumoto | |
| 2018-11-02 | Empty pattern string can generate `TR_UNINITIALIZED` pattern; fix #4156 | Yukihiro "Matz" Matsumoto | |
| 2018-11-01 | Silence Appveyor's VC compilation warnings. | Yukihiro "Matz" Matsumoto | |
| 2018-11-01 | The `env` object referenced from fibers may be freed; fix #4154 | Yukihiro "Matz" Matsumoto | |
| By dffa203 that reclaim `env` objects from heaps, there's more chance for `env` objects referenced from fibers may be freed from heap pages. | |||
| 2018-11-01 | Merge pull request #4155 from mimaki/fix-4153 | Yukihiro "Matz" Matsumoto | |
| Fixed a bug in INIT_DISPATCH for non direct threading; fix #4153 | |||
| 2018-11-01 | Fixed a bug in INIT_DISPATCH for non direct threading; fix #4153 | Hiroshi Mimaki | |
| 2018-10-30 | Merge pull request #4152 from take-cheeze/build_debug_flag | Yukihiro "Matz" Matsumoto | |
| Add debug flag to `MRuby::Build` | |||
| 2018-10-30 | VS 2017 C does not understand inline struct initialization; ref #4153 | Yukihiro "Matz" Matsumoto | |
| 2018-10-29 | Add debug flag to `MRuby::Build` | take-cheeze | |
| 2018-10-29 | Reduce unnecessary symbol table entry | take-cheeze | |
| 2018-10-29 | Fix codedumper | take-cheeze | |
| 2018-10-29 | Fix document | take-cheeze | |
| 2018-10-29 | Fix operator | take-cheeze | |
| 2018-10-29 | Fix SEGV | take-cheeze | |
| 2018-10-29 | Define null symbol | take-cheeze | |
| 2018-10-29 | Reduce instruction size | take-cheeze | |
| 2018-10-29 | Merge pull request #4149 from take-cheeze/static_tr_pattern | Yukihiro "Matz" Matsumoto | |
| Keep `tr_pattern` static if possible | |||
| 2018-10-29 | Merge pull request #4148 from take-cheeze/rename_libmruby_stuff | Yukihiro "Matz" Matsumoto | |
| Rename `MRuby::Build#libmruby` stuff to avoid confusion | |||
| 2018-10-29 | Merge pull request #4147 from take-cheeze/add_missing_dep | Yukihiro "Matz" Matsumoto | |
| Add missing dependency of source code generator | |||
| 2018-10-29 | Merge pull request #4146 from take-cheeze/sup_sleep_warn | Yukihiro "Matz" Matsumoto | |
| Suppress sleep test script warning | |||
| 2018-10-29 | Merge pull request #4145 from take-cheeze/sort_test_rbfiles | Yukihiro "Matz" Matsumoto | |
| Sort test script list too | |||
| 2018-10-29 | Rename libmruby stuff to avoid confusion | take-cheeze | |
| 2018-10-29 | Add missing dependency of source code generator | take-cheeze | |
| 2018-10-29 | Suppress sleep test script warning | take-cheeze | |
| 2018-10-29 | Sort test script list too | take-cheeze | |
| 2018-10-29 | Keep tr_pattern static | take-cheeze | |
| 2018-10-29 | We need no write barrier here; ref #4143 | Yukihiro "Matz" Matsumoto | |
| 2018-10-29 | Marking from terminated fibers are not needed; ref #4143 | Yukihiro "Matz" Matsumoto | |
| The old condition marks the top-level callinfo even after the fiber is terminated. | |||
| 2018-10-29 | Re-implement `Array#_inspect` and `Hash#_inspect` without blocks. | Yukihiro "Matz" Matsumoto | |
| To reduce the env object allocation; ref #4143 | |||
| 2018-10-29 | Need to mark shared env objects as `MRB_TT_FREE`; fix #4143 | Yukihiro "Matz" Matsumoto | |
| The following code mistakenly exits from the function without marking the env object as `MRB_TT_FREE`. ``` ruby if (MRB_ENV_STACK_SHARED_P(e)) { /* cannot be freed */ return; // <- should be `break` } ``` | |||
| 2018-10-29 | Add argument check to `Array#clear`; fix #4144 | Yukihiro "Matz" Matsumoto | |
| 2018-10-23 | Fixed a bug in processing `OP_EXT?` instructions. | Yukihiro "Matz" Matsumoto | |
| fix haconiwa/haconiwa#171 | |||
| 2018-10-20 | Need to freeze string keys. | Yukihiro "Matz" Matsumoto | |
| 2018-10-18 | Merge pull request #4142 from iij/mergesort | Yukihiro "Matz" Matsumoto | |
| replace quicksort with mergesort. | |||
| 2018-10-18 | replace quicksort with mergesort. | Tomoyuki Sahara | |
| 2018-10-13 | Fixed a bug caused by too much optimization; fix #4137 | Yukihiro "Matz" Matsumoto | |
| 2018-10-12 | Fixed broken stack consistency; fix #4135 | Yukihiro "Matz" Matsumoto | |
| 2018-10-12 | Should not compare `undef` (deleted) key in hashes; fix #4136 | Yukihiro "Matz" Matsumoto | |
| 2018-10-12 | Call `uniq!` for each union processing in `Array#union`. | Yukihiro "Matz" Matsumoto | |
| 2018-10-12 | Add `NULL` check in `sg_compact()`; fix #4139 | Yukihiro "Matz" Matsumoto | |
