| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-08-12 | Reintroduced not storing converted proc directly in the stack | Christopher Aue | |
| 2017-08-12 | Removed unneeded ci->nregs checks in OP_SEND and OP_SUPER | Christopher Aue | |
| Because of #3504 `ci->nregs = bidx+1` was introduced in b64f08784cc50861dec80c26fce715982c02c9e9. This led to the follow up error #3551 whose fix introduced the `if (bidx >= ci->nregs)` check in 071164b7999d0932fd60fb3c580a6c374ab1cf4f and the `stack_extend(mrb, ci->nregs)` in 93d802987e722444d0520a8d3f28002841c4f825. Then, the code causing #3504 reappeared again in #3590. The fix for it moved the code dealing with the block in OP_SUPER from below the `cipush` to above the `cipush` in d9fb8b69b0621e8cd2c7c43fd8511a83718d7e45. The `if (bidx >= ci->nregs) { ... }` from then on works with the original callinfo and not the pushed one. `ci->nregs` needed to be modified for the pushed one because it is initialized to 0. But for the original ci it is propertly set and a check is not needed. | |||
| 2017-08-12 | Extended stack always based on ci->nregs | Christopher Aue | |
| 2017-08-12 | Refactored variable usage in OP_SEND and OP_SUPER | Christopher Aue | |
| 2017-08-12 | Reduce integer type mismatch warnings in VC. | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Remove some empty lines; ref #3778 | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Merge pull request #3778 from christopheraue/vm_refactoring | Yukihiro "Matz" Matsumoto | |
| Refactored OP_SEND and OP_SUPER and calculate argc right at the top | |||
| 2017-08-11 | Merge pull request #3777 from christopheraue/super_method_missing_test | Yukihiro "Matz" Matsumoto | |
| Added basic test for calling a missing method through super | |||
| 2017-08-11 | Added basic test for calling a missing method through super | Christopher Aue | |
| 2017-08-11 | Refactored OP_SEND and OP_SUPER and calculate argc right at the top | Christopher Aue | |
| 2017-08-11 | `scan_hex` may be used to parse both unicode and hex escape. | Yukihiro "Matz" Matsumoto | |
| The error checks for both usage should be separated; ref #3774 | |||
| 2017-08-11 | Fixed a wrong condition in `scan_hex`; fix #3774 | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Remove an unused argument from `each_backtrace_func`. | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Should not include `float.h` here. | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Merge branch 'christopheraue-super_method_missing_fix' | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Defer `mid` update after `unshift`; ref #3776 | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Merge branch 'super_method_missing_fix' of ↵ | Yukihiro "Matz" Matsumoto | |
| https://github.com/christopheraue/mruby into christopheraue-super_method_missing_fix | |||
| 2017-08-11 | Silence integer type conversion warnings. | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Remove unnecessary inline function `ary_elt`. | Yukihiro "Matz" Matsumoto | |
| And the function does not conform the naming convention anyway. | |||
| 2017-08-11 | Remove `mrb_ary_len` function. Use `RARRAY_LEN` instead. | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Update document comment of array C API functions. | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Avoid possible data loss by using `ptrdiff_t`. | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | The type of `ARY_EMBED_LEN` should be `mrb_int`. | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Should not call `to_str` in `mrb_vformat`; fix #3773 | Yukihiro "Matz" Matsumoto | |
| 2017-08-11 | Check method existence in `to_enum'; ref #3773 | Yukihiro "Matz" Matsumoto | |
| 2017-08-10 | Fixed calling missing method through super with 126 args | Christopher Aue | |
| 2017-08-10 | Merge pull request #3772 from vvakame/add2authors | Yukihiro "Matz" Matsumoto | |
| Updated AUTHORS | |||
| 2017-08-10 | Updated AUTHORS | vvakame | |
| 2017-08-10 | Remove redundant `flo_hash` function. | Yukihiro "Matz" Matsumoto | |
| `flo_hash` implemented `15.2.8.3.18` but `Kernel#hash` (15.3.1.3.15) now works for numbers. | |||
| 2017-08-10 | Use standard hash functions in `mrb_hash_ht_hash_func`. | Yukihiro "Matz" Matsumoto | |
| 2017-08-10 | Normalize float numbers before calculating a hash value. | Yukihiro "Matz" Matsumoto | |
| 2017-08-10 | VM stack may be reallocated during `mrb_hash_get`; fix #3771 | Yukihiro "Matz" Matsumoto | |
| 2017-08-10 | Merge pull request #3770 from christopheraue/tabs_to_spaces | Yukihiro "Matz" Matsumoto | |
| Replaced tabs with spaces | |||
| 2017-08-09 | Replaced tabs with spaces | Christopher Aue | |
| 2017-08-09 | Merge branch 'vvakame-add-hash-compact' | Yukihiro "Matz" Matsumoto | |
| 2017-08-09 | Implement `Hash#compact!` in C; ref #3769 | Yukihiro "Matz" Matsumoto | |
| 2017-08-09 | add method(compact, compact!) and test of Hash to mruby-hash-ext | vvakame | |
| 2017-08-09 | Wrong blkargs pos for vararg; ref #3768 | Yukihiro "Matz" Matsumoto | |
| 2017-08-09 | The block argument offset saved in the env was wrong; fix #3768 | Yukihiro "Matz" Matsumoto | |
| When the method takes variable number of argument (`argc = -1`), the block argument offset should be `-1` not `0`. | |||
| 2017-08-09 | Support `break` within rescue clauses; fix #3767 ref #3721 | Yukihiro "Matz" Matsumoto | |
| 2017-08-08 | Float values divided by zero should honor signs; fix #3766 | Yukihiro "Matz" Matsumoto | |
| It also fixes unexpected resurrection of #3745 by #3752 | |||
| 2017-08-08 | Set the current `pc` as the error position in `OP_ERR`; ref #3765 | Yukihiro "Matz" Matsumoto | |
| 2017-08-08 | Check if `ptr` is NULL before calling `memset`; fix #3765 | Yukihiro "Matz" Matsumoto | |
| 2017-08-07 | Merge pull request #3764 from christopheraue/new_hash_perf | Yukihiro "Matz" Matsumoto | |
| Improved speed of creating new hash tables | |||
| 2017-08-05 | Prevented resizing just created hashes in specific size ranges | Christopher Aue | |
| 2017-08-04 | Improved speed of creating new hash tables | Christopher Aue | |
| 2017-08-05 | `proc->body.irep` may be NULL; fix #3761 | Yukihiro "Matz" Matsumoto | |
| 2017-08-05 | Fixed heap buffer overflow in `mrb_ary_unshift_m`; fix #3760 | Yukihiro "Matz" Matsumoto | |
| 2017-08-05 | Change return type of `scan_oct` from `int` to `int32_t`. | Yukihiro "Matz" Matsumoto | |
| 2017-08-05 | Left shift of signed integers is undefined behavior in C; fix #3762 | Yukihiro "Matz" Matsumoto | |
