]> gitweb.factorcode.org Git - factor.git/blob - vm/debug.cpp
VM: oops, fix compilation error i caused
[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 (TAG(word->vocabulary) == STRING_TYPE)
17     out << untag<string>(word->vocabulary) << ":";
18
19   if (TAG(word->name) == 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 (TAG(obj)) {
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(TAG(obj)) << " @ ";
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 void dump_memory_range(ostream& out, const char* name, cell name_w,
268                        cell start, cell end) {
269   out << setw(name_w) << left << name << ": ";
270
271   out << "[" << (void*)start << " -> " << (void*)end << "] ";
272   out << setw(10) << right << (end - start) << " bytes" << endl;
273 }
274
275 template <typename Generation>
276 void dump_generation(ostream& out, const char* name, Generation* gen) {
277   dump_memory_range(out, name, 10, gen->start, gen->end);
278 }
279
280 void factor_vm::dump_memory_layout(ostream& out) {
281   dump_generation(out, "Nursery", data->nursery);
282   dump_generation(out, "Aging", data->aging);
283   dump_generation(out, "Tenured", data->tenured);
284   dump_memory_range(out, "Cards", 10, (cell)data->cards, (cell)data->cards_end);
285
286   out << endl << "Contexts:" << endl << endl;
287   FACTOR_FOR_EACH(active_contexts) {
288     context* the_ctx = *iter;
289     segment* ds = the_ctx->datastack_seg;
290     segment* rs = the_ctx->retainstack_seg;
291     segment* cs = the_ctx->callstack_seg;
292     if (the_ctx == ctx) {
293       out << "  Active:" << endl;
294     }
295     dump_memory_range(out, "  Datastack", 14, ds->start, ds->end);
296     dump_memory_range(out, "  Retainstack", 14, rs->start, rs->end);
297     dump_memory_range(out, "  Callstack", 14, cs->start, cs->end);
298     out << endl;
299   }
300 }
301
302 void factor_vm::dump_objects(ostream& out, cell type) {
303   primitive_full_gc();
304   auto object_dumper = [&](object* obj) {
305      if (type == TYPE_COUNT || obj->type() == type) {
306       out << padded_address((cell)obj) << " ";
307       print_nested_obj(out, tag_dynamic(obj), 2);
308       out << endl;
309     }
310   };
311   each_object(object_dumper);
312 }
313
314 void factor_vm::find_data_references(ostream& out, cell look_for) {
315   primitive_full_gc();
316   auto find_data_ref_func = [&](object* obj, cell* slot) {
317     if (look_for == *slot) {
318       out << padded_address((cell)obj) << " ";
319       print_nested_obj(out, tag_dynamic(obj), 2);
320       out << endl;
321     }
322   };
323   each_object_each_slot(find_data_ref_func);
324 }
325
326 void factor_vm::dump_edges(ostream& out) {
327   primitive_full_gc();
328   auto dump_edges_func = [&](object* obj, cell* scan) {
329     if (TAG(*scan) > F_TYPE) {
330       out << (void*)tag_dynamic(obj);
331       out << " ==> ";
332       out << (void*)*scan << endl;
333     }
334   };
335   each_object_each_slot(dump_edges_func);
336 }
337
338 struct code_block_printer {
339   factor_vm* parent;
340   ostream& out;
341   cell reloc_size, parameter_size;
342
343   explicit code_block_printer(factor_vm* parent, ostream& out)
344       : parent(parent), out(out), reloc_size(0), parameter_size(0) {}
345
346   void operator()(code_block* scan, cell size) {
347     const char* status;
348     if (scan->free_p())
349       status = "free";
350     else {
351       reloc_size += object_size(scan->relocation);
352       parameter_size += object_size(scan->parameters);
353
354       if (parent->code->allocator->state.marked_p((cell)scan))
355         status = "marked";
356       else
357         status = "allocated";
358
359       out << hex << (cell)scan << dec << " ";
360       out << hex << size << dec << " ";
361       out << status << " ";
362       out << "stack frame " << scan->stack_frame_size();
363       out << endl;
364     }
365   }
366 };
367
368 /* Dump all code blocks for debugging */
369 void factor_vm::dump_code_heap(ostream& out) {
370   code_block_printer printer(this, out);
371   code->allocator->iterate(printer);
372   out << printer.reloc_size << " bytes used by relocation tables" << endl;
373   out << printer.parameter_size << " bytes used by parameter tables" << endl;
374 }
375
376 void factor_vm::factorbug_usage(bool advanced_p) {
377   cout << "Basic commands:" << endl;
378 #ifdef WINDOWS
379   cout << "  q ^Z             -- quit Factor" << endl;
380 #else
381   cout << "  q ^D             -- quit Factor" << endl;
382 #endif
383   cout << "  c                -- continue executing Factor - NOT SAFE"
384        << endl;
385   cout << "  t                -- throw exception in Factor - NOT SAFE"
386        << endl;
387   cout << "  .s .r .c         -- print data, retain, call stacks"
388        << endl;
389   if (advanced_p) {
390     cout << "  help             -- reprint this message" << endl;
391     cout << "Advanced commands:" << endl;
392     cout << "  e                -- dump environment" << endl;
393     cout << "  d <addr> <count> -- dump memory" << endl;
394     cout << "  u <addr>         -- dump object at tagged <addr>"
395          << endl;
396     cout << "  . <addr>         -- print object at tagged <addr>"
397          << endl;
398     cout << "  g                -- dump memory layout" << endl;
399     cout << "  ds dr            -- dump data, retain stacks" << endl;
400     cout << "  trim             -- toggle output trimming" << endl;
401     cout << "  data             -- data heap dump" << endl;
402     cout << "  words            -- words dump" << endl;
403     cout << "  tuples           -- tuples dump" << endl;
404     cout << "  edges            -- print all object-to-object references"
405          << endl;
406     cout << "  refs <addr>      -- find data heap references to object"
407          << endl;
408     cout << "  push <addr>      -- push object on data stack - NOT SAFE"
409          << endl;
410     cout << "  gc               -- trigger full GC - NOT SAFE"
411          << endl;
412     cout << "  compact-gc       -- trigger compacting GC - NOT SAFE"
413          << endl;
414     cout << "  code             -- code heap dump" << endl;
415     cout << "  abort            -- call abort()" << endl;
416     cout << "  breakpoint       -- trigger system breakpoint" << endl;
417   } else {
418     cout << "  help             -- full help, including advanced commands"
419          << endl;
420   }
421   cout << endl;
422 }
423
424 static void exit_fep(factor_vm* vm) {
425   unlock_console();
426   handle_ctrl_c();
427   vm->fep_p = false;
428 }
429
430 void factor_vm::factorbug() {
431   if (fep_disabled) {
432     cout << "Low level debugger disabled" << endl;
433     exit(1);
434   }
435
436   if (sampling_profiler_p)
437     end_sampling_profiler();
438
439   fep_p = true;
440
441   cout << "Starting low level debugger..." << endl;
442
443   // Even though we've stopped the VM, the stdin_loop thread (see os-*.cpp)
444   // that pumps the console is still running concurrently. We lock a mutex so
445   // the thread will take a break and give us exclusive access to stdin.
446   lock_console();
447   ignore_ctrl_c();
448
449   if (!fep_help_was_shown) {
450     factorbug_usage(false);
451     fep_help_was_shown = true;
452   }
453   bool seen_command = false;
454
455   for (;;) {
456     std::string cmd;
457
458     cout << "> " << flush;
459
460     cin >> setw(1024) >> cmd >> setw(0);
461     if (!cin.good()) {
462       if (!seen_command) {
463         /* If we exit with an EOF immediately, then
464            dump stacks. This is useful for builder and
465            other cases where Factor is run with stdin
466            redirected to /dev/null */
467         fep_disabled = true;
468
469         print_datastack(cout);
470         print_retainstack(cout);
471         print_callstack(cout);
472       }
473
474       exit(1);
475     }
476
477     seen_command = true;
478
479     if (cmd == "q")
480       exit(1);
481     if (cmd == "d") {
482       cell addr = read_cell_hex();
483       if (cin.peek() == ' ')
484         cin.ignore();
485
486       if (!cin.good())
487         break;
488       cell count = read_cell_hex();
489       dump_memory(cout, addr, addr + count);
490     } else if (cmd == "u") {
491       cell addr = read_cell_hex();
492       cell count = object_size(addr);
493       dump_memory(cout, addr, addr + count);
494     } else if (cmd == ".") {
495       cell addr = read_cell_hex();
496       print_obj(cout, addr);
497       cout << endl;
498     } else if (cmd == "trim")
499       full_output = !full_output;
500     else if (cmd == "ds")
501       dump_memory(cout, ctx->datastack_seg->start, ctx->datastack);
502     else if (cmd == "dr")
503       dump_memory(cout, ctx->retainstack_seg->start, ctx->retainstack);
504     else if (cmd == ".s")
505       print_datastack(cout);
506     else if (cmd == ".r")
507       print_retainstack(cout);
508     else if (cmd == ".c")
509       print_callstack(cout);
510     else if (cmd == "e") {
511       for (cell i = 0; i < special_object_count; i++)
512         dump_cell(cout, (cell)&special_objects[i]);
513     } else if (cmd == "g")
514       dump_memory_layout(cout);
515     else if (cmd == "c") {
516       exit_fep(this);
517       return;
518     } else if (cmd == "t") {
519       exit_fep(this);
520       general_error(ERROR_INTERRUPT, false_object, false_object);
521       FACTOR_ASSERT(false);
522     } else if (cmd == "data")
523       dump_objects(cout, TYPE_COUNT);
524     else if (cmd == "edges")
525       dump_edges(cout);
526     else if (cmd == "refs") {
527       cell addr = read_cell_hex();
528       cout << "Data heap references:" << endl;
529       find_data_references(cout, addr);
530       cout << endl;
531     } else if (cmd == "words")
532       dump_objects(cout, WORD_TYPE);
533     else if (cmd == "tuples")
534       dump_objects(cout, TUPLE_TYPE);
535     else if (cmd == "push") {
536       cell addr = read_cell_hex();
537       ctx->push(addr);
538     } else if (cmd == "code")
539       dump_code_heap(cout);
540     else if (cmd == "gc")
541       primitive_full_gc();
542     else if (cmd == "compact-gc")
543       primitive_compact_gc();
544     else if (cmd == "help")
545       factorbug_usage(true);
546     else if (cmd == "abort")
547       abort();
548     else if (cmd == "breakpoint")
549       breakpoint();
550     else
551       cout << "unknown command" << endl;
552   }
553 }
554
555 void factor_vm::primitive_die() {
556   critical_error("The die word was called by the library.", 0);
557 }
558
559 }