factor/vm/collector.hpp

178 lines
5.0 KiB
C++

namespace factor {
struct must_start_gc_again {
};
template <typename TargetGeneration, typename Policy>
struct gc_workhorse : no_fixup {
static const bool translated_code_block_map = false;
factor_vm* parent;
TargetGeneration* target;
Policy policy;
code_heap* code;
gc_workhorse(factor_vm* parent, TargetGeneration* target, Policy policy)
: parent(parent), target(target), policy(policy), code(parent->code) {}
object* fixup_data(object* obj) {
FACTOR_ASSERT((parent->current_gc &&
parent->current_gc->op == collect_growing_heap_op) ||
parent->data->seg->in_segment_p((cell)obj));
if (!policy.should_copy_p(obj)) {
policy.visited_object(obj);
return obj;
}
/* is there another forwarding pointer? */
while (obj->forwarding_pointer_p()) {
object* dest = obj->forwarding_pointer();
obj = dest;
}
if (!policy.should_copy_p(obj)) {
policy.visited_object(obj);
return obj;
}
cell size = obj->size();
object* newpointer = target->allot(size);
if (!newpointer)
throw must_start_gc_again();
memcpy(newpointer, obj, size);
obj->forward_to(newpointer);
policy.promoted_object(newpointer);
return newpointer;
}
code_block* fixup_code(code_block* compiled) {
if (!code->allocator->state.marked_p((cell)compiled)) {
code->allocator->state.set_marked_p((cell)compiled, compiled->size());
parent->mark_stack.push_back((cell)compiled + 1);
}
return compiled;
}
};
template <typename TargetGeneration, typename Policy> struct collector {
factor_vm* parent;
data_heap* data;
code_heap* code;
TargetGeneration* target;
gc_workhorse<TargetGeneration, Policy> workhorse;
slot_visitor<gc_workhorse<TargetGeneration, Policy> > visitor;
cell cards_scanned;
cell decks_scanned;
cell code_blocks_scanned;
cell scan;
collector(factor_vm* parent, TargetGeneration* target, Policy policy)
: parent(parent),
data(parent->data),
code(parent->code),
target(target),
workhorse(parent, target, policy),
visitor(parent, workhorse),
cards_scanned(0),
decks_scanned(0),
code_blocks_scanned(0) {
scan = target->start + target->occupied_space();
}
void trace_code_heap_roots(std::set<code_block*>* remembered_set) {
FACTOR_FOR_EACH(*remembered_set) {
code_block* compiled = *iter;
visitor.visit_code_block_objects(compiled);
visitor.visit_embedded_literals(compiled);
compiled->flush_icache();
code_blocks_scanned++;
}
}
void trace_partial_objects(cell start, cell card_start, cell card_end) {
cell *scan_start = (cell*)start + 1;
cell *scan_end = scan_start + ((object*)start)->slot_count();
scan_start = std::max(scan_start, (cell*)card_start);
scan_end = std::min(scan_end, (cell*)card_end);
visitor.visit_object_array(scan_start, scan_end);
}
template <typename SourceGeneration>
cell trace_card(SourceGeneration* gen, cell index, cell start) {
cell start_addr = data->start + index * card_size;
cell end_addr = start_addr + card_size;
if (!start || (start + ((object*)start)->size()) < start_addr) {
/* Optimization because finding the objects in a memory range is
expensive. It helps a lot when tracing consecutive cards. */
cell gen_start_card = (gen->start - data->start) / card_size;
start = gen->starts
.find_object_containing_card(index - gen_start_card);
}
while (start && start < end_addr) {
trace_partial_objects(start, start_addr, end_addr);
if ((start + ((object*)start)->size()) >= end_addr) {
/* The object can overlap the card boundary, then the
remainder of it will be handled in the next card
tracing if that card is marked. */
break;
}
start = gen->next_object_after(start);
}
return start;
}
template <typename SourceGeneration>
void trace_cards(SourceGeneration* gen, card mask, card unmask) {
card_deck* decks = data->decks;
card_deck* cards = data->cards;
cell first_deck = (gen->start - data->start) / deck_size;
cell last_deck = (gen->end - data->start) / deck_size;
/* Address of last traced object. */
cell start = 0;
for (cell di = first_deck; di < last_deck; di++) {
if (decks[di] & mask) {
decks[di] &= ~unmask;
decks_scanned++;
cell first_card = cards_per_deck * di;
cell last_card = first_card + cards_per_deck;
for (cell ci = first_card; ci < last_card; ci++) {
if (cards[ci] & mask) {
cards[ci] &= ~unmask;
cards_scanned++;
start = trace_card(gen, ci, start);
if (!start) {
/* At end of generation, no need to scan more cards. */
return;
}
}
}
}
}
}
void cheneys_algorithm() {
while (scan && scan < this->target->here) {
this->visitor.visit_object((object*)scan);
scan = this->target->next_object_after(scan);
}
}
};
}