Skip to content
Snippets Groups Projects
Commit 4d23fe3c authored by wlott's avatar wlott
Browse files

added lots of #ifdefs to conditionalize machine specific parts.

parent ac0996bc
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/interrupt.c,v 1.11 1990/10/22 12:38:51 wlott Exp $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/interrupt.c,v 1.12 1990/10/29 19:24:18 wlott Exp $ */
/* Interrupt handing magic. */ /* Interrupt handing magic. */
...@@ -32,7 +32,9 @@ static void fake_foreign_function_call(context) ...@@ -32,7 +32,9 @@ static void fake_foreign_function_call(context)
/* Get current LISP state from context */ /* Get current LISP state from context */
current_dynamic_space_free_pointer = (lispobj *) context->sc_regs[ALLOC]; current_dynamic_space_free_pointer = (lispobj *) context->sc_regs[ALLOC];
current_binding_stack_pointer = (lispobj *) context->sc_regs[BSP]; current_binding_stack_pointer = (lispobj *) context->sc_regs[BSP];
#ifdef MIPS
current_flags_register = context->sc_regs[FLAGS]|(1<<flag_Atomic); current_flags_register = context->sc_regs[FLAGS]|(1<<flag_Atomic);
#endif
/* Build a fake stack frame */ /* Build a fake stack frame */
current_control_frame_pointer = (lispobj *) context->sc_regs[CSP]; current_control_frame_pointer = (lispobj *) context->sc_regs[CSP];
...@@ -157,13 +159,18 @@ struct sigcontext *context; ...@@ -157,13 +159,18 @@ struct sigcontext *context;
pending_mask = context->sc_mask; pending_mask = context->sc_mask;
context->sc_mask |= BLOCKABLE; context->sc_mask |= BLOCKABLE;
SetSymbolValue(INTERRUPT_PENDING, T); SetSymbolValue(INTERRUPT_PENDING, T);
} else if ((!foreign_function_call_active) && } else if ((!foreign_function_call_active)
(context->sc_regs[FLAGS] & (1<<flag_Atomic))) { #ifdef mips
&& (context->sc_regs[FLAGS] & (1<<flag_Atomic))
#endif
) {
pending_signal = signal; pending_signal = signal;
pending_code = code; pending_code = code;
pending_mask = context->sc_mask; pending_mask = context->sc_mask;
context->sc_mask |= BLOCKABLE; context->sc_mask |= BLOCKABLE;
#ifdef mips
context->sc_regs[FLAGS] |= (1<<flag_Interrupted); context->sc_regs[FLAGS] |= (1<<flag_Interrupted);
#endif
} else } else
handle_now(signal, code, context); handle_now(signal, code, context);
} }
...@@ -171,11 +178,17 @@ struct sigcontext *context; ...@@ -171,11 +178,17 @@ struct sigcontext *context;
static void skip_instruction(context) static void skip_instruction(context)
struct sigcontext *context; struct sigcontext *context;
{ {
#ifdef mips
/* Skip the offending instruction */ /* Skip the offending instruction */
if (context->sc_cause & CAUSE_BD) if (context->sc_cause & CAUSE_BD)
emulate_branch(context, *(unsigned long *)context->sc_pc); emulate_branch(context, *(unsigned long *)context->sc_pc);
else else
context->sc_pc += 4; context->sc_pc += 4;
#endif
#ifdef sparc
context->sc_pc = context->sc_npc;
context->sc_npc += 4;
#endif
} }
#define call_maybe_gc() \ #define call_maybe_gc() \
...@@ -190,7 +203,9 @@ struct sigcontext *context; ...@@ -190,7 +203,9 @@ struct sigcontext *context;
if (foreign_function_call_active) if (foreign_function_call_active)
crap_out("Oh no, got a PendingInterrupt while foreign function call was active.\n"); crap_out("Oh no, got a PendingInterrupt while foreign function call was active.\n");
#ifdef mips
context->sc_regs[FLAGS] &= ~(1<<flag_Interrupted); context->sc_regs[FLAGS] &= ~(1<<flag_Interrupted);
#endif
SetSymbolValue(INTERRUPT_PENDING, NIL); SetSymbolValue(INTERRUPT_PENDING, NIL);
if (maybe_gc_pending) { if (maybe_gc_pending) {
maybe_gc_pending = FALSE; maybe_gc_pending = FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment