]> gitweb.factorcode.org Git - factor.git/blob - vm/debug.cpp
VM: gc required here because we are iterating all objects
[factor.git] / vm / debug.cpp
1 #include "master.hpp"
2
3 using namespace std;
4
5 namespace factor {
6
7 bool factor_print_p = true;
8
9 ostream& operator<<(ostream& out, const string* str) {
10   for (cell i = 0; i < string_capacity(str); i++)
11     out << (char)str->data()[i];
12   return out;
13 }
14
15 void factor_vm::print_word(ostream& out, word* word, cell nesting) {
16   if (tagged<object>(word->vocabulary).type_p(STRING_TYPE))
17     out << untag<string>(word->vocabulary) << ":";
18
19   if (tagged<object>(word->name).type_p(STRING_TYPE))
20     out << untag<string>(word->name);
21   else {
22     out << "#<not a string: ";
23     print_nested_obj(out, word->name, nesting);
24     out << ">";
25   }
26 }
27
28 void factor_vm::print_factor_string(ostream& out, string* str) {
29   out << '"' << str << '"';
30 }
31
32 void factor_vm::print_array(ostream& out, array* array, cell nesting) {
33   cell length = array_capacity(array);
34   cell i;
35   bool trimmed;
36
37   if (length > 10 && !full_output) {
38     trimmed = true;
39     length = 10;
40   } else
41     trimmed = false;
42
43   for (i = 0; i < length; i++) {
44     out << " ";
45     print_nested_obj(out, array_nth(array, i), nesting);
46   }
47
48   if (trimmed)
49     out << "...";
50 }
51
52 void factor_vm::print_alien(ostream& out, alien* alien, cell nesting) {
53   if (to_boolean(alien->expired))
54     out << "#<expired alien>";
55   else if (to_boolean(alien->base)) {
56     out << "#<displaced alien " << alien->displacement << "+";
57     print_nested_obj(out, alien->base, nesting);
58     out << ">";
59   } else {
60     out << "#<alien " << (void*)alien->address << ">";
61   }
62 }
63
64 void factor_vm::print_byte_array(ostream& out, byte_array* array, cell nesting) {
65   cell length = array->capacity;
66   cell i;
67   bool trimmed;
68   unsigned char* data = array->data<unsigned char>();
69
70   if (length > 16 && !full_output) {
71     trimmed = true;
72     length = 16;
73   } else
74     trimmed = false;
75
76   for (i = 0; i < length; i++) {
77     out << " " << (unsigned) data[i];
78   }
79
80   if (trimmed)
81     out << "...";
82 }
83
84 void factor_vm::print_tuple(ostream& out, tuple* tuple, cell nesting) {
85   tuple_layout* layout = untag<tuple_layout>(tuple->layout);
86   cell length = to_cell(layout->size);
87
88   out << " ";
89   print_nested_obj(out, layout->klass, nesting);
90
91   bool trimmed;
92   if (length > 10 && !full_output) {
93     trimmed = true;
94     length = 10;
95   } else
96     trimmed = false;
97
98   for (cell i = 0; i < length; i++) {
99     out << " ";
100     print_nested_obj(out, tuple->data()[i], nesting);
101   }
102
103   if (trimmed)
104     out << "...";
105 }
106
107 void factor_vm::print_nested_obj(ostream& out, cell obj, fixnum nesting) {
108   if (nesting <= 0 && !full_output) {
109     out << " ... ";
110     return;
111   }
112
113   quotation* quot;
114
115   switch (tagged<object>(obj).type()) {
116     case FIXNUM_TYPE:
117       out << untag_fixnum(obj);
118       break;
119     case FLOAT_TYPE:
120       out << untag_float(obj);
121       break;
122     case WORD_TYPE:
123       print_word(out, untag<word>(obj), nesting - 1);
124       break;
125     case STRING_TYPE:
126       print_factor_string(out, untag<string>(obj));
127       break;
128     case F_TYPE:
129       out << "f";
130       break;
131     case TUPLE_TYPE:
132       out << "T{";
133       print_tuple(out, untag<tuple>(obj), nesting - 1);
134       out << " }";
135       break;
136     case WRAPPER_TYPE:
137       out << "W{ ";
138       print_nested_obj(out, untag<wrapper>(obj)->object, nesting - 1);
139       out << " }";
140       break;
141     case BYTE_ARRAY_TYPE:
142       out << "B{";
143       print_byte_array(out, untag<byte_array>(obj), nesting - 1);
144       out << " }";
145       break;
146     case ARRAY_TYPE:
147       out << "{";
148       print_array(out, untag<array>(obj), nesting - 1);
149       out << " }";
150       break;
151     case QUOTATION_TYPE:
152       out << "[";
153       quot = untag<quotation>(obj);
154       print_array(out, untag<array>(quot->array), nesting - 1);
155       out << " ]";
156       break;
157     case ALIEN_TYPE:
158       print_alien(out, untag<alien>(obj), nesting - 1);
159       break;
160     default:
161       out << "#<" << type_name(tagged<object>(obj).type()) << " @ ";
162       out << (void*)obj << ">";
163       break;
164   }
165   out << flush;
166 }
167
168 void factor_vm::print_obj(ostream& out, cell obj) {
169   print_nested_obj(out, obj, 10);
170 }
171
172 void factor_vm::print_objects(ostream& out, cell* start, cell* end) {
173   for (; start <= end; start++) {
174     print_obj(out, *start);
175     cout << endl;
176   }
177 }
178
179 void factor_vm::print_datastack(ostream& out) {
180   out << "==== DATA STACK:" << endl;
181   if (ctx)
182     print_objects(out,
183                   (cell*)ctx->datastack_seg->start,
184                   (cell*)ctx->datastack);
185   else
186     out << "*** Context not initialized" << endl;
187 }
188
189 void factor_vm::print_retainstack(ostream& out) {
190   out << "==== RETAIN STACK:" << endl;
191   if (ctx)
192     print_objects(out,
193                   (cell*)ctx->retainstack_seg->start,
194                   (cell*)ctx->retainstack);
195   else
196     out << "*** Context not initialized" << endl;
197 }
198
199 struct stack_frame_printer {
200   factor_vm* parent;
201   ostream& out;
202
203   explicit stack_frame_printer(factor_vm* parent, ostream& out)
204       : parent(parent), out(out) {}
205   void operator()(cell frame_top, cell size, code_block* owner, cell addr) {
206     out << endl;
207     out << "frame: " << (void*)frame_top << " size " << size << endl;
208     out << "executing: ";
209     parent->print_obj(out, owner->owner);
210     out << endl;
211     out << "scan: ";
212     parent->print_obj(out, owner->scan(parent, addr));
213     out << endl;
214     out << "word/quot addr: ";
215     out << hex << owner->owner << dec;
216     out << endl;
217     out << "word/quot xt: ";
218     out << hex << owner->entry_point() << dec;
219     out << endl;
220     out << "return address: ";
221     out << hex << addr << dec;
222     out << endl;
223   }
224 };
225
226 void factor_vm::print_callstack(ostream& out) {
227   out << "==== CALL STACK:" << endl;
228   if (ctx) {
229     stack_frame_printer printer(this, out);
230     iterate_callstack(ctx, printer);
231   } else
232     out << "*** Context not initialized" << endl;
233 }
234
235 void factor_vm::print_callstack_object(ostream& out, callstack* obj) {
236   stack_frame_printer printer(this, out);
237   iterate_callstack_object(obj, printer);
238 }
239
240 struct padded_address {
241   cell value;
242
243   explicit padded_address(cell value) : value(value) {}
244 };
245
246 ostream& operator<<(ostream& out, const padded_address& value) {
247   char prev = out.fill('0');
248   out.width(sizeof(cell) * 2);
249   out << hex << value.value << dec;
250   out.fill(prev);
251   return out;
252 }
253
254 void factor_vm::dump_cell(ostream& out, cell x) {
255   out << padded_address(x) << ": ";
256   x = *(cell*)x;
257   out << padded_address(x) << " tag " << TAG(x) << endl;
258 }
259
260 void factor_vm::dump_memory(ostream& out, cell from, cell to) {
261   from = UNTAG(from);
262
263   for (; from <= to; from += sizeof(cell))
264     dump_cell(out, from);
265 }
266
267 template <typename Generation>
268 void factor_vm::dump_generation(ostream& out, const char* name, Generation* gen) {
269   out << name << ": ";
270   out << "Start=" << gen->start;
271   out << ", size=" << gen->size;
272   out << ", end=" << gen->end;
273   out << endl;
274 }
275
276 void factor_vm::dump_generations(ostream& out) {
277   out << hex;
278
279   dump_generation(out, "Nursery", &nursery);
280   dump_generation(out, "Aging", data->aging);
281   dump_generation(out, "Tenured", data->tenured);
282
283   out << "Cards:";
284   out << "base=" << (cell)data->cards << ", ";
285   out << "size=" << (cell)(data->cards_end - data->cards) << endl;
286   out << dec;
287 }
288
289 void factor_vm::dump_objects(ostream& out, cell type) {
290   primitive_full_gc();
291   auto object_dumper = [&](object* obj) {
292      if (type == TYPE_COUNT || obj->type() == type) {
293       out << padded_address((cell)obj) << " ";
294       print_nested_obj(out, tag_dynamic(obj), 2);
295       out << endl;
296     }
297   };
298   each_object(object_dumper);
299 }
300
301 void factor_vm::find_data_references(ostream& out, cell look_for) {
302   primitive_full_gc();
303   auto find_data_ref_func = [&](object* obj, cell* slot) {
304     if (look_for == *slot) {
305       out << padded_address((cell)obj) << " ";
306       print_nested_obj(out, tag_dynamic(obj), 2);
307       out << endl;
308     }
309   };
310   each_object_each_slot(find_data_ref_func);
311 }
312
313 void factor_vm::dump_edges(ostream& out) {
314   primitive_full_gc();
315   auto dump_edges_func = [&](object* obj, cell* scan) {
316     if (TAG(*scan) > F_TYPE) {
317       out << (void*)tag_dynamic(obj);
318       out << " ==> ";
319       out << (void*)*scan << endl;
320     }
321   };
322   each_object_each_slot(dump_edges_func);
323 }
324
325 struct code_block_printer {
326   factor_vm* parent;
327   ostream& out;
328   cell reloc_size, parameter_size;
329
330   explicit code_block_printer(factor_vm* parent, ostream& out)
331       : parent(parent), out(out), reloc_size(0), parameter_size(0) {}
332
333   void operator()(code_block* scan, cell size) {
334     const char* status;
335     if (scan->free_p())
336       status = "free";
337     else {
338       reloc_size += parent->object_size(scan->relocation);
339       parameter_size += parent->object_size(scan->parameters);
340
341       if (parent->code->allocator->state.marked_p((cell)scan))
342         status = "marked";
343       else
344         status = "allocated";
345
346       out << hex << (cell)scan << dec << " ";
347       out << hex << size << dec << " ";
348       out << status << " ";
349       out << "stack frame " << scan->stack_frame_size();
350       out << endl;
351     }
352   }
353 };
354
355 /* Dump all code blocks for debugging */
356 void factor_vm::dump_code_heap(ostream& out) {
357   code_block_printer printer(this, out);
358   code->allocator->iterate(printer);
359   out << printer.reloc_size << " bytes used by relocation tables" << endl;
360   out << printer.parameter_size << " bytes used by parameter tables" << endl;
361 }
362
363 void factor_vm::factorbug_usage(bool advanced_p) {
364   cout << "Basic commands:" << endl;
365 #ifdef WINDOWS
366   cout << "  q ^Z             -- quit Factor" << endl;
367 #else
368   cout << "  q ^D             -- quit Factor" << endl;
369 #endif
370   cout << "  c                -- continue executing Factor - NOT SAFE"
371        << endl;
372   cout << "  t                -- throw exception in Factor - NOT SAFE"
373        << endl;
374   cout << "  .s .r .c         -- print data, retain, call stacks"
375        << endl;
376   if (advanced_p) {
377     cout << "  help             -- reprint this message" << endl;
378     cout << "Advanced commands:" << endl;
379     cout << "  e                -- dump environment" << endl;
380     cout << "  d <addr> <count> -- dump memory" << endl;
381     cout << "  u <addr>         -- dump object at tagged <addr>"
382          << endl;
383     cout << "  . <addr>         -- print object at tagged <addr>"
384          << endl;
385     cout << "  g                -- dump generations" << endl;
386     cout << "  ds dr            -- dump data, retain stacks" << endl;
387     cout << "  trim             -- toggle output trimming" << endl;
388     cout << "  data             -- data heap dump" << endl;
389     cout << "  words            -- words dump" << endl;
390     cout << "  tuples           -- tuples dump" << endl;
391     cout << "  edges            -- print all object-to-object references"
392          << endl;
393     cout << "  refs <addr>      -- find data heap references to object"
394          << endl;
395     cout << "  push <addr>      -- push object on data stack - NOT SAFE"
396          << endl;
397     cout << "  gc               -- trigger full GC - NOT SAFE"
398          << endl;
399     cout << "  compact-gc       -- trigger compacting GC - NOT SAFE"
400          << endl;
401     cout << "  code             -- code heap dump" << endl;
402     cout << "  abort            -- call abort()" << endl;
403     cout << "  breakpoint       -- trigger system breakpoint" << endl;
404   } else {
405     cout << "  help             -- full help, including advanced commands"
406          << endl;
407   }
408   cout << endl;
409 }
410
411 static void exit_fep(factor_vm* vm) {
412   unlock_console();
413   handle_ctrl_c();
414   vm->fep_p = false;
415 }
416
417 void factor_vm::factorbug() {
418   if (fep_disabled) {
419     cout << "Low level debugger disabled" << endl;
420     exit(1);
421   }
422
423   if (sampling_profiler_p)
424     end_sampling_profiler();
425
426   fep_p = true;
427
428   cout << "Starting low level debugger..." << endl;
429
430   // Even though we've stopped the VM, the stdin_loop thread (see os-*.cpp)
431   // that pumps the console is still running concurrently. We lock a mutex so
432   // the thread will take a break and give us exclusive access to stdin.
433   lock_console();
434   ignore_ctrl_c();
435
436   if (!fep_help_was_shown) {
437     factorbug_usage(false);
438     fep_help_was_shown = true;
439   }
440   bool seen_command = false;
441
442   for (;;) {
443     std::string cmd;
444
445     cout << "> " << flush;
446
447     cin >> setw(1024) >> cmd >> setw(0);
448     if (!cin.good()) {
449       if (!seen_command) {
450         /* If we exit with an EOF immediately, then
451            dump stacks. This is useful for builder and
452            other cases where Factor is run with stdin
453            redirected to /dev/null */
454         fep_disabled = true;
455
456         print_datastack(cout);
457         print_retainstack(cout);
458         print_callstack(cout);
459       }
460
461       exit(1);
462     }
463
464     seen_command = true;
465
466     if (cmd == "q")
467       exit(1);
468     if (cmd == "d") {
469       cell addr = read_cell_hex();
470       if (cin.peek() == ' ')
471         cin.ignore();
472
473       if (!cin.good())
474         break;
475       cell count = read_cell_hex();
476       dump_memory(cout, addr, addr + count);
477     } else if (cmd == "u") {
478       cell addr = read_cell_hex();
479       cell count = object_size(addr);
480       dump_memory(cout, addr, addr + count);
481     } else if (cmd == ".") {
482       cell addr = read_cell_hex();
483       print_obj(cout, addr);
484       cout << endl;
485     } else if (cmd == "trim")
486       full_output = !full_output;
487     else if (cmd == "ds")
488       dump_memory(cout, ctx->datastack_seg->start, ctx->datastack);
489     else if (cmd == "dr")
490       dump_memory(cout, ctx->retainstack_seg->start, ctx->retainstack);
491     else if (cmd == ".s")
492       print_datastack(cout);
493     else if (cmd == ".r")
494       print_retainstack(cout);
495     else if (cmd == ".c")
496       print_callstack(cout);
497     else if (cmd == "e") {
498       for (cell i = 0; i < special_object_count; i++)
499         dump_cell(cout, (cell)&special_objects[i]);
500     } else if (cmd == "g")
501       dump_generations(cout);
502     else if (cmd == "c") {
503       exit_fep(this);
504       return;
505     } else if (cmd == "t") {
506       exit_fep(this);
507       general_error(ERROR_INTERRUPT, false_object, false_object);
508       FACTOR_ASSERT(false);
509     } else if (cmd == "data")
510       dump_objects(cout, TYPE_COUNT);
511     else if (cmd == "edges")
512       dump_edges(cout);
513     else if (cmd == "refs") {
514       cell addr = read_cell_hex();
515       cout << "Data heap references:" << endl;
516       find_data_references(cout, addr);
517       cout << endl;
518     } else if (cmd == "words")
519       dump_objects(cout, WORD_TYPE);
520     else if (cmd == "tuples")
521       dump_objects(cout, TUPLE_TYPE);
522     else if (cmd == "push") {
523       cell addr = read_cell_hex();
524       ctx->push(addr);
525     } else if (cmd == "code")
526       dump_code_heap(cout);
527     else if (cmd == "compact-gc")
528       primitive_compact_gc();
529     else if (cmd == "gc")
530       primitive_full_gc();
531     else if (cmd == "compact-gc")
532       primitive_compact_gc();
533     else if (cmd == "help")
534       factorbug_usage(true);
535     else if (cmd == "abort")
536       abort();
537     else if (cmd == "breakpoint")
538       breakpoint();
539     else
540       cout << "unknown command" << endl;
541   }
542 }
543
544 void factor_vm::primitive_die() {
545   cout << "The die word was called by the library. Unless you called it "
546       "yourself," << endl;
547   cout << "you have triggered a bug in Factor. Please report."
548        << endl;
549   factorbug();
550 }
551
552 }