2009-10-07 16:48:09 -04:00
|
|
|
#include "master.hpp"
|
|
|
|
|
2013-05-11 22:29:54 -04:00
|
|
|
namespace factor {
|
|
|
|
|
|
|
|
void factor_vm::collect_to_tenured() {
|
|
|
|
/* Copy live objects from aging space to tenured space. */
|
2015-05-03 11:51:51 -04:00
|
|
|
collector<tenured_space, to_tenured_policy> collector(this,
|
2016-05-03 18:32:17 -04:00
|
|
|
data->tenured,
|
2015-05-03 11:51:51 -04:00
|
|
|
to_tenured_policy(this));
|
2009-10-08 03:10:28 -04:00
|
|
|
|
2013-05-11 22:29:54 -04:00
|
|
|
mark_stack.clear();
|
2009-10-21 20:41:54 -04:00
|
|
|
|
2015-02-18 23:43:53 -05:00
|
|
|
collector.visitor.visit_all_roots();
|
2013-05-11 22:29:54 -04:00
|
|
|
gc_event* event = current_gc->event;
|
2010-09-04 16:21:45 -04:00
|
|
|
|
2013-05-11 22:29:54 -04:00
|
|
|
if (event)
|
2016-04-24 09:21:17 -04:00
|
|
|
event->reset_timer();
|
2016-05-03 18:32:17 -04:00
|
|
|
collector.visitor.visit_cards(data->tenured, card_points_to_aging, 0xff);
|
|
|
|
if (event) {
|
|
|
|
event->ended_card_scan(collector.visitor.cards_scanned,
|
|
|
|
collector.visitor.decks_scanned);
|
|
|
|
}
|
2009-10-27 00:57:26 -04:00
|
|
|
|
2013-05-11 22:29:54 -04:00
|
|
|
if (event)
|
2016-04-24 09:21:17 -04:00
|
|
|
event->reset_timer();
|
2016-05-03 18:32:17 -04:00
|
|
|
collector.visitor.visit_code_heap_roots(&code->points_to_aging);
|
2013-05-11 22:29:54 -04:00
|
|
|
if (event)
|
2016-04-10 19:31:43 -04:00
|
|
|
event->ended_code_scan(code->points_to_aging.size());
|
2009-10-27 00:57:26 -04:00
|
|
|
|
2015-02-19 08:43:54 -05:00
|
|
|
collector.visitor.visit_mark_stack(&mark_stack);
|
2009-10-27 00:57:26 -04:00
|
|
|
|
2015-01-10 10:14:54 -05:00
|
|
|
data->reset_nursery();
|
|
|
|
data->reset_aging();
|
2013-05-11 22:29:54 -04:00
|
|
|
code->clear_remembered_set();
|
2009-10-07 16:48:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|