Skip to content

Commit

Permalink
* gc.c: relax GC condition due to malloc_limit.
Browse files Browse the repository at this point in the history
* gc.c (GC_MALLOC_LIMIT_MAX): change default value
  (256MB -> 512MB) and permit zero to ignore max value.
* gc.c (vm_malloc_increase, vm_xrealloc): do not cause GC on realloc.
* gc.c (gc_before_sweep): change debug messages.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ko1 committed Oct 2, 2013
1 parent a2d21de commit 8c0033a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 9 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
@@ -1,3 +1,14 @@
Wed Oct 2 18:52:40 2013 Koichi Sasada <ko1@atdot.net>

* gc.c: relax GC condition due to malloc_limit.

* gc.c (GC_MALLOC_LIMIT_MAX): change default value
(256MB -> 512MB) and permit zero to ignore max value.

* gc.c (vm_malloc_increase, vm_xrealloc): do not cause GC on realloc.

* gc.c (gc_before_sweep): change debug messages.

Wed Oct 2 16:26:49 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>

* io.c (rb_io_close_read): duplex IO should wait its child process
Expand Down
26 changes: 17 additions & 9 deletions gc.c
Expand Up @@ -90,7 +90,7 @@ rb_gc_guarded_ptr(volatile VALUE *ptr)
#define GC_MALLOC_LIMIT (8 /* 8 MB */ * 1024 * 1024 /* 1MB */)
#endif
#ifndef GC_MALLOC_LIMIT_MAX
#define GC_MALLOC_LIMIT_MAX (256 /* 256 MB */ * 1024 * 1024 /* 1MB */)
#define GC_MALLOC_LIMIT_MAX (512 /* 512 MB */ * 1024 * 1024 /* 1MB */)
#endif
#ifndef GC_MALLOC_LIMIT_GROWTH_FACTOR
#define GC_MALLOC_LIMIT_GROWTH_FACTOR 1.8
Expand Down Expand Up @@ -2374,7 +2374,7 @@ __attribute__((noinline))
static void
gc_before_sweep(rb_objspace_t *objspace)
{
rgengc_report(1, objspace, "before_gc_sweep\n");
rgengc_report(1, objspace, "gc_before_sweep\n");

objspace->heap.do_heap_free = (size_t)((heap_used * HEAP_OBJ_LIMIT) * 0.65);
objspace->heap.free_min = (size_t)((heap_used * HEAP_OBJ_LIMIT) * 0.2);
Expand Down Expand Up @@ -2408,7 +2408,8 @@ gc_before_sweep(rb_objspace_t *objspace)

if (inc > malloc_limit) {
malloc_limit += (size_t)(malloc_limit * (initial_malloc_limit_growth_factor - 1));
if (malloc_limit > initial_malloc_limit_max) {
if (initial_malloc_limit_max > 0 && /* ignore max-check if 0 */
malloc_limit > initial_malloc_limit_max) {
malloc_limit = initial_malloc_limit_max;
}
}
Expand All @@ -2420,7 +2421,14 @@ gc_before_sweep(rb_objspace_t *objspace)
}

if (0) {
fprintf(stderr, "malloc_limit: %"PRIuSIZE" -> %"PRIuSIZE"\n", old_limit, malloc_limit);
if (old_limit != malloc_limit) {
fprintf(stderr, "[%"PRIuSIZE"] malloc_limit: %"PRIuSIZE" -> %"PRIuSIZE"\n",
rb_gc_count(), old_limit, malloc_limit);
}
else {
fprintf(stderr, "[%"PRIuSIZE"] malloc_limit: not changed (%"PRIuSIZE")\n",
rb_gc_count(), malloc_limit);
}
}
}
}
Expand Down Expand Up @@ -4663,7 +4671,7 @@ rb_gc_set_params(void)
}

get_envparam_int ("RUBY_GC_MALLOC_LIMIT", &initial_malloc_limit, 0);
get_envparam_int ("RUBY_GC_MALLOC_LIMIT_MAX", &initial_malloc_limit_max, initial_malloc_limit);
get_envparam_int ("RUBY_GC_MALLOC_LIMIT_MAX", &initial_malloc_limit_max, 0);
get_envparam_double("RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR", &initial_malloc_limit_growth_factor, 1.0);
}

Expand Down Expand Up @@ -4806,12 +4814,12 @@ aligned_free(void *ptr)
}

static void
vm_malloc_increase(rb_objspace_t *objspace, size_t size)
vm_malloc_increase(rb_objspace_t *objspace, size_t size, int do_gc)
{
ATOMIC_SIZE_ADD(malloc_increase, size);

if ((ruby_gc_stress && !ruby_disable_gc_stress) ||
malloc_increase > malloc_limit) {
(do_gc && (malloc_increase > malloc_limit))) {
garbage_collect_with_gvl(objspace, 0, 0, GPR_FLAG_MALLOC);
}
}
Expand All @@ -4828,7 +4836,7 @@ vm_malloc_prepare(rb_objspace_t *objspace, size_t size)
size += sizeof(size_t);
#endif

vm_malloc_increase(objspace, size);
vm_malloc_increase(objspace, size, TRUE);

return size;
}
Expand Down Expand Up @@ -4888,7 +4896,7 @@ vm_xrealloc(rb_objspace_t *objspace, void *ptr, size_t size)
return 0;
}

vm_malloc_increase(objspace, size);
vm_malloc_increase(objspace, size, FALSE);

#if CALC_EXACT_MALLOC_SIZE
size += sizeof(size_t);
Expand Down

0 comments on commit 8c0033a

Please sign in to comment.