| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | #include "master.hpp"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | namespace factor { | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | std::ostream& operator<<(std::ostream& out, const string* str) { | 
					
						
							|  |  |  |   for (cell i = 0; i < string_capacity(str); i++) | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |     out << (char)str->data()[i]; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   return out; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_word(word* word, cell nesting) { | 
					
						
							|  |  |  |   if (tagged<object>(word->vocabulary).type_p(STRING_TYPE)) | 
					
						
							|  |  |  |     std::cout << untag<string>(word->vocabulary) << ":"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (tagged<object>(word->name).type_p(STRING_TYPE)) | 
					
						
							|  |  |  |     std::cout << untag<string>(word->name); | 
					
						
							|  |  |  |   else { | 
					
						
							|  |  |  |     std::cout << "#<not a string: "; | 
					
						
							|  |  |  |     print_nested_obj(word->name, nesting); | 
					
						
							|  |  |  |     std::cout << ">"; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_factor_string(string* str) { | 
					
						
							|  |  |  |   std::cout << '"' << str << '"'; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_array(array* array, cell nesting) { | 
					
						
							|  |  |  |   cell length = array_capacity(array); | 
					
						
							|  |  |  |   cell i; | 
					
						
							|  |  |  |   bool trimmed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (length > 10 && !full_output) { | 
					
						
							|  |  |  |     trimmed = true; | 
					
						
							|  |  |  |     length = 10; | 
					
						
							|  |  |  |   } else | 
					
						
							|  |  |  |     trimmed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   for (i = 0; i < length; i++) { | 
					
						
							|  |  |  |     std::cout << " "; | 
					
						
							|  |  |  |     print_nested_obj(array_nth(array, i), nesting); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (trimmed) | 
					
						
							|  |  |  |     std::cout << "..."; | 
					
						
							| 
									
										
										
										
											2011-11-06 23:26:10 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_alien(alien* alien, cell nesting) { | 
					
						
							|  |  |  |   if (to_boolean(alien->expired)) | 
					
						
							|  |  |  |     std::cout << "#<expired alien>"; | 
					
						
							|  |  |  |   else if (to_boolean(alien->base)) { | 
					
						
							|  |  |  |     std::cout << "#<displaced alien " << alien->displacement << "+"; | 
					
						
							|  |  |  |     print_nested_obj(alien->base, nesting); | 
					
						
							|  |  |  |     std::cout << ">"; | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     std::cout << "#<alien " << (void*)alien->address << ">"; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-11-06 23:26:10 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_byte_array(byte_array* array, cell nesting) { | 
					
						
							|  |  |  |   cell length = array->capacity; | 
					
						
							|  |  |  |   cell i; | 
					
						
							|  |  |  |   bool trimmed; | 
					
						
							|  |  |  |   unsigned char* data = array->data<unsigned char>(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (length > 16 && !full_output) { | 
					
						
							|  |  |  |     trimmed = true; | 
					
						
							|  |  |  |     length = 16; | 
					
						
							|  |  |  |   } else | 
					
						
							|  |  |  |     trimmed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   for (i = 0; i < length; i++) { | 
					
						
							|  |  |  |     std::cout << " " << (unsigned) data[i]; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (trimmed) | 
					
						
							|  |  |  |     std::cout << "..."; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_tuple(tuple* tuple, cell nesting) { | 
					
						
							|  |  |  |   tuple_layout* layout = untag<tuple_layout>(tuple->layout); | 
					
						
							| 
									
										
										
										
											2014-07-08 01:34:36 -04:00
										 |  |  |   cell length = to_cell(layout->size); | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   std::cout << " "; | 
					
						
							|  |  |  |   print_nested_obj(layout->klass, nesting); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   bool trimmed; | 
					
						
							|  |  |  |   if (length > 10 && !full_output) { | 
					
						
							|  |  |  |     trimmed = true; | 
					
						
							|  |  |  |     length = 10; | 
					
						
							|  |  |  |   } else | 
					
						
							|  |  |  |     trimmed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   for (cell i = 0; i < length; i++) { | 
					
						
							|  |  |  |     std::cout << " "; | 
					
						
							|  |  |  |     print_nested_obj(tuple->data()[i], nesting); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (trimmed) | 
					
						
							|  |  |  |     std::cout << "..."; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_nested_obj(cell obj, fixnum nesting) { | 
					
						
							|  |  |  |   if (nesting <= 0 && !full_output) { | 
					
						
							|  |  |  |     std::cout << " ... "; | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   quotation* quot; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   switch (tagged<object>(obj).type()) { | 
					
						
							|  |  |  |     case FIXNUM_TYPE: | 
					
						
							|  |  |  |       std::cout << untag_fixnum(obj); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case FLOAT_TYPE: | 
					
						
							|  |  |  |       std::cout << untag_float(obj); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case WORD_TYPE: | 
					
						
							|  |  |  |       print_word(untag<word>(obj), nesting - 1); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case STRING_TYPE: | 
					
						
							|  |  |  |       print_factor_string(untag<string>(obj)); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case F_TYPE: | 
					
						
							|  |  |  |       std::cout << "f"; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case TUPLE_TYPE: | 
					
						
							|  |  |  |       std::cout << "T{"; | 
					
						
							|  |  |  |       print_tuple(untag<tuple>(obj), nesting - 1); | 
					
						
							|  |  |  |       std::cout << " }"; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case WRAPPER_TYPE: | 
					
						
							|  |  |  |       std::cout << "W{ "; | 
					
						
							|  |  |  |       print_nested_obj(untag<wrapper>(obj)->object, nesting - 1); | 
					
						
							|  |  |  |       std::cout << " }"; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case BYTE_ARRAY_TYPE: | 
					
						
							|  |  |  |       std::cout << "B{"; | 
					
						
							|  |  |  |       print_byte_array(untag<byte_array>(obj), nesting - 1); | 
					
						
							|  |  |  |       std::cout << " }"; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case ARRAY_TYPE: | 
					
						
							|  |  |  |       std::cout << "{"; | 
					
						
							|  |  |  |       print_array(untag<array>(obj), nesting - 1); | 
					
						
							|  |  |  |       std::cout << " }"; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case QUOTATION_TYPE: | 
					
						
							|  |  |  |       std::cout << "["; | 
					
						
							|  |  |  |       quot = untag<quotation>(obj); | 
					
						
							|  |  |  |       print_array(untag<array>(quot->array), nesting - 1); | 
					
						
							|  |  |  |       std::cout << " ]"; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     case ALIEN_TYPE: | 
					
						
							|  |  |  |       print_alien(untag<alien>(obj), nesting - 1); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |       std::cout << "#<" << type_name(tagged<object>(obj).type()) << " @ "; | 
					
						
							|  |  |  |       std::cout << (void*)obj << ">"; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   std::cout << std::flush; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_obj(cell obj) { print_nested_obj(obj, 10); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void factor_vm::print_objects(cell* start, cell* end) { | 
					
						
							|  |  |  |   for (; start <= end; start++) { | 
					
						
							|  |  |  |     print_obj(*start); | 
					
						
							|  |  |  |     std::cout << std::endl; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_datastack() { | 
					
						
							|  |  |  |   std::cout << "==== DATA STACK:" << std::endl; | 
					
						
							|  |  |  |   if (ctx) | 
					
						
							|  |  |  |     print_objects((cell*)ctx->datastack_seg->start, (cell*)ctx->datastack); | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     std::cout << "*** Context not initialized" << std::endl; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_retainstack() { | 
					
						
							|  |  |  |   std::cout << "==== RETAIN STACK:" << std::endl; | 
					
						
							|  |  |  |   if (ctx) | 
					
						
							|  |  |  |     print_objects((cell*)ctx->retainstack_seg->start, (cell*)ctx->retainstack); | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     std::cout << "*** Context not initialized" << std::endl; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-03 09:47:05 -04:00
										 |  |  | struct stack_frame_printer { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   factor_vm* parent; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-12 23:20:43 -04:00
										 |  |  |   explicit stack_frame_printer(factor_vm* parent) : parent(parent) {} | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   void operator()(void* frame_top, cell frame_size, code_block* owner, | 
					
						
							|  |  |  |                   void* addr) { | 
					
						
							|  |  |  |     std::cout << std::endl; | 
					
						
							|  |  |  |     std::cout << "frame: " << frame_top << " size " << frame_size << std::endl; | 
					
						
							|  |  |  |     std::cout << "executing: "; | 
					
						
							|  |  |  |     parent->print_obj(owner->owner); | 
					
						
							|  |  |  |     std::cout << std::endl; | 
					
						
							|  |  |  |     std::cout << "scan: "; | 
					
						
							|  |  |  |     parent->print_obj(owner->scan(parent, addr)); | 
					
						
							|  |  |  |     std::cout << std::endl; | 
					
						
							|  |  |  |     std::cout << "word/quot addr: "; | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |     std::cout << std::hex << (cell)owner->owner << std::dec; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |     std::cout << std::endl; | 
					
						
							|  |  |  |     std::cout << "word/quot xt: "; | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |     std::cout << std::hex << (cell)owner->entry_point() << std::dec; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |     std::cout << std::endl; | 
					
						
							|  |  |  |     std::cout << "return address: "; | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |     std::cout << std::hex << (cell)addr << std::dec; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |     std::cout << std::endl; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-10-03 09:47:05 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-08-17 16:37:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_callstack() { | 
					
						
							|  |  |  |   std::cout << "==== CALL STACK:" << std::endl; | 
					
						
							|  |  |  |   if (ctx) { | 
					
						
							|  |  |  |     stack_frame_printer printer(this); | 
					
						
							|  |  |  |     iterate_callstack(ctx, printer); | 
					
						
							|  |  |  |   } else | 
					
						
							|  |  |  |     std::cout << "*** Context not initialized" << std::endl; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::print_callstack_object(callstack* obj) { | 
					
						
							|  |  |  |   stack_frame_printer printer(this); | 
					
						
							|  |  |  |   iterate_callstack_object(obj, printer); | 
					
						
							| 
									
										
										
										
											2011-12-20 17:38:01 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-21 21:12:57 -04:00
										 |  |  | struct padded_address { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   cell value; | 
					
						
							| 
									
										
										
										
											2009-10-21 21:12:57 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-12 23:20:43 -04:00
										 |  |  |   explicit padded_address(cell value) : value(value) {} | 
					
						
							| 
									
										
										
										
											2009-10-21 21:12:57 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | std::ostream& operator<<(std::ostream& out, const padded_address& value) { | 
					
						
							|  |  |  |   char prev = out.fill('0'); | 
					
						
							|  |  |  |   out.width(sizeof(cell) * 2); | 
					
						
							|  |  |  |   out << std::hex << value.value << std::dec; | 
					
						
							|  |  |  |   out.fill(prev); | 
					
						
							|  |  |  |   return out; | 
					
						
							| 
									
										
										
										
											2009-10-21 21:12:57 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::dump_cell(cell x) { | 
					
						
							|  |  |  |   std::cout << padded_address(x) << ": "; | 
					
						
							|  |  |  |   x = *(cell*)x; | 
					
						
							|  |  |  |   std::cout << padded_address(x) << " tag " << TAG(x) << std::endl; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::dump_memory(cell from, cell to) { | 
					
						
							|  |  |  |   from = UNTAG(from); | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   for (; from <= to; from += sizeof(cell)) | 
					
						
							|  |  |  |     dump_cell(from); | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | template <typename Generation> | 
					
						
							|  |  |  | void factor_vm::dump_generation(const char* name, Generation* gen) { | 
					
						
							|  |  |  |   std::cout << name << ": "; | 
					
						
							|  |  |  |   std::cout << "Start=" << gen->start; | 
					
						
							|  |  |  |   std::cout << ", size=" << gen->size; | 
					
						
							|  |  |  |   std::cout << ", end=" << gen->end; | 
					
						
							|  |  |  |   std::cout << std::endl; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::dump_generations() { | 
					
						
							|  |  |  |   std::cout << std::hex; | 
					
						
							| 
									
										
										
										
											2010-09-09 23:36:50 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   dump_generation("Nursery", &nursery); | 
					
						
							|  |  |  |   dump_generation("Aging", data->aging); | 
					
						
							|  |  |  |   dump_generation("Tenured", data->tenured); | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   std::cout << "Cards:"; | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |   std::cout << "base=" << (cell)data->cards << ", "; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   std::cout << "size=" << (cell)(data->cards_end - data->cards) << std::endl; | 
					
						
							| 
									
										
										
										
											2010-09-09 23:36:50 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   std::cout << std::dec; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-31 22:06:34 -04:00
										 |  |  | struct object_dumper { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   factor_vm* parent; | 
					
						
							|  |  |  |   cell type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-12 23:20:43 -04:00
										 |  |  |   object_dumper(factor_vm* parent, cell type) | 
					
						
							|  |  |  |       : parent(parent), type(type) {} | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   void operator()(object* obj) { | 
					
						
							|  |  |  |     if (type == TYPE_COUNT || obj->type() == type) { | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |       std::cout << padded_address((cell)obj) << " "; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       parent->print_nested_obj(tag_dynamic(obj), 2); | 
					
						
							|  |  |  |       std::cout << std::endl; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-10-31 22:06:34 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::dump_objects(cell type) { | 
					
						
							|  |  |  |   primitive_full_gc(); | 
					
						
							|  |  |  |   object_dumper dumper(this, type); | 
					
						
							|  |  |  |   each_object(dumper); | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-11 13:12:36 -05:00
										 |  |  | struct find_data_reference_slot_visitor { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   cell look_for; | 
					
						
							|  |  |  |   object* obj; | 
					
						
							|  |  |  |   factor_vm* parent; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-12 23:20:43 -04:00
										 |  |  |   find_data_reference_slot_visitor(cell look_for, object* obj, | 
					
						
							|  |  |  |                                    factor_vm* parent) | 
					
						
							|  |  |  |       : look_for(look_for), obj(obj), parent(parent) {} | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   void operator()(cell* scan) { | 
					
						
							|  |  |  |     if (look_for == *scan) { | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |       std::cout << padded_address((cell)obj) << " "; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       parent->print_nested_obj(tag_dynamic(obj), 2); | 
					
						
							|  |  |  |       std::cout << std::endl; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-10-03 09:47:05 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-08-17 16:37:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-11 13:12:36 -05:00
										 |  |  | struct dump_edges_slot_visitor { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   object* obj; | 
					
						
							|  |  |  |   factor_vm* parent; | 
					
						
							| 
									
										
										
										
											2011-11-11 13:12:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-12 23:20:43 -04:00
										 |  |  |   dump_edges_slot_visitor(cell, object* obj, factor_vm* parent) | 
					
						
							|  |  |  |       : obj(obj), parent(parent) {} | 
					
						
							| 
									
										
										
										
											2011-11-11 13:12:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   void operator()(cell* scan) { | 
					
						
							|  |  |  |     if (TAG(*scan) > F_TYPE) | 
					
						
							|  |  |  |       std::cout << (void*)tag_dynamic(obj) << " ==> " << (void*)*scan | 
					
						
							|  |  |  |                 << std::endl; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-11-11 13:12:36 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | template <typename SlotVisitor> struct data_reference_object_visitor { | 
					
						
							|  |  |  |   cell look_for; | 
					
						
							|  |  |  |   factor_vm* parent; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-12 23:20:43 -04:00
										 |  |  |   data_reference_object_visitor(cell look_for, factor_vm* parent) | 
					
						
							|  |  |  |       : look_for(look_for), parent(parent) {} | 
					
						
							| 
									
										
										
										
											2009-10-03 09:47:05 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   void operator()(object* obj) { | 
					
						
							|  |  |  |     SlotVisitor visitor(look_for, obj, parent); | 
					
						
							|  |  |  |     obj->each_slot(visitor); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-10-31 22:06:34 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::find_data_references(cell look_for) { | 
					
						
							|  |  |  |   data_reference_object_visitor<find_data_reference_slot_visitor> visitor( | 
					
						
							|  |  |  |       look_for, this); | 
					
						
							|  |  |  |   each_object(visitor); | 
					
						
							| 
									
										
										
										
											2011-11-11 13:12:36 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::dump_edges() { | 
					
						
							|  |  |  |   data_reference_object_visitor<dump_edges_slot_visitor> visitor(0, this); | 
					
						
							|  |  |  |   each_object(visitor); | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-20 11:22:06 -04:00
										 |  |  | struct code_block_printer { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   factor_vm* parent; | 
					
						
							|  |  |  |   cell reloc_size, parameter_size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-12 23:20:43 -04:00
										 |  |  |   explicit code_block_printer(factor_vm* parent) | 
					
						
							|  |  |  |       : parent(parent), reloc_size(0), parameter_size(0) {} | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   void operator()(code_block* scan, cell size) { | 
					
						
							|  |  |  |     const char* status; | 
					
						
							|  |  |  |     if (scan->free_p()) | 
					
						
							|  |  |  |       status = "free"; | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |       reloc_size += parent->object_size(scan->relocation); | 
					
						
							|  |  |  |       parameter_size += parent->object_size(scan->parameters); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (parent->code->marked_p(scan)) | 
					
						
							|  |  |  |         status = "marked"; | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         status = "allocated"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |       std::cout << std::hex << (cell)scan << std::dec << " "; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       std::cout << std::hex << size << std::dec << " "; | 
					
						
							|  |  |  |       std::cout << status << " "; | 
					
						
							|  |  |  |       std::cout << "stack frame " << scan->stack_frame_size(); | 
					
						
							|  |  |  |       std::cout << std::endl; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-10-20 11:22:06 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Dump all code blocks for debugging */ | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::dump_code_heap() { | 
					
						
							|  |  |  |   code_block_printer printer(this); | 
					
						
							|  |  |  |   code->allocator->iterate(printer); | 
					
						
							|  |  |  |   std::cout << printer.reloc_size << " bytes used by relocation tables" | 
					
						
							|  |  |  |             << std::endl; | 
					
						
							|  |  |  |   std::cout << printer.parameter_size << " bytes used by parameter tables" | 
					
						
							|  |  |  |             << std::endl; | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::factorbug_usage(bool advanced_p) { | 
					
						
							|  |  |  |   std::cout << "Basic commands:" << std::endl; | 
					
						
							| 
									
										
										
										
											2011-10-27 23:55:12 -04:00
										 |  |  | #ifdef WINDOWS
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   std::cout << "  q ^Z             -- quit Factor" << std::endl; | 
					
						
							| 
									
										
										
										
											2011-10-27 23:55:12 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   std::cout << "  q ^D             -- quit Factor" << std::endl; | 
					
						
							| 
									
										
										
										
											2011-10-27 23:55:12 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |   std::cout << "  c                -- continue executing Factor - NOT SAFE" | 
					
						
							|  |  |  |             << std::endl; | 
					
						
							|  |  |  |   std::cout << "  t                -- throw exception in Factor - NOT SAFE" | 
					
						
							|  |  |  |             << std::endl; | 
					
						
							|  |  |  |   std::cout << "  .s .r .c         -- print data, retain, call stacks" | 
					
						
							|  |  |  |             << std::endl; | 
					
						
							|  |  |  |   if (advanced_p) { | 
					
						
							|  |  |  |     std::cout << "  help             -- reprint this message" << std::endl; | 
					
						
							|  |  |  |     std::cout << "Advanced commands:" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  e                -- dump environment" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  d <addr> <count> -- dump memory" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  u <addr>         -- dump object at tagged <addr>" | 
					
						
							|  |  |  |               << std::endl; | 
					
						
							|  |  |  |     std::cout << "  . <addr>         -- print object at tagged <addr>" | 
					
						
							|  |  |  |               << std::endl; | 
					
						
							|  |  |  |     std::cout << "  g                -- dump generations" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  ds dr            -- dump data, retain stacks" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  trim             -- toggle output trimming" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  data             -- data heap dump" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  words            -- words dump" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  tuples           -- tuples dump" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  edges            -- print all object-to-object references" | 
					
						
							|  |  |  |               << std::endl; | 
					
						
							|  |  |  |     std::cout << "  refs <addr>      -- find data heap references to object" | 
					
						
							|  |  |  |               << std::endl; | 
					
						
							|  |  |  |     std::cout << "  push <addr>      -- push object on data stack - NOT SAFE" | 
					
						
							|  |  |  |               << std::endl; | 
					
						
							|  |  |  |     std::cout << "  gc               -- trigger full GC - NOT SAFE" | 
					
						
							|  |  |  |               << std::endl; | 
					
						
							|  |  |  |     std::cout << "  compact-gc       -- trigger compacting GC - NOT SAFE" | 
					
						
							|  |  |  |               << std::endl; | 
					
						
							|  |  |  |     std::cout << "  code             -- code heap dump" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  abort            -- call abort()" << std::endl; | 
					
						
							|  |  |  |     std::cout << "  breakpoint       -- trigger system breakpoint" << std::endl; | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     std::cout << "  help             -- full help, including advanced commands" | 
					
						
							|  |  |  |               << std::endl; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::cout << std::endl; | 
					
						
							| 
									
										
										
										
											2011-10-27 23:55:12 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | static void exit_fep(factor_vm* vm) { | 
					
						
							|  |  |  |   vm->unlock_console(); | 
					
						
							|  |  |  |   vm->handle_ctrl_c(); | 
					
						
							|  |  |  |   vm->fep_p = false; | 
					
						
							| 
									
										
										
										
											2011-11-08 00:12:11 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::factorbug() { | 
					
						
							|  |  |  |   if (fep_disabled) { | 
					
						
							|  |  |  |     std::cout << "Low level debugger disabled" << std::endl; | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (sampling_profiler_p) | 
					
						
							|  |  |  |     end_sampling_profiler(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   fep_p = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::cout << "Starting low level debugger..." << std::endl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Even though we've stopped the VM, the stdin_loop thread (see os-*.cpp)
 | 
					
						
							|  |  |  |   // that pumps the console is still running concurrently. We lock a mutex so
 | 
					
						
							|  |  |  |   // the thread will take a break and give us exclusive access to stdin.
 | 
					
						
							|  |  |  |   lock_console(); | 
					
						
							|  |  |  |   ignore_ctrl_c(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (!fep_help_was_shown) { | 
					
						
							|  |  |  |     factorbug_usage(false); | 
					
						
							|  |  |  |     fep_help_was_shown = true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   bool seen_command = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   for (;;) { | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     std::string cmd; | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     std::cout << "> " << std::flush; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::cin >> std::setw(1024) >> cmd >> std::setw(0); | 
					
						
							|  |  |  |     if (!std::cin.good()) { | 
					
						
							|  |  |  |       if (!seen_command) { | 
					
						
							|  |  |  |         /* If we exit with an EOF immediately, then
 | 
					
						
							|  |  |  |            dump stacks. This is useful for builder and | 
					
						
							|  |  |  |            other cases where Factor is run with stdin | 
					
						
							|  |  |  |            redirected to /dev/null */ | 
					
						
							|  |  |  |         fep_disabled = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         print_datastack(); | 
					
						
							|  |  |  |         print_retainstack(); | 
					
						
							|  |  |  |         print_callstack(); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     seen_command = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     if (cmd == "q") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       exit(1); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     if (cmd == "d") { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       cell addr = read_cell_hex(); | 
					
						
							|  |  |  |       if (std::cin.peek() == ' ') | 
					
						
							|  |  |  |         std::cin.ignore(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (!std::cin.good()) | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |       cell count = read_cell_hex(); | 
					
						
							|  |  |  |       dump_memory(addr, addr + count); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     } else if (cmd == "u") { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       cell addr = read_cell_hex(); | 
					
						
							|  |  |  |       cell count = object_size(addr); | 
					
						
							|  |  |  |       dump_memory(addr, addr + count); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     } else if (cmd == ".") { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       cell addr = read_cell_hex(); | 
					
						
							|  |  |  |       print_obj(addr); | 
					
						
							|  |  |  |       std::cout << std::endl; | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     } else if (cmd == "trim") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       full_output = !full_output; | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "ds") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       dump_memory(ctx->datastack_seg->start, ctx->datastack); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "dr") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       dump_memory(ctx->retainstack_seg->start, ctx->retainstack); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == ".s") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       print_datastack(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == ".r") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       print_retainstack(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == ".c") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       print_callstack(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "e") { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       for (cell i = 0; i < special_object_count; i++) | 
					
						
							| 
									
										
										
										
											2013-05-13 00:53:47 -04:00
										 |  |  |         dump_cell((cell)&special_objects[i]); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     } else if (cmd == "g") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       dump_generations(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "c") { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       exit_fep(this); | 
					
						
							|  |  |  |       return; | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     } else if (cmd == "t") { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       exit_fep(this); | 
					
						
							|  |  |  |       general_error(ERROR_INTERRUPT, false_object, false_object); | 
					
						
							|  |  |  |       FACTOR_ASSERT(false); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     } else if (cmd == "data") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       dump_objects(TYPE_COUNT); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "edges") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       dump_edges(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "refs") { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       cell addr = read_cell_hex(); | 
					
						
							|  |  |  |       std::cout << "Data heap references:" << std::endl; | 
					
						
							|  |  |  |       find_data_references(addr); | 
					
						
							|  |  |  |       std::cout << std::endl; | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     } else if (cmd == "words") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       dump_objects(WORD_TYPE); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "tuples") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       dump_objects(TUPLE_TYPE); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "push") { | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       cell addr = read_cell_hex(); | 
					
						
							|  |  |  |       ctx->push(addr); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     } else if (cmd == "code") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       dump_code_heap(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "compact-gc") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       primitive_compact_gc(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "gc") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       primitive_full_gc(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "compact-gc") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       primitive_compact_gc(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "help") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       factorbug_usage(true); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "abort") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       abort(); | 
					
						
							| 
									
										
										
										
											2014-06-19 16:12:25 -04:00
										 |  |  |     else if (cmd == "breakpoint") | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  |       breakpoint(); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       std::cout << "unknown command" << std::endl; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 21:57:14 -04:00
										 |  |  | void factor_vm::primitive_die() { | 
					
						
							|  |  |  |   std::cout << "The die word was called by the library. Unless you called it " | 
					
						
							|  |  |  |                "yourself," << std::endl; | 
					
						
							|  |  |  |   std::cout << "you have triggered a bug in Factor. Please report." | 
					
						
							|  |  |  |             << std::endl; | 
					
						
							|  |  |  |   factorbug(); | 
					
						
							| 
									
										
										
										
											2009-05-02 05:04:19 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-04 02:46:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | } |