2 * This software is part of the SBCL system. See the README file for
5 * This software is derived from the CMU CL system, which was
6 * written at Carnegie Mellon University and released into the
7 * public domain. The software is in the public domain and is
8 * provided with absolutely no warranty. See the COPYING and CREDITS
9 * files for more information.
18 #include "interrupt.h"
23 #include "breakpoint.h"
25 #include "genesis/code.h"
26 #include "genesis/fdefn.h"
28 #define REAL_LRA_SLOT 0
29 #ifndef LISP_FEATURE_X86
30 #define KNOWN_RETURN_P_SLOT 1
31 #define BOGUS_LRA_CONSTANTS 2
33 #define KNOWN_RETURN_P_SLOT 2
34 #define BOGUS_LRA_CONSTANTS 3
37 static void *compute_pc(lispobj code_obj, int pc_offset)
41 code = (struct code *)native_pointer(code_obj);
42 return (void *)((char *)code + HeaderValue(code->header)*sizeof(lispobj)
46 unsigned long breakpoint_install(lispobj code_obj, int pc_offset)
48 return arch_install_breakpoint(compute_pc(code_obj, pc_offset));
51 void breakpoint_remove(lispobj code_obj, int pc_offset,
52 unsigned long orig_inst)
54 arch_remove_breakpoint(compute_pc(code_obj, pc_offset), orig_inst);
57 void breakpoint_do_displaced_inst(os_context_t* context,
58 unsigned long orig_inst)
60 /* on platforms with sigreturn(), we go directly back from
61 * arch_do_displaced_inst() to lisp code, so we need to clean up
62 * our bindings now. (side note: I'd love to know in exactly what
63 * scenario the speed of breakpoint handling is critical enough to
64 * justify this maintenance mess)
68 #if (defined(sparc) && defined (solaris))
69 undo_fake_foreign_function_call(context);
71 arch_do_displaced_inst(context, orig_inst);
74 #ifndef LISP_FEATURE_X86
75 static lispobj find_code(os_context_t *context)
78 lispobj code = *os_context_register_addr(context, reg_CODE);
81 if (lowtag_of(code) != OTHER_POINTER_LOWTAG)
84 header = *(lispobj *)(code-OTHER_POINTER_LOWTAG);
86 if (widetag_of(header) == CODE_HEADER_WIDETAG)
89 return code - HeaderValue(header)*sizeof(lispobj);
96 #ifdef LISP_FEATURE_X86
97 static lispobj find_code(os_context_t *context)
100 (lispobj)component_ptr_from_pc((lispobj *)(*os_context_pc_addr(context)));
105 return codeptr + OTHER_POINTER_LOWTAG;
110 static int compute_offset(os_context_t *context, lispobj code)
115 unsigned long code_start;
116 struct code *codeptr = (struct code *)native_pointer(code);
118 unsigned long pc = *os_context_pc_addr(context) & ~3;
120 unsigned long pc = *os_context_pc_addr(context);
123 code_start = (unsigned long)codeptr
124 + HeaderValue(codeptr->header)*sizeof(lispobj);
128 int offset = pc - code_start;
129 if (offset >= codeptr->code_size)
132 return make_fixnum(offset);
136 /* FIXME: I can see no really good reason these couldn't be merged, but haven't
137 * tried. The sigprocmask() call would work just as well on alpha as it
138 * presumably does on x86 -dan 2001.08.10
140 #ifndef LISP_FEATURE_X86
141 void handle_breakpoint(int signal, siginfo_t *info, os_context_t *context)
145 fake_foreign_function_call(context);
147 code = find_code(context);
148 /* FIXME we're calling into Lisp with signals masked here. Is this
149 * the right thing to do? */
150 funcall3(SymbolFunction(HANDLE_BREAKPOINT),
151 compute_offset(context, code),
155 undo_fake_foreign_function_call(context);
158 void handle_breakpoint(int signal, siginfo_t* info, os_context_t *context)
160 lispobj code, context_sap = alloc_sap(context);
162 fake_foreign_function_call(context);
164 code = find_code(context);
166 /* Don't disallow recursive breakpoint traps. Otherwise, we can't
167 * use debugger breakpoints anywhere in here. */
168 sigprocmask(SIG_SETMASK, os_context_sigmask_addr(context), 0);
170 funcall3(SymbolFunction(HANDLE_BREAKPOINT),
171 compute_offset(context, code),
175 undo_fake_foreign_function_call(context);
179 #ifndef LISP_FEATURE_X86
180 void *handle_fun_end_breakpoint(int signal, siginfo_t *info,
181 os_context_t *context)
184 struct code *codeptr;
186 fake_foreign_function_call(context);
188 code = find_code(context);
189 codeptr = (struct code *)native_pointer(code);
191 /* FIXME again, calling into Lisp with signals masked. Is this
193 funcall3(SymbolFunction(HANDLE_BREAKPOINT),
194 compute_offset(context, code),
198 lra = codeptr->constants[REAL_LRA_SLOT];
200 if (codeptr->constants[KNOWN_RETURN_P_SLOT] == NIL) {
201 *os_context_register_addr(context, reg_CODE) = lra;
204 undo_fake_foreign_function_call(context);
205 return (void *)(lra-OTHER_POINTER_LOWTAG+sizeof(lispobj));
208 void *handle_fun_end_breakpoint(int signal, siginfo_t *info,
209 os_context_t *context)
211 lispobj code, context_sap = alloc_sap(context);
212 struct code *codeptr;
214 fake_foreign_function_call(context);
216 code = find_code(context);
217 codeptr = (struct code *)native_pointer(code);
219 /* Don't disallow recursive breakpoint traps. Otherwise, we can't
220 * use debugger breakpoints anywhere in here. */
221 sigprocmask(SIG_SETMASK, os_context_sigmask_addr(context), 0);
223 funcall3(SymbolFunction(HANDLE_BREAKPOINT),
224 compute_offset(context, code),
228 undo_fake_foreign_function_call(context);
230 return compute_pc(codeptr->constants[REAL_LRA_SLOT],
231 fixnum_value(codeptr->constants[REAL_LRA_SLOT+1]));