summaryrefslogtreecommitdiffhomepage
path: root/src/gc.c
AgeCommit message (Expand)Author
2012-11-08Fix build on c++ compilerXuejie Xiao
2012-11-05inline include/mruby/object.hYukihiro Matz Matsumoto
2012-11-04replace RBASIC by mrb_basicYukihiro Matz Matsumoto
2012-11-04remove FL_XXX macrosYukihiro Matz Matsumoto
2012-10-29Use substitution instead of memset in structure initialization.Masaki Muranaka
2012-08-29remove flags from irepYukihiro Matsumoto
2012-08-28free heap pages from mrb_close()Yukihiro Matsumoto
2012-08-21Refer to irep_capa as well as irep_len when irep is marked by GC.Masamitsu MURASE
2012-08-19replace RiteVM in comments by mrubyYukihiro Matsumoto
2012-08-19allocf should take ud; https://twitter.com/junjis0203/status/236949976461221889Yukihiro Matsumoto
2012-08-18rename MRUBY_OBJECT_HEADER to MRB_OBJECT_HEADERYukihiro Matsumoto
2012-08-09add GC.disable and GC.enableYukihiro Matsumoto
2012-08-03Fix a memory leak in mrb_realloc().Masaki Muranaka
2012-07-31mark mrb->exc objectYukihiro Matsumoto
2012-07-30configurable MRB_HEAP_PAGE_SIZEYukihiro Matsumoto
2012-07-29Make all(?) void casts explicit for C++Max Anselm
2012-07-27remove <stdio.h> that added for debuggingYukihiro Matsumoto
2012-07-27adjust ci->nregs for C implemented methodsYukihiro Matsumoto
2012-07-27temporary protection not to access out of stackYukihiro Matsumoto
2012-07-22fix: SIZE_MAX is not defined in "stdint.h"crimsonwoods
2012-07-14Remove unnecessary header inclusionJunji Sawada
2012-07-13less <stdio.h>Yukihiro Matsumoto
2012-07-08Use mrb_calloc if you want zero cleard buffers.Masaki Muranaka
2012-07-07Add a check for unsigned integer wrapping.Masaki Muranaka
2012-07-07Fix underlying bugs. mrb_calloc will be crashed in case "nelem == 0" or "p ==...Masaki Muranaka
2012-07-01Free iv of MRB_TT_DATA instance.Masamitsu MURASE
2012-06-29Make strucdata optional if ENABLE_STRUCT is activitatedDaniel Bovensiepen
2012-06-24Merge pull request #317 from masamitsu-murase/fix_struct_new_gcYukihiro "Matz" Matsumoto
2012-06-24Merge pull request #313 from masamitsu-murase/fix_struct_newYukihiro "Matz" Matsumoto
2012-06-24should mark child env from method (proc) objectsYukihiro Matsumoto
2012-06-24Modify gc_gray_mark for Struct.Masamitsu MURASE
2012-06-24Modify obj_free to free instances of Struct.Masamitsu MURASE
2012-06-24Implement garbage collection for struct.Masamitsu MURASE
2012-06-20remove RuntimeError from mrb_stateYukihiro Matsumoto
2012-06-15use ENABLE/DISABLE instead of INCLUDE for configuration macro namesYukihiro Matsumoto
2012-06-07remove src/gc.hYukihiro Matsumoto
2012-06-05mruby/array.h: rename buf to ptrYukihiro Matsumoto
2012-06-05mruby/string.h: rename buf to ptrYukihiro Matsumoto
2012-06-04remove mrb_open NULL check for small test programs. They are only for proof-...Yukihiro Matsumoto
2012-06-03Check mrb_open return value for NULLJon
2012-06-03make arrays to share bodiesYukihiro Matsumoto
2012-06-03mrb_malloc/calloc/realloc should call mrb_garbage_collect before returning NULLYukihiro Matsumoto
2012-06-03should decref shared string body on gc_freeYukihiro Matsumoto
2012-06-03make shared string to reference-counted C structure to reduce GC pressureYukihiro Matsumoto
2012-06-01new API mrb_gc_protect() to add object to arenaYukihiro Matsumoto
2012-05-31correctly share string bodiesYukihiro Matsumoto
2012-05-31allow string shared bodyYukihiro Matsumoto
2012-05-31resolve conflictYukihiro Matsumoto
2012-05-30MRB_GC_STRESS for GC testYukihiro Matsumoto
2012-05-30remove spaces after open parenYukihiro Matsumoto