| 
									
										
										
										
											2009-10-07 16:48:09 -04:00
										 |  |  | #include "master.hpp"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:29:54 -04:00
										 |  |  | namespace factor { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-12 23:20:43 -04:00
										 |  |  | to_tenured_collector::to_tenured_collector(factor_vm* parent) | 
					
						
							|  |  |  |     : collector<tenured_space, to_tenured_policy>(parent, | 
					
						
							|  |  |  |                                                   parent->data->tenured, | 
					
						
							|  |  |  |                                                   to_tenured_policy(parent)) {} | 
					
						
							| 
									
										
										
										
											2013-05-11 22:29:54 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | void to_tenured_collector::tenure_reachable_objects() { | 
					
						
							|  |  |  |   std::vector<cell>* mark_stack = &parent->mark_stack; | 
					
						
							|  |  |  |   while (!mark_stack->empty()) { | 
					
						
							|  |  |  |     cell ptr = mark_stack->back(); | 
					
						
							|  |  |  |     mark_stack->pop_back(); | 
					
						
							|  |  |  |     this->trace_object((object*)ptr); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-10-20 23:20:49 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:29:54 -04:00
										 |  |  | void factor_vm::collect_to_tenured() { | 
					
						
							|  |  |  |   /* Copy live objects from aging space to tenured space. */ | 
					
						
							|  |  |  |   to_tenured_collector collector(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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:29:54 -04:00
										 |  |  |   collector.trace_roots(); | 
					
						
							|  |  |  |   collector.trace_contexts(); | 
					
						
							| 
									
										
										
										
											2009-10-27 00:57:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  |     event->started_card_scan(); | 
					
						
							|  |  |  |   collector.trace_cards(data->tenured, card_points_to_aging, full_unmarker()); | 
					
						
							|  |  |  |   if (event) | 
					
						
							|  |  |  |     event->ended_card_scan(collector.cards_scanned, collector.decks_scanned); | 
					
						
							| 
									
										
										
										
											2009-10-27 00:57:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:29:54 -04:00
										 |  |  |   if (event) | 
					
						
							|  |  |  |     event->started_code_scan(); | 
					
						
							|  |  |  |   collector.trace_code_heap_roots(&code->points_to_aging); | 
					
						
							|  |  |  |   if (event) | 
					
						
							|  |  |  |     event->ended_code_scan(collector.code_blocks_scanned); | 
					
						
							| 
									
										
										
										
											2009-10-27 00:57:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:29:54 -04:00
										 |  |  |   collector.tenure_reachable_objects(); | 
					
						
							| 
									
										
										
										
											2009-10-27 00:57:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:29:54 -04:00
										 |  |  |   data->reset_generation(&nursery); | 
					
						
							|  |  |  |   data->reset_generation(data->aging); | 
					
						
							|  |  |  |   code->clear_remembered_set(); | 
					
						
							| 
									
										
										
										
											2009-10-07 16:48:09 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |