| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-07-13 | Update tests for new calculations | Rory OConnell | |
| 2020-07-13 | Calculating sizes of VM components for a Fiber | Rory OConnell | |
| 2020-07-13 | Use object iv table size in calculation | Rory OConnell | |
| 2020-07-13 | Use size of hash's table in calculation | Rory OConnell | |
| 2020-07-13 | All values use page slot size in calculation | Rory OConnell | |
| 2020-07-12 | Fix `ssize_t` for mingw; ref #5030 | dearblue | |
| Legacy MinGW and MinGW-w64 had own `ssize_t`. | |||
| 2020-07-11 | Merge pull request #5030 from RoryO/fix-compile-msvc-io-utf8 | Yukihiro "Matz" Matsumoto | |
| Fix compiling mruby-io on msc with UTF8 enabled | |||
| 2020-07-10 | downcase windows include file for mingw compatability | Rory OConnell | |
| 2020-07-10 | Need typedef of ssize_t for msc compiler | Rory OConnell | |
| 2020-07-10 | fix case scopes and variable names | Rory OConnell | |
| 2020-07-09 | Initial ObjectSpace.memsize_of implementation | Rory OConnell | |
| 2020-06-30 | Merge pull request #5028 from RoryO/msvc-optimize-shuffle-bug | Yukihiro "Matz" Matsumoto | |
| Work around MSC optimization generating non functional code with Array#shuffle | |||
| 2020-06-29 | Work around more MSC optimzer bugs | Rory OConnell | |
| 2020-06-29 | Fix the bug that `mrbc` generates `a.rb.mrb` instead of `a.mrb`. | Yukihiro "Matz" Matsumoto | |
| The bug was introduced by 9dfe50f1d. | |||
| 2020-06-26 | Reduce scope of volatile keyword for MSC bug | Rory OConnell | |
| 2020-06-26 | Narrower scope working around MSC bug | Rory OConnell | |
| 2020-06-26 | work around MSC optimization generating non functional code | Rory OConnell | |
| 2020-06-25 | Use `snprintf` instead of `memcpy` in `mrbc.c`. | Yukihiro "Matz" Matsumoto | |
| 2020-06-25 | Change flag names in preparation of `REnv` refactoring. | Yukihiro "Matz" Matsumoto | |
| 2020-06-25 | Use `mrb_get_argc()` to improve performance. | Yukihiro "Matz" Matsumoto | |
| 2020-06-20 | Fix potential buffer overflow in `sprintf.c`. | Yukihiro "Matz" Matsumoto | |
| 2020-06-20 | Add `mrb_get_arg1()` that retrieves single (and only) argument. | Yukihiro "Matz" Matsumoto | |
| `mrb_get_arg1()` raises `ArgumentError` if the method does not receive one argument. And replaces all `mrb_get_args(mrb, "o", &arg)` by the new function. | |||
| 2020-06-20 | Symbolify saved alias name to improve performance. | Yukihiro "Matz" Matsumoto | |
| 2020-06-15 | Remove unused `MRB_TT_FILE`. | Yukihiro "Matz" Matsumoto | |
| 2020-06-11 | Merge pull request #5023 from dearblue/nesting | Yukihiro "Matz" Matsumoto | |
| Remove `mrb_assert()` in `Module.nesting` | |||
| 2020-06-09 | Update `OP_HASH` generation to support big hash creation. | Yukihiro "Matz" Matsumoto | |
| 2020-06-09 | Remove `mrb_assert()` in `Module.nesting` | dearblue | |
| The following code was causing SIGSEGV: ```ruby Module.method(:nesting).call ``` | |||
| 2020-06-09 | Need `build/XXX/mrbgems/mruby-test` directory | dearblue | |
| An error may occur when performing `rake clean all` or `rake clean test`. The directory is needed before writing to `mrbgems/mruby-test/assert.c`. | |||
| 2020-06-05 | Revert part of #5019 (`mruby_io_test.c`) to honor #4987 | Yukihiro "Matz" Matsumoto | |
| The issue was reported by @shuujii. | |||
| 2020-06-05 | Add proper casts to silence VC warnings. | Yukihiro "Matz" Matsumoto | |
| 2020-06-05 | Change arena index from `mrb_int` to `int`. | Yukihiro "Matz" Matsumoto | |
| 2020-06-05 | Merge master. | Hiroshi Mimaki | |
| 2020-06-04 | Add explicit cast to `DROP_PRECISION` macro in `rtional.c`. | Yukihiro "Matz" Matsumoto | |
| 2020-06-04 | Add `mruby-complex` and `mruby-rational` to `default.gembox`. | Yukihiro "Matz" Matsumoto | |
| 2020-06-04 | Add explicit cast to silence warnings on AppVeyor. | Yukihiro "Matz" Matsumoto | |
| 2020-06-03 | Hiding method implementation C functions in mruby-io | dearblue | |
| 2020-06-03 | Merge pull request #4800 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/set-MRB_STR_ASCII-flag-to-some-stringize-methods Set `MRB_STR_ASCII` flag to some stringize methods | |||
| 2020-06-02 | Remove `patch_irep()` in `mruby-eval` | dearblue | |
| - It can now deal with operands in the range of `OP_EXT*`. - It can now call the same method as the variable name without arguments. ```ruby def a "Safe!" end a = "Auto!" eval "a()" # call method `a` ``` | |||
| 2020-06-01 | Add `mruby-eval` to `default.gembox`. | Yukihiro "Matz" Matsumoto | |
| 2020-05-31 | Get local variable names from orphan block; ref #3710 | dearblue | |
| 2020-05-27 | Move `fmt_setup` until absolutely necessary. | Yukihiro "Matz" Matsumoto | |
| 2020-05-26 | Integer format can be bigger than `32` on 64bit platforms. | Yukihiro "Matz" Matsumoto | |
| We made it `64` which should be big enough: - Format modifier: 4 characters max - Maximum width: 19 digits max - Period between width and precision: 1 character - Maximum precision: 19 digits max - Format specifier: 1 character - NUL terminator: 1 byte - Total: 45 < 64 | |||
| 2020-05-25 | Add `y.tab.c` to remove Bison from build dependencies; ref 4ce3997c | KOBAYASHI Shuji | |
| I sometimes see Bison related problems in setting up build environments. Therefore to remove Bison from build time dependencies, add `y.tab.c` generated by Bison to the repository. The reduction of dependency at build time also reduces the labor and time for setup and installation in CI. In addition, a path in `#line` directive is converted to a relative path so that its path is constant regardless of development environments. | |||
| 2020-05-15 | Rename C function `mrb_proc_lambda`. | Yukihiro "Matz" Matsumoto | |
| 2020-05-15 | Add `pread/pwrite` support on `__MACH__` (MacOS) in addition to `__unix__`. | Yukihiro "Matz" Matsumoto | |
| 2020-05-15 | Remove `YYERROR_VERBOSE` which no longer supported since `bison 3.6`. | Yukihiro "Matz" Matsumoto | |
| Instead we added `%define parse.error verbose`. | |||
| 2020-05-11 | Make `off_t` handling simpler; #4872 #4939 | Yukihiro "Matz" Matsumoto | |
| The newer `clang` warns implicit float conversions. | |||
| 2020-05-09 | Fix boundary check for `OP_LOADI16`; ref fa8668c | dearblue | |
| It was making a negative integer if the highest-order bit of a 16-bit integer was 1. no patched: ```ruby p 0x7fff # => 32767 p 0x8000 # => -32768 p 0xffff # => -1 p 0x10000 # => 65536 ``` | |||
| 2020-05-07 | Remove unnecessary `sprintf` test that fails since 91368c1. | Yukihiro "Matz" Matsumoto | |
| 2020-05-07 | Should not use `assert` with expressions with side-effect; ref #49812.1.1-rc2 | Yukihiro "Matz" Matsumoto | |
| `assert()` can be completely removed when `NDEBUG` is set. | |||
