1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* gc.c (gc_page_sweep, rgengc_rememberset_mark): Refactoring.

Get bitmaps directly.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tarui 2013-11-09 00:23:02 +00:00
parent ead9dbae1f
commit 5d663cc2d3
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Sat Nov 9 09:22:29 2013 Masaya Tarui <tarui@ruby-lang.org>
* gc.c (gc_page_sweep, rgengc_rememberset_mark): Refactoring.
Get bitmaps directly.
Sat Nov 9 09:16:36 2013 Masaya Tarui <tarui@ruby-lang.org>
* gc.c (RVALUE_PROMOTE_INFANT): Refactoring. Remove duplicated nonsense

4
gc.c
View file

@ -2662,7 +2662,7 @@ gc_page_sweep(rb_objspace_t *objspace, rb_heap_t *heap, struct heap_page *sweep_
p = sweep_page->start; pend = p + sweep_page->limit;
offset = p - NUM_IN_PAGE(p);
bits = GET_HEAP_MARK_BITS(p);
bits = sweep_page->mark_bits;
/* create guard : fill 1 out-of-range */
bits[BITMAP_INDEX(p)] |= BITMAP_BIT(p)-1;
@ -4478,7 +4478,7 @@ rgengc_rememberset_mark(rb_objspace_t *objspace, rb_heap_t *heap)
while (page) {
p = page->start;
bits = GET_HEAP_REMEMBERSET_BITS(p);
bits = page->rememberset_bits;
offset = p - NUM_IN_PAGE(p);
for (j=0; j < HEAP_BITMAP_LIMIT; j++) {