| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-08-23 | Merge pull request #4656 from shuujii/refine-processing-for-gem-lock-file | Yukihiro "Matz" Matsumoto | |
| Refine processing for gem lock file | |||
| 2019-08-22 | Refine processing for gem lock file | KOBAYASHI Shuji | |
| - Defer YAML library and lock file loading until needed. - Don't write empty parts into lock file. - Extract code to read/write lock file to `MRuby::Lockfile`. - `MRuby::Lockfile.disable` disables the use of lock file. | |||
| 2019-08-22 | Merge pull request #4655 from yamori813/master | Yukihiro "Matz" Matsumoto | |
| make clean error workaround | |||
| 2019-08-22 | workaround error | yamori813 | |
| 2019-08-22 | Add lock files to `.gitignore`; #4180 | Yukihiro "Matz" Matsumoto | |
| 2019-08-22 | Merge pull request #4654 from take-cheeze/mruby_version_lock | Yukihiro "Matz" Matsumoto | |
| Take commit hash of mruby too | |||
| 2019-08-22 | Merge pull request #4653 from take-cheeze/sep_repo_build | Yukihiro "Matz" Matsumoto | |
| Separate repos directory and build directory | |||
| 2019-08-22 | Take commit hash of mruby too | take-cheeze | |
| 2019-08-22 | Separate repos directory and build directory | take-cheeze | |
| closes #4652 | |||
| 2019-08-21 | Merge pull request #4180 from take-cheeze/lock_file | Yukihiro "Matz" Matsumoto | |
| Support lock file for git. | |||
| 2019-08-21 | Merge pull request #4651 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/prioritize-embedded-string-over-nofree-or-normal-string Prioritize embedded string over nofree (or normal) string | |||
| 2019-08-21 | Prioritize embedded string over nofree (or normal) string | KOBAYASHI Shuji | |
| Prioritize embedded string in the following functions: - `str_new_static` - `str_new` - `mrb_str_new_capa` - `mrb_str_pool` The reasons are as follows: - Consistency with `mrb_str_byte_subseq` and `str_replace`. - Memory locality increases and may be slightly faster. - No conversion cost to embedded string when modifying the string. | |||
| 2019-08-21 | Merge pull request #4650 from take-cheeze/patch-5 | Yukihiro "Matz" Matsumoto | |
| Remove deprecated iij stuffs | |||
| 2019-08-21 | Merge pull request #4649 from take-cheeze/patch-4 | Yukihiro "Matz" Matsumoto | |
| Fix link of mruby-io | |||
| 2019-08-21 | Merge pull request #4648 from take-cheeze/patch-3 | Yukihiro "Matz" Matsumoto | |
| Use mruby-onig-regexp instead in example | |||
| 2019-08-21 | Merge pull request #4647 from take-cheeze/patch-2 | Yukihiro "Matz" Matsumoto | |
| Add note about checksum_hash in mrbgem doc | |||
| 2019-08-20 | Remove deprecated iij stuffs | Takeshi Watanabe | |
| 2019-08-20 | Fix link of mruby-io | Takeshi Watanabe | |
| 2019-08-20 | Use mruby-onig-regexp instead in example | Takeshi Watanabe | |
| 2019-08-20 | Add note about checksum_hash in mrbgem doc | Takeshi Watanabe | |
| 2019-08-20 | Avoid C++ strict aliasing warning. | Yukihiro "Matz" Matsumoto | |
| Based on code proposed by @dearblue to avoid the warning: `dereferencing type-punned pointer will break strict-aliasing rules`. | |||
| 2019-08-20 | Fixed a bug in the `OP_JMPNOT` optimization (13eaff4); fix #4644 | Yukihiro "Matz" Matsumoto | |
| 2019-08-20 | Merge pull request #4646 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-RBasic-padding-for-embedded-string-on-64-bit-CPU Use `RBasic` padding for embedded string on 64-bit CPU | |||
| 2019-08-20 | Use `RBasic` padding for embedded string on 64-bit CPU | KOBAYASHI Shuji | |
| On 64-bit CPU, there is padding in `RBasic`, so reorder the fields and use it as buffer of embedded string. This change allows 4 more bytes to be embedded on 64-bit CPU. However, an incompatibility will occur if `RString::as::ary` is accessed directly because `RString` structure has changed. | |||
| 2019-08-19 | Merge pull request #4645 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/move-mrb_str_pool-to-src-string.c-to-use-str_init-family Move `mrb_str_pool` to `src/string.c` to use `str_init` family | |||
| 2019-08-19 | Move `mrb_str_pool` to `src/string.c` to use `str_init` family | KOBAYASHI Shuji | |
| 2019-08-19 | Merge pull request #4643 from lopopolo/externally-define-MRB_API | Yukihiro "Matz" Matsumoto | |
| Allow external definition of MRB_API macro | |||
| 2019-08-18 | Allow external definition of MRB_API macro | Ryan Lopopolo | |
| When building WebAssembly targets with clang (e.g. wasm32-unknown-unknown), all symbols are hidden by default. To export a symbol, it must be marked with __attribute__((visibility(default))) Rather than detecting this exotic target in mruby, allow MRB_API to be defined externally. | |||
| 2019-08-19 | Merge pull request #4639 from dearblue/suppress-Wstringop-truncation | Yukihiro "Matz" Matsumoto | |
| Suppress warnings for `strncat()` | |||
| 2019-08-19 | Merge pull request #4638 from dearblue/simplify-get-args | Yukihiro "Matz" Matsumoto | |
| Simplify get arguments | |||
| 2019-08-19 | Merge pull request #4636 from davidsiaw/doxygen | Yukihiro "Matz" Matsumoto | |
| Generate doxygen docs for mruby | |||
| 2019-08-19 | Merge pull request #4642 from dearblue/unique-symlink | Yukihiro "Matz" Matsumoto | |
| Make symbolic link names unique for test | |||
| 2019-08-19 | Merge pull request #4641 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/rename-mrb_shared_string-len-to-mrb_shared_string-capa Rename `mrb_shared_string::len` to `mrb_shared_string::capa` | |||
| 2019-08-19 | Merge pull request #4640 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/also-use-str_init_shared-for-orig-in-str_make_shared Also use `str_init_shared` for `orig` in `str_make_shared()` | |||
| 2019-08-18 | Merge pull request #4637 from dearblue/immutable-iseq | Yukihiro "Matz" Matsumoto | |
| Prohibit changes to iseq in principle | |||
| 2019-08-18 | Make symbolic link names unique for test | dearblue | |
| 2019-08-18 | fix up documentation for values | David Siaw | |
| 2019-08-18 | Rename `mrb_shared_string::len` to `mrb_shared_string::capa` | KOBAYASHI Shuji | |
| Because this field is used as capacity of string buffer. | |||
| 2019-08-18 | Also use `str_init_shared` for `orig` in `str_make_shared()` | KOBAYASHI Shuji | |
| 2019-08-18 | Suppress warnings for `strncat()` | dearblue | |
| `strncat()` also needs `'\0'`. | |||
| 2019-08-18 | Simplify get arguments | dearblue | |
| - `mrb_str_index_m()` and `mrb_str_rindex()` Make `mrb_get_args()` called only once from called twice. - `mrb_str_byteslice()` Replace `goto` with `if ~ else`. | |||
| 2019-08-18 | Prohibit changes to iseq in principle | dearblue | |
| 2019-08-18 | fix up markdown display in doxygen | David Siaw | |
| 2019-08-18 | first bit of doc generation | David Siaw | |
| 2019-08-17 | Merge pull request #4634 from shuujii/refactor-set-unset-string-type-flags | Yukihiro "Matz" Matsumoto | |
| Refactor set/unset string type flags | |||
| 2019-08-17 | Fix wrong argument for `fprintf` in `mruby-bin-mrbc` | KOBAYASHI Shuji | |
| 2019-08-17 | Refactor set/unset string type flags | KOBAYASHI Shuji | |
| Introduce `RSTR_SET_TYPE_FLAG` macro to set the specified string type flag and clear the others. | |||
| 2019-08-17 | Merge pull request #4625 from dearblue/rindex-broken-utf8 | Yukihiro "Matz" Matsumoto | |
| Fix `String#rindex` with invalid UTF-8 string | |||
| 2019-08-17 | Resolve conflict between #4582 and C++ warning. | Yukihiro "Matz" Matsumoto | |
| 2019-08-17 | Implement `Array#each` using inline mruby bytecode. | Yukihiro "Matz" Matsumoto | |
