aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
Commit message (Expand)AuthorAgeFilesLines
* * gc.c (obj_free): doesn't free a method table if it doesn'tnari2012-05-281-1/+3
* Imports Ruby's port to NativeClient (a.k.a NaCl).yugui2012-05-171-0/+6
* * gc.c (obj_free): show entire flags too.nobu2012-04-131-2/+2
* * gc.c (GET_HEAP_HEADER, NUM_IN_SLOT): parenthesise macro parameters.nobu2012-04-121-2/+2
* * st.c (st_update): pass pointer to key to the callback function.nobu2012-03-291-2/+3
* * st.c (st_update): add existing parameter to the callback function.nobu2012-03-291-1/+2
* fix condition for freenobu2012-03-181-2/+3
* * gc.c (aligned_malloc, aligned_free): added fallback implementationsyugui2012-03-181-2/+15
* * gc.c (free_method_entry_i): method entry may be innobu2012-03-181-1/+3
* Bug #5350nobu2012-03-131-8/+209
* * gc.c : remove gc_clear_mark_on_sweep_slots() and usenari2012-02-211-21/+5
* revert r34691 and r34689nari2012-02-191-1/+4
* * gc.c (gc_clear_mark_on_sweep_slots): remove a unused variable.nari2012-02-191-2/+0
* * gc.c (gc_clear_mark_on_sweep_slots): uses slot_sweep() fornari2012-02-191-2/+1
* * cont.c (rb_fiber_reset_root_local_storage): add a new function tonagachika2012-02-151-1/+2
* * gc.c (HEAP_BITMAP_LIMIT): HEAP_BITMAP_LIMIT is computed on thenari2012-02-151-1/+1
* * gc.c (CEILDIV): rename to a appropriate name.nari2012-02-141-2/+2
* * gc.c (assign_heap_slot): SEGV happens cause on 64-bit platformnari2012-02-141-3/+1
* * gc.c (HEAP_OBJ_LIMIT, HEAP_BITMAP_LIMIT): HEAP_OBJ_LIMIT usednari2012-02-131-2/+3
* * configure.in (HEAP_ALIGN_LOG): HEAP_ALIGN_LOG should be pagenari2012-01-311-1/+3
* * gc.c (HEAP_ALIGN, HEAP_ALIGN_MASK): DRY, let compiler calculatenobu2012-01-271-2/+2
* * gc.c (aligned_malloc, aligned_free): covered missing definednobu2012-01-171-4/+4
* * gc.c (ruby_mimmalloc): don't set allocated size to header.nagachika2012-01-111-3/+6
* * gc.c (HEAP_OBJ_LIMIT): suppress narrowing down warning from gcc 4.2.nobu2012-01-101-1/+1
* * gc.c: in fact, i686-linux doesn't need to define _XOPEN_SOURCE 600.naruse2012-01-101-3/+0
* * gc.c (ruby_mimmalloc): defined for objects need not rb_objspace,naruse2012-01-101-0/+18
* * gc.c (run_finalizer): clear rb_thread_t::errinfo when ignorenagachika2012-01-091-0/+3
* * gc.c : don't embed struct heaps_slot to a heap block because itnari2012-01-091-13/+30
* * gc.c: free_slots is changed Singly linked list. clearnari2012-01-091-15/+7
* * gc.c: i686-linux needs to define _XOPEN_SOURCE 600 for posix_memalign.naruse2012-01-081-3/+5
* * gc.c (rb_objspace_free): global_List is allocated with xmalloc.naruse2012-01-081-1/+1
* * gc.c : consider header bytes which are used by malloc.nari2012-01-081-7/+8
* * gc.c (aligned_free): support MinGW. Patch by Hiroshi Shirosaki.nari2012-01-081-1/+3
* * gc.c (slot_sweep): add a assertion instead of a debug print.nari2012-01-081-3/+1
* * gc.c: get rid of implicit narrowing conversion.kosaki2012-01-071-1/+1
* * configure.in: check posix_memalign(3) and menalign(3).naruse2012-01-071-5/+8
* * gc.c: use Bitmap Marking algorithm to avoid copy-on-write ofnari2012-01-071-110/+227
* * node.h, node.c, parse.y: implement a parser part for keyword arguments. Thi...mame2011-12-261-3/+5
* * node.h, parse.y (new_args_gen), compile.c (iseq_set_arguments): use struct ...mame2011-12-261-1/+17
* * bignum.c (big_rshift), compile.c (validate_label,nobu2011-12-051-0/+1
* * gc.c (initial_params): static. it seems to be forgetten at r33501.usa2011-11-281-1/+1
* * gc.c (initial_params): pack in a struct.nobu2011-10-211-4/+19
* * gc.c (rb_gc_set_params): set parameters always.nobu2011-10-211-7/+2
* * gc.c (rb_gc_finalize_deferred, rb_objspace_call_finalizer):nobu2011-10-131-2/+2
* * class.c (class_alloc): allocate extra memory after containingnobu2011-10-041-0/+1
* * gc.c (rb_gc_set_params): ruby_verbose can be Qnil, so use RTEST.naruse2011-10-041-3/+3
* * gc.c (rb_gc_set_params): output GC parameter change messages onlynagachika2011-10-031-3/+8
* * gc.c (add_heap_slots, init_heap): reset heaps_inc zero whennagachika2011-10-011-1/+1
* * gc.c (slot_sweep, rb_gc_finalize_deferred)nobu2011-09-291-3/+11
* * gc.c (is_id_value, is_live_object): extract from id2ref().nobu2011-09-291-4/+20