]> gitweb.factorcode.org Git - factor.git/blob - vm/errors.cpp
VM: clear the local roots before garbage collection in general_error()
[factor.git] / vm / errors.cpp
1 #include "master.hpp"
2
3 namespace factor {
4
5 bool factor_vm::fatal_erroring_p;
6
7 static inline void fa_diddly_atal_error() {
8   printf("fatal_error in fatal_error!\n");
9   breakpoint();
10   ::_exit(86);
11 }
12
13 void fatal_error(const char* msg, cell tagged) {
14   if (factor_vm::fatal_erroring_p)
15     fa_diddly_atal_error();
16
17   factor_vm::fatal_erroring_p = true;
18
19   std::cout << "fatal_error: " << msg;
20   std::cout << ": " << (void*)tagged;
21   std::cout << std::endl;
22   abort();
23 }
24
25 void critical_error(const char* msg, cell tagged) {
26   std::cout << "You have triggered a bug in Factor. Please report.\n";
27   std::cout << "critical_error: " << msg;
28   std::cout << ": " << std::hex << tagged << std::dec;
29   std::cout << std::endl;
30   current_vm()->factorbug();
31 }
32
33 void out_of_memory() {
34   std::cout << "Out of memory\n\n";
35   current_vm()->dump_generations();
36   abort();
37 }
38
39 /* Allocates memory */
40 void factor_vm::general_error(vm_error_type error, cell arg1_, cell arg2_) {
41
42   /* If we got here from memory_protection_error(), then the stack
43      pointer has been fiddled with and the elements of these vectors,
44      which address stack-allocated objects, are bogus and needs to be
45      resetted. */
46   data_roots.clear();
47   bignum_roots.clear();
48   code_roots.clear();
49
50   data_root<object> arg1(arg1_, this);
51   data_root<object> arg2(arg2_, this);
52
53   faulting_p = true;
54
55   /* If we had an underflow or overflow, data or retain stack
56      pointers might be out of bounds, so fix them before allocating
57      anything */
58   ctx->fix_stacks();
59
60   /* If error was thrown during heap scan, we re-enable the GC */
61   gc_off = false;
62
63   /* If the error handler is set, we rewind any C stack frames and
64      pass the error to user-space. */
65   if (!current_gc && to_boolean(special_objects[ERROR_HANDLER_QUOT])) {
66 #ifdef FACTOR_DEBUG
67     /* Doing a GC here triggers all kinds of funny errors */
68     primitive_compact_gc();
69 #endif
70
71     /* Now its safe to allocate and GC */
72     cell error_object =
73         allot_array_4(special_objects[OBJ_ERROR], tag_fixnum(error),
74                       arg1.value(), arg2.value());
75
76     ctx->push(error_object);
77
78     /* The unwind-native-frames subprimitive will clear faulting_p
79        if it was successfully reached. */
80     unwind_native_frames(special_objects[ERROR_HANDLER_QUOT],
81                          ctx->callstack_top);
82   } /* Error was thrown in early startup before error handler is set, so just
83        crash. */
84   else {
85     std::cout << "You have triggered a bug in Factor. Please report.\n";
86     std::cout << "error: " << error << std::endl;
87     std::cout << "arg 1: ";
88     print_obj(arg1.value());
89     std::cout << std::endl;
90     std::cout << "arg 2: ";
91     print_obj(arg2.value());
92     std::cout << std::endl;
93     factorbug();
94     abort();
95   }
96 }
97
98 void factor_vm::type_error(cell type, cell tagged) {
99   general_error(ERROR_TYPE, tag_fixnum(type), tagged);
100 }
101
102 void factor_vm::not_implemented_error() {
103   general_error(ERROR_NOT_IMPLEMENTED, false_object, false_object);
104 }
105
106 void factor_vm::verify_memory_protection_error(cell addr) {
107   /* Called from the OS-specific top halves of the signal handlers to
108      make sure it's safe to dispatch to memory_protection_error */
109   if (fatal_erroring_p)
110     fa_diddly_atal_error();
111   if (faulting_p && !code->safepoint_p(addr))
112     fatal_error("Double fault", addr);
113   else if (fep_p)
114     fatal_error("Memory protection fault during low-level debugger", addr);
115   else if (atomic::load(&current_gc_p))
116     fatal_error("Memory protection fault during gc", addr);
117 }
118
119 /* Allocates memory */
120 void factor_vm::memory_protection_error(cell pc, cell addr) {
121   if (code->safepoint_p(addr))
122     safepoint.handle_safepoint(this, pc);
123   else if (ctx->datastack_seg->underflow_p(addr))
124     general_error(ERROR_DATASTACK_UNDERFLOW, false_object, false_object);
125   else if (ctx->datastack_seg->overflow_p(addr))
126     general_error(ERROR_DATASTACK_OVERFLOW, false_object, false_object);
127   else if (ctx->retainstack_seg->underflow_p(addr))
128     general_error(ERROR_RETAINSTACK_UNDERFLOW, false_object, false_object);
129   else if (ctx->retainstack_seg->overflow_p(addr))
130     general_error(ERROR_RETAINSTACK_OVERFLOW, false_object, false_object);
131   else if (ctx->callstack_seg->underflow_p(addr))
132     general_error(ERROR_CALLSTACK_OVERFLOW, false_object, false_object);
133   else if (ctx->callstack_seg->overflow_p(addr))
134     general_error(ERROR_CALLSTACK_UNDERFLOW, false_object, false_object);
135   else
136     general_error(ERROR_MEMORY, from_unsigned_cell(addr), false_object);
137 }
138
139 /* Allocates memory */
140 void factor_vm::signal_error(cell signal) {
141   general_error(ERROR_SIGNAL, from_unsigned_cell(signal), false_object);
142 }
143
144 void factor_vm::divide_by_zero_error() {
145   general_error(ERROR_DIVIDE_BY_ZERO, false_object, false_object);
146 }
147
148 void factor_vm::fp_trap_error(unsigned int fpu_status) {
149   general_error(ERROR_FP_TRAP, tag_fixnum(fpu_status), false_object);
150 }
151
152 /* For testing purposes */
153 void factor_vm::primitive_unimplemented() { not_implemented_error(); }
154
155 void factor_vm::memory_signal_handler_impl() {
156   memory_protection_error(signal_fault_pc, signal_fault_addr);
157   if (!signal_resumable) {
158     /* In theory we should only get here if the callstack overflowed during a
159        safepoint */
160     general_error(ERROR_CALLSTACK_OVERFLOW, false_object, false_object);
161   }
162 }
163
164 void memory_signal_handler_impl() {
165   current_vm()->memory_signal_handler_impl();
166 }
167
168 void factor_vm::synchronous_signal_handler_impl() {
169   signal_error(signal_number);
170 }
171
172 void synchronous_signal_handler_impl() {
173   current_vm()->synchronous_signal_handler_impl();
174 }
175
176 void factor_vm::fp_signal_handler_impl() {
177   /* Clear pending exceptions to avoid getting stuck in a loop */
178   set_fpu_state(get_fpu_state());
179
180   fp_trap_error(signal_fpu_status);
181 }
182
183 void fp_signal_handler_impl() { current_vm()->fp_signal_handler_impl(); }
184 }