summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2013-12-24remove MRB_IREP_ARRAY_INIT_SIZE which is no longer usedYukihiro "Matz" Matsumoto
2013-12-23Merge pull request #1615 from crimsonwoods/remove_strong_coupling_by_khashYukihiro "Matz" Matsumoto
Remove 'mrb_state' field from 'kh_xxx_t' structure.
2013-12-23Remove '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-23change behavior of mrb_sym2strh2so5
2013-12-19Merge pull request #1612 from h2so5/node-caseYukihiro "Matz" Matsumoto
fix codegen bug in NODE_CASE
2013-12-19Merge pull request #1611 from h2so5/inspect-typeYukihiro "Matz" Matsumoto
fix TypeError message
2013-12-19fix codegen bug in NODE_CASEh2so5
2013-12-19fix TypeError messageh2so5
2013-12-19Fix typo from expornent to exponentNobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
2013-12-15Fixed callinfo buffer overflow while calling ensure handlersnanami
2013-12-10Avoid recursive instance variable inspectionsh2so5
2013-12-08Fix mod.constants cannot return the single character constantbggd
2013-12-07Fix ISO no in Array#* and Array#+Jun Hiroe
2013-12-05remove unnecessary keep size adjustment in stack_extend_alloc(); close #1602Yukihiro "Matz" Matsumoto
2013-12-03avoid top-level pool release at codegen_error() and fixed some memory leaksYukihiro "Matz" Matsumoto
2013-12-03should not access scope after releasing memory poolYukihiro "Matz" Matsumoto
2013-12-02Merge pull request #1601 from carsonmcdonald/srcaptosizetYukihiro "Matz" Matsumoto
Change scapa and rcapa to size_t, use scapa.
2013-12-02Change scapa and rcapa to size_t, use scapa.Carson McDonald
2013-12-01Merge pull request #1600 from take-cheeze/mrb_intern_litYukihiro "Matz" Matsumoto
Proposal of mrb_intern_lit macro.
2013-12-01add mrb_intern_lit for creating symbol from string literaltake_cheeze
2013-12-01inline mrb_gc_arena_restore() and stack_extend() in VM loopYukihiro "Matz" Matsumoto
2013-11-29rename mrb_intern2() to mrb_intern(); huge API incompatibility; close #1513Yukihiro "Matz" Matsumoto
2013-11-27float objects in pool are objects when MRB_WORD_BOXING is setYukihiro "Matz" Matsumoto
2013-11-26Fix build error for MRB_WORD_BOXINGkyab
2013-11-26move debug record size assertion to correct positiontake_cheeze
2013-11-24fix realloc errortake_cheeze
2013-11-22Make 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-20rename API mrb_str_dup_static() -> mrb_str_pool()Yukihiro "Matz" Matsumoto
2013-11-20need to free pooled string bodies as wellYukihiro "Matz" Matsumoto
2013-11-20mrb format should be portable among configurations (e.g. MRB_NAN_BOXING)Yukihiro "Matz" Matsumoto
2013-11-20resolve conflictYukihiro "Matz" Matsumoto
2013-11-19irep->pool struct pool -> mrb_valueMiura Hideki
2013-11-19Fixed so that it builds with VS2013. VLA:s are not supported, because of its ↵Per Lundberg
strict C89 world view.
2013-11-18Merge pull request #1584 from cremno/rename-mrb_exc_new3Yukihiro "Matz" Matsumoto
renamed mrb_exc_new3 to mrb_exc_new_str
2013-11-18Merge pull request #1585 from cremno/codegen-fixesYukihiro "Matz" Matsumoto
codegen_malloc/realloc: static + simple mem alloc
2013-11-19clear ci->err after const set; revert 5b51b1; ref #1583Yukihiro "Matz" Matsumoto
2013-11-18renamed mrb_exc_new3 to mrb_exc_new_strcremno
- 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-18codegen_malloc/realloc: static + simple mem alloccremno
- 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-18ci->err may be out of boud; close #1583Yukihiro "Matz" Matsumoto
2013-11-18write_debug_record should dump info recursively; close #1581Yukihiro "Matz" Matsumoto
2013-11-18check upper callinfo to call ensure block; close #1579Yukihiro "Matz" Matsumoto
2013-11-18Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-11-17fix warning: "implicit conversion from enumeration type 'enum mrb_vtype' to ↵takahashim
different enumeration type 'enum irep_pool_type' [-Wenum-conversion]"
2013-11-15wrong size of filenames bufferYukihiro "Matz" Matsumoto
2013-11-15should output debug info for child ireps; close #1575Yukihiro "Matz" Matsumoto
2013-11-15should not free buffer that is still accessedYukihiro "Matz" Matsumoto
2013-11-15wrong size of filenames bufferYukihiro "Matz" Matsumoto
2013-11-15add new function mrb_load_irep_file_cxt() and simplifies mruby.cYukihiro "Matz" Matsumoto
2013-11-15enum mrb_vtype varies on compile time configuration, namely MRB_NAN_BOXINGYukihiro "Matz" Matsumoto
2013-11-15remove warning on NAN_BOXINGYukihiro "Matz" Matsumoto