summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-26 02:34:23 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-26 02:34:23 +0000
commit6c458aec30a95695a3a7d20b6cf37fb4dbfd753a (patch)
tree99d1b70ddb350d87fa86104d36e60e1d8d320566 /gc.c
parent59735e2c617df8e7d12b8bdf603915e105c9571a (diff)
* gc.c (vm_malloc_increase): do gc_rest_sweep() before GC.
gc_rest_sweep() can reduce malloc_increase, so try it before GC. Otherwise, malloc_increase can be less than malloc_limit at gc_before_sweep(). This means that re-calculation of malloc_limit may be wrong value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 89875253e3..320a5de093 100644
--- a/gc.c
+++ b/gc.c
@@ -5033,9 +5033,19 @@ vm_malloc_increase(rb_objspace_t *objspace, size_t new_size, size_t old_size, in
}
if (do_gc) {
- if ((ruby_gc_stress && !ruby_disable_gc_stress) || (malloc_increase > malloc_limit)) {
+ if (ruby_gc_stress && !ruby_disable_gc_stress) {
garbage_collect_with_gvl(objspace, 0, 0, GPR_FLAG_MALLOC);
}
+ else {
+ retry:
+ if (malloc_increase > malloc_limit) {
+ if (is_lazy_sweeping(heap_eden)) {
+ gc_rest_sweep(objspace); /* rest_sweep can reduce malloc_increase */
+ goto retry;
+ }
+ garbage_collect_with_gvl(objspace, 0, 0, GPR_FLAG_MALLOC);
+ }
+ }
}
}