summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2018-11-07Wrong pool data length for negative floating value in a mrb file.Hiroshi Mimaki
2018-11-05Fixed wrong `ArgumentError` with keyword arguments; fix #4159Yukihiro "Matz" Matsumoto
2018-11-05Fixed a bug in argument number check with kwargs; fix #4159Yukihiro "Matz" Matsumoto
2018-11-02Remove reserved symbols for now.Yukihiro "Matz" Matsumoto
It should be done by planned embedded symbols.
2018-11-02Merge pull request #4151 from take-cheeze/remove_op_symidxYukihiro "Matz" Matsumoto
Reduce instruction size
2018-11-02Merge 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-02Suppress warningtake-cheeze
2018-11-02Fix dump and load with endianesstake-cheeze
2018-11-02Add `NULL` checks for `mrb->ci` and `proc->upeer`; #4024Yukihiro "Matz" Matsumoto
2018-11-02Add tests for empty patterns for `tr` and `count`; #4156 #4157Yukihiro "Matz" Matsumoto
2018-11-02Empty pattern string for `String#tr` should remove characters; fix #4157Yukihiro "Matz" Matsumoto
2018-11-02Empty pattern string can generate `TR_UNINITIALIZED` pattern; fix #4156Yukihiro "Matz" Matsumoto
2018-11-01Silence Appveyor's VC compilation warnings.Yukihiro "Matz" Matsumoto
2018-11-01The `env` object referenced from fibers may be freed; fix #4154Yukihiro "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-01Merge pull request #4155 from mimaki/fix-4153Yukihiro "Matz" Matsumoto
Fixed a bug in INIT_DISPATCH for non direct threading; fix #4153
2018-11-01Fixed a bug in INIT_DISPATCH for non direct threading; fix #4153Hiroshi Mimaki
2018-10-30Merge pull request #4152 from take-cheeze/build_debug_flagYukihiro "Matz" Matsumoto
Add debug flag to `MRuby::Build`
2018-10-30VS 2017 C does not understand inline struct initialization; ref #4153Yukihiro "Matz" Matsumoto
2018-10-29Add debug flag to `MRuby::Build`take-cheeze
2018-10-29Reduce unnecessary symbol table entrytake-cheeze
2018-10-29Fix codedumpertake-cheeze
2018-10-29Fix documenttake-cheeze
2018-10-29Fix operatortake-cheeze
2018-10-29Fix SEGVtake-cheeze
2018-10-29Define null symboltake-cheeze
2018-10-29Reduce instruction sizetake-cheeze
2018-10-29Merge pull request #4149 from take-cheeze/static_tr_patternYukihiro "Matz" Matsumoto
Keep `tr_pattern` static if possible
2018-10-29Merge pull request #4148 from take-cheeze/rename_libmruby_stuffYukihiro "Matz" Matsumoto
Rename `MRuby::Build#libmruby` stuff to avoid confusion
2018-10-29Merge pull request #4147 from take-cheeze/add_missing_depYukihiro "Matz" Matsumoto
Add missing dependency of source code generator
2018-10-29Merge pull request #4146 from take-cheeze/sup_sleep_warnYukihiro "Matz" Matsumoto
Suppress sleep test script warning
2018-10-29Merge pull request #4145 from take-cheeze/sort_test_rbfilesYukihiro "Matz" Matsumoto
Sort test script list too
2018-10-29Rename libmruby stuff to avoid confusiontake-cheeze
2018-10-29Add missing dependency of source code generatortake-cheeze
2018-10-29Suppress sleep test script warningtake-cheeze
2018-10-29Sort test script list tootake-cheeze
2018-10-29Keep tr_pattern statictake-cheeze
2018-10-29We need no write barrier here; ref #4143Yukihiro "Matz" Matsumoto
2018-10-29Marking from terminated fibers are not needed; ref #4143Yukihiro "Matz" Matsumoto
The old condition marks the top-level callinfo even after the fiber is terminated.
2018-10-29Re-implement `Array#_inspect` and `Hash#_inspect` without blocks.Yukihiro "Matz" Matsumoto
To reduce the env object allocation; ref #4143
2018-10-29Need to mark shared env objects as `MRB_TT_FREE`; fix #4143Yukihiro "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-29Add argument check to `Array#clear`; fix #4144Yukihiro "Matz" Matsumoto
2018-10-23Fixed a bug in processing `OP_EXT?` instructions.Yukihiro "Matz" Matsumoto
fix haconiwa/haconiwa#171
2018-10-20Need to freeze string keys.Yukihiro "Matz" Matsumoto
2018-10-18Merge pull request #4142 from iij/mergesortYukihiro "Matz" Matsumoto
replace quicksort with mergesort.
2018-10-18replace quicksort with mergesort.Tomoyuki Sahara
2018-10-13Fixed a bug caused by too much optimization; fix #4137Yukihiro "Matz" Matsumoto
2018-10-12Fixed broken stack consistency; fix #4135Yukihiro "Matz" Matsumoto
2018-10-12Should not compare `undef` (deleted) key in hashes; fix #4136Yukihiro "Matz" Matsumoto
2018-10-12Call `uniq!` for each union processing in `Array#union`.Yukihiro "Matz" Matsumoto
2018-10-12Add `NULL` check in `sg_compact()`; fix #4139Yukihiro "Matz" Matsumoto