| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-12-25 | rename mrb_intern_litral -> mrb_intern_static | Yukihiro "Matz" Matsumoto | |
| 2013-12-24 | class/module body to honor whether value is required or not; reduce a few ↵ | Yukihiro "Matz" Matsumoto | |
| instructions for normal cases | |||
| 2013-12-24 | zero copy C literal strings in symbol table | Yukihiro "Matz" Matsumoto | |
| 2013-12-24 | remove MRB_IREP_ARRAY_INIT_SIZE which is no longer used | Yukihiro "Matz" Matsumoto | |
| 2013-12-23 | Merge pull request #1615 from crimsonwoods/remove_strong_coupling_by_khash | Yukihiro "Matz" Matsumoto | |
| Remove 'mrb_state' field from 'kh_xxx_t' structure. | |||
| 2013-12-23 | Remove 'mrb_state' field from 'kh_xxx_t' structure. | crimsonwoods | |
| 'kh_xxx_t' requires 'mrb_state' to allocate, free, and compute hash value. But 'mrb_state' should not be held by 'kh_xxx_t' and 'mrb_state' should be supplied from outside. | |||
| 2013-12-23 | change behavior of mrb_sym2str | h2so5 | |
| 2013-12-19 | Merge pull request #1612 from h2so5/node-case | Yukihiro "Matz" Matsumoto | |
| fix codegen bug in NODE_CASE | |||
| 2013-12-19 | Merge pull request #1611 from h2so5/inspect-type | Yukihiro "Matz" Matsumoto | |
| fix TypeError message | |||
| 2013-12-19 | fix codegen bug in NODE_CASE | h2so5 | |
| 2013-12-19 | fix TypeError message | h2so5 | |
| 2013-12-19 | Fix typo from expornent to exponent | Nobuhiro Iwamatsu | |
| Signed-off-by: Nobuhiro Iwamatsu <[email protected]> | |||
| 2013-12-15 | Fixed callinfo buffer overflow while calling ensure handlers | nanami | |
| 2013-12-10 | Avoid recursive instance variable inspections | h2so5 | |
| 2013-12-08 | Fix mod.constants cannot return the single character constant | bggd | |
| 2013-12-07 | Fix ISO no in Array#* and Array#+ | Jun Hiroe | |
| 2013-12-05 | remove unnecessary keep size adjustment in stack_extend_alloc(); close #1602 | Yukihiro "Matz" Matsumoto | |
| 2013-12-03 | avoid top-level pool release at codegen_error() and fixed some memory leaks | Yukihiro "Matz" Matsumoto | |
| 2013-12-03 | should not access scope after releasing memory pool | Yukihiro "Matz" Matsumoto | |
| 2013-12-02 | Merge pull request #1601 from carsonmcdonald/srcaptosizet | Yukihiro "Matz" Matsumoto | |
| Change scapa and rcapa to size_t, use scapa. | |||
| 2013-12-02 | Change scapa and rcapa to size_t, use scapa. | Carson McDonald | |
| 2013-12-01 | Merge pull request #1600 from take-cheeze/mrb_intern_lit | Yukihiro "Matz" Matsumoto | |
| Proposal of mrb_intern_lit macro. | |||
| 2013-12-01 | add mrb_intern_lit for creating symbol from string literal | take_cheeze | |
| 2013-12-01 | inline mrb_gc_arena_restore() and stack_extend() in VM loop | Yukihiro "Matz" Matsumoto | |
| 2013-11-29 | rename mrb_intern2() to mrb_intern(); huge API incompatibility; close #1513 | Yukihiro "Matz" Matsumoto | |
| 2013-11-27 | float objects in pool are objects when MRB_WORD_BOXING is set | Yukihiro "Matz" Matsumoto | |
| 2013-11-26 | Fix build error for MRB_WORD_BOXING | kyab | |
| 2013-11-26 | move debug record size assertion to correct position | take_cheeze | |
| 2013-11-24 | fix realloc error | take_cheeze | |
| 2013-11-22 | Make mrb->arena variable sized. Use MRB_GC_FIXED_ARENA for old behavior. | Yukihiro "Matz" Matsumoto | |
| You will not see "arena overflow" error anymore, but I encourage gem authors to check your gems with MRB_GC_FIXED_ARENA to avoid memory broat. | |||
| 2013-11-20 | rename API mrb_str_dup_static() -> mrb_str_pool() | Yukihiro "Matz" Matsumoto | |
| 2013-11-20 | need to free pooled string bodies as well | Yukihiro "Matz" Matsumoto | |
| 2013-11-20 | mrb format should be portable among configurations (e.g. MRB_NAN_BOXING) | Yukihiro "Matz" Matsumoto | |
| 2013-11-20 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2013-11-19 | irep->pool struct pool -> mrb_value | Miura Hideki | |
| 2013-11-19 | Fixed so that it builds with VS2013. VLA:s are not supported, because of its ↵ | Per Lundberg | |
| strict C89 world view. | |||
| 2013-11-18 | Merge pull request #1584 from cremno/rename-mrb_exc_new3 | Yukihiro "Matz" Matsumoto | |
| renamed mrb_exc_new3 to mrb_exc_new_str | |||
| 2013-11-18 | Merge pull request #1585 from cremno/codegen-fixes | Yukihiro "Matz" Matsumoto | |
| codegen_malloc/realloc: static + simple mem alloc | |||
| 2013-11-19 | clear ci->err after const set; revert 5b51b1; ref #1583 | Yukihiro "Matz" Matsumoto | |
| 2013-11-18 | renamed mrb_exc_new3 to mrb_exc_new_str | cremno | |
| - more descriptive name (there's no mrb_exc_new2) - no wrapper (macro/static inline function) for backwards compatibility because nothing besides mruby itself seems to be calling this function: <http://mruby-code-search.ongaeshi.me/home?query=mrb_exc_new3> | |||
| 2013-11-18 | codegen_malloc/realloc: static + simple mem alloc | cremno | |
| - there's no reason for both to have external linkage - use simple versions of memory allocation functions which are returning NULL instead of longjmp-ing, so codegen_error will be called to cleanup. | |||
| 2013-11-18 | ci->err may be out of boud; close #1583 | Yukihiro "Matz" Matsumoto | |
| 2013-11-18 | write_debug_record should dump info recursively; close #1581 | Yukihiro "Matz" Matsumoto | |
| 2013-11-18 | check upper callinfo to call ensure block; close #1579 | Yukihiro "Matz" Matsumoto | |
| 2013-11-18 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-11-17 | fix warning: "implicit conversion from enumeration type 'enum mrb_vtype' to ↵ | takahashim | |
| different enumeration type 'enum irep_pool_type' [-Wenum-conversion]" | |||
| 2013-11-15 | wrong size of filenames buffer | Yukihiro "Matz" Matsumoto | |
| 2013-11-15 | should output debug info for child ireps; close #1575 | Yukihiro "Matz" Matsumoto | |
| 2013-11-15 | should not free buffer that is still accessed | Yukihiro "Matz" Matsumoto | |
| 2013-11-15 | wrong size of filenames buffer | Yukihiro "Matz" Matsumoto | |
