]> gitweb.factorcode.org Git - factor.git/blob - vm/code_heap.cpp
vm: only verify all_blocks set if it's invalid
[factor.git] / vm / code_heap.cpp
1 #include "master.hpp"
2
3 namespace factor
4 {
5
6 code_heap::code_heap(cell size)
7 {
8         if(size > ((u64)1 << (sizeof(cell) * 8 - 6))) fatal_error("Heap too large",size);
9         seg = new segment(align_page(size),true);
10         if(!seg) fatal_error("Out of memory in code_heap constructor",size);
11
12         cell start = seg->start + getpagesize() + seh_area_size;
13
14         allocator = new free_list_allocator<code_block>(seg->end - start,start);
15
16         /* See os-windows-x86.64.cpp for seh_area usage */
17         safepoint_page = (void *)seg->start;
18         seh_area = (char *)seg->start + getpagesize();
19 }
20
21 code_heap::~code_heap()
22 {
23         delete allocator;
24         allocator = NULL;
25         delete seg;
26         seg = NULL;
27 }
28
29 void code_heap::write_barrier(code_block *compiled)
30 {
31         points_to_nursery.insert(compiled);
32         points_to_aging.insert(compiled);
33 }
34
35 void code_heap::clear_remembered_set()
36 {
37         points_to_nursery.clear();
38         points_to_aging.clear();
39 }
40
41 bool code_heap::uninitialized_p(code_block *compiled)
42 {
43         return uninitialized_blocks.count(compiled) > 0;
44 }
45
46 bool code_heap::marked_p(code_block *compiled)
47 {
48         return allocator->state.marked_p(compiled);
49 }
50
51 void code_heap::set_marked_p(code_block *compiled)
52 {
53         allocator->state.set_marked_p(compiled);
54 }
55
56 void code_heap::clear_mark_bits()
57 {
58         allocator->state.clear_mark_bits();
59 }
60
61 void code_heap::free(code_block *compiled)
62 {
63         FACTOR_ASSERT(!uninitialized_p(compiled));
64         points_to_nursery.erase(compiled);
65         points_to_aging.erase(compiled);
66         all_blocks.erase(compiled);
67         allocator->free(compiled);
68 }
69
70 void code_heap::flush_icache()
71 {
72         factor::flush_icache(seg->start,seg->size);
73 }
74
75 struct all_blocks_set_verifier {
76         std::set<code_block*> *leftovers;
77
78         all_blocks_set_verifier(std::set<code_block*> *leftovers) : leftovers(leftovers) {}
79
80         void operator()(code_block *block, cell size)
81         {
82                 FACTOR_ASSERT(leftovers->find(block) != leftovers->end());
83                 leftovers->erase(block);
84         }
85 };
86
87 void code_heap::verify_all_blocks_set()
88 {
89         std::set<code_block*> leftovers = all_blocks;
90         all_blocks_set_verifier verifier(&leftovers);
91         allocator->iterate(verifier);
92         FACTOR_ASSERT(leftovers.empty());
93 }
94
95 code_block *code_heap::code_block_for_address(cell address)
96 {
97         std::set<code_block*>::const_iterator blocki =
98                 all_blocks.upper_bound((code_block*)address);
99         FACTOR_ASSERT(blocki != all_blocks.begin());
100         --blocki;
101         code_block* found_block = *blocki;
102 #ifdef FACTOR_DEBUG
103         if (!((cell)found_block->entry_point() <= address
104                 && address - (cell)found_block->entry_point() < found_block->size()))
105         {
106                 std::cerr << "invalid block found in all_blocks set!" << std::endl;
107                 verify_all_blocks_set();
108                 FACTOR_ASSERT(false);
109         }
110 #endif
111         return found_block;
112 }
113
114 struct all_blocks_set_inserter {
115         code_heap *code;
116
117         all_blocks_set_inserter(code_heap *code) : code(code) {}
118
119         void operator()(code_block *block, cell size)
120         {
121                 code->all_blocks.insert(block);
122         }
123 };
124
125 void code_heap::initialize_all_blocks_set()
126 {
127         all_blocks.clear();
128         all_blocks_set_inserter inserter(this);
129         allocator->iterate(inserter);
130 }
131
132 void code_heap::update_all_blocks_set(mark_bits<code_block> *code_forwarding_map)
133 {
134         std::set<code_block *> new_all_blocks;
135         for (std::set<code_block *>::const_iterator oldi = all_blocks.begin();
136                 oldi != all_blocks.end();
137                 ++oldi)
138         {
139                 code_block *new_block = code_forwarding_map->forward_block(*oldi);
140                 new_all_blocks.insert(new_block);
141         }
142         all_blocks.swap(new_all_blocks);
143 }
144
145 /* Allocate a code heap during startup */
146 void factor_vm::init_code_heap(cell size)
147 {
148         code = new code_heap(size);
149 }
150
151 struct word_updater {
152         factor_vm *parent;
153         bool reset_inline_caches;
154
155         word_updater(factor_vm *parent_, bool reset_inline_caches_) :
156                 parent(parent_), reset_inline_caches(reset_inline_caches_) {}
157
158         void operator()(code_block *compiled, cell size)
159         {
160                 parent->update_word_references(compiled,reset_inline_caches);
161         }
162 };
163
164 /* Update pointers to words referenced from all code blocks.
165 Only needed after redefining an existing word.
166 If generic words were redefined, inline caches need to be reset. */
167 void factor_vm::update_code_heap_words(bool reset_inline_caches)
168 {
169         word_updater updater(this,reset_inline_caches);
170         each_code_block(updater);
171 }
172
173 /* Fix up new words only.
174 Fast path for compilation units that only define new words. */
175 void factor_vm::initialize_code_blocks()
176 {
177         std::map<code_block *, cell>::const_iterator iter = code->uninitialized_blocks.begin();
178         std::map<code_block *, cell>::const_iterator end = code->uninitialized_blocks.end();
179
180         for(; iter != end; iter++)
181                 initialize_code_block(iter->first,iter->second);
182
183         code->uninitialized_blocks.clear();
184 }
185
186 void factor_vm::primitive_modify_code_heap()
187 {
188         bool reset_inline_caches = to_boolean(ctx->pop());
189         bool update_existing_words = to_boolean(ctx->pop());
190         data_root<array> alist(ctx->pop(),this);
191
192         cell count = array_capacity(alist.untagged());
193
194         if(count == 0)
195                 return;
196
197         for(cell i = 0; i < count; i++)
198         {
199                 data_root<array> pair(array_nth(alist.untagged(),i),this);
200
201                 data_root<word> word(array_nth(pair.untagged(),0),this);
202                 data_root<object> data(array_nth(pair.untagged(),1),this);
203
204                 switch(data.type())
205                 {
206                 case QUOTATION_TYPE:
207                         jit_compile_word(word.value(),data.value(),false);
208                         break;
209                 case ARRAY_TYPE:
210                         {
211                                 array *compiled_data = data.as<array>().untagged();
212                                 cell parameters = array_nth(compiled_data,0);
213                                 cell literals = array_nth(compiled_data,1);
214                                 cell relocation = array_nth(compiled_data,2);
215                                 cell labels = array_nth(compiled_data,3);
216                                 cell code = array_nth(compiled_data,4);
217
218                                 code_block *compiled = add_code_block(
219                                         code_block_optimized,
220                                         code,
221                                         labels,
222                                         word.value(),
223                                         relocation,
224                                         parameters,
225                                         literals);
226
227                                 word->entry_point = compiled->entry_point();
228                         }
229                         break;
230                 default:
231                         critical_error("Expected a quotation or an array",data.value());
232                         break;
233                 }
234         }
235
236         if(update_existing_words)
237                 update_code_heap_words(reset_inline_caches);
238         else
239                 initialize_code_blocks();
240 }
241
242 code_heap_room factor_vm::code_room()
243 {
244         code_heap_room room;
245
246         room.size             = code->allocator->size;
247         room.occupied_space   = code->allocator->occupied_space();
248         room.total_free       = code->allocator->free_space();
249         room.contiguous_free  = code->allocator->largest_free_block();
250         room.free_block_count = code->allocator->free_block_count();
251
252         return room;
253 }
254
255 void factor_vm::primitive_code_room()
256 {
257         code_heap_room room = code_room();
258         ctx->push(tag<byte_array>(byte_array_from_value(&room)));
259 }
260
261 struct stack_trace_stripper {
262         explicit stack_trace_stripper() {}
263
264         void operator()(code_block *compiled, cell size)
265         {
266                 compiled->owner = false_object;
267         }
268 };
269
270 void factor_vm::primitive_strip_stack_traces()
271 {
272         stack_trace_stripper stripper;
273         each_code_block(stripper);
274 }
275
276 struct code_block_accumulator {
277         std::vector<cell> objects;
278
279         void operator()(code_block *compiled, cell size)
280         {
281                 objects.push_back(compiled->owner);
282                 objects.push_back(compiled->parameters);
283                 objects.push_back(compiled->relocation);
284
285                 objects.push_back(tag_fixnum(compiled->type()));
286                 objects.push_back(tag_fixnum(compiled->size()));
287
288                 /* Note: the entry point is always a multiple of the heap
289                 alignment (16 bytes). We cannot allocate while iterating
290                 through the code heap, so it is not possible to call
291                 from_unsigned_cell() here. It is OK, however, to add it as
292                 if it were a fixnum, and have library code shift it to the
293                 left by 4. */
294                 cell entry_point = (cell)compiled->entry_point();
295                 FACTOR_ASSERT((entry_point & (data_alignment - 1)) == 0);
296                 FACTOR_ASSERT((entry_point & TAG_MASK) == FIXNUM_TYPE);
297                 objects.push_back(entry_point);
298         }
299 };
300
301 cell factor_vm::code_blocks()
302 {
303         code_block_accumulator accum;
304         each_code_block(accum);
305         return std_vector_to_array(accum.objects);
306 }
307
308 void factor_vm::primitive_code_blocks()
309 {
310         ctx->push(code_blocks());
311 }
312
313 }