mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-17 16:44:00 +00:00
* Remove extra semicolons, convert #define x() {...} to do {...} while (0) style
* Fix missing brace in INIT-specific definition of init_kbd_startup
197 lines
6.1 KiB
C
197 lines
6.1 KiB
C
/* $Id: unwind.c,v 1.3 1999/05/31 23:35:46 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved
|
|
*/
|
|
|
|
/************************************************************************/
|
|
/* */
|
|
/* (C) Copyright 1989-95 Venue. All Rights Reserved. */
|
|
/* Manufactured in the United States of America. */
|
|
/* */
|
|
/************************************************************************/
|
|
|
|
#include "version.h"
|
|
|
|
/******************************************************************/
|
|
/*
|
|
|
|
File Name : unwind.c
|
|
|
|
Created : jul 17, 1987 by T.Shimizu
|
|
Changed : Sept 21 1988 BK
|
|
|
|
*/
|
|
/******************************************************************/
|
|
|
|
#include "emlglob.h"
|
|
#include "lispemul.h" // for LispPTR, state, DLword, PVar, CurrentStackPTR
|
|
#include "lspglob.h"
|
|
#include "unwinddefs.h" // for N_OP_unwind
|
|
|
|
LispPTR *N_OP_unwind(LispPTR *cstkptr, LispPTR tos, int n, int keep) {
|
|
int num; /* number of UNBOUND slot */
|
|
LispPTR *endptr; /* unwind limit */
|
|
LispPTR *lastpvar; /* points PVar slot that is unbounded. */
|
|
|
|
/* Slots:
|
|
-----------------
|
|
| | <- PVar
|
|
-----------------
|
|
| . |
|
|
| . |
|
|
-----------------
|
|
| | ALL OF THE FOLLOWING LOCATIONS SCANNED:
|
|
-----------------------------------------------------------------
|
|
| tos if keep | <- endptr (PVar[n]) <- Result (no keep) |
|
|
----------------- |
|
|
| | <- Result (keep) |
|
|
----------------- |
|
|
| | |
|
|
----------------- |
|
|
| . | |
|
|
| . | |
|
|
----------------- |
|
|
| tos pushed | <- Start CSTKPTR |
|
|
-----------------------------------------------------------------
|
|
| | <- CSTKPTR temporarily bumped pushing tos
|
|
-----------------
|
|
|
|
NOTE: upon return the emulator does a POP to get the new tos value
|
|
|
|
*/
|
|
|
|
endptr = (LispPTR *)PVar + n; /* set unwind limit */
|
|
|
|
if (endptr > cstkptr) {
|
|
CurrentStackPTR = (DLword *)cstkptr;
|
|
/* this would be ERROR_EXIT(tos); but for having to return a pointer */
|
|
TopOfStack = tos;
|
|
Error_Exit = 1;
|
|
return (LispPTR *)(-1);
|
|
}
|
|
*cstkptr++ = tos;
|
|
|
|
/* UNBOUND MARK loop */
|
|
|
|
while (cstkptr > endptr) {
|
|
/* Look for the Next BIND marker */
|
|
|
|
if ((num = (int)*--cstkptr) < 0) {
|
|
/* Now UNBIND the PVARS indicated by the BIND marker */
|
|
|
|
lastpvar = (LispPTR *)(2 + PVar + (unsigned short)num);
|
|
num = ~(num >> 16) + 1;
|
|
for (; --num > 0;) { *--lastpvar = 0xffffffff; /* Mark as UNBOUND */ }
|
|
}
|
|
}
|
|
|
|
/* endptr = cstkptr */
|
|
|
|
if (keep) { *(cstkptr++) = tos; }
|
|
return (cstkptr);
|
|
|
|
} /* N_OP_unwind */
|
|
|
|
#ifdef CATCH
|
|
|
|
/******************************************************************/
|
|
/*
|
|
SUBR: FIND_THE_BLIP
|
|
|
|
find the blip down in the stack. Similar to the LISP
|
|
SI::UNWIND-TO-BLIP, except the target is returned instead
|
|
of doing the unwinding. Note that the unwinder parameter
|
|
must already be properly set by the caller (i.e. to the
|
|
alink if necessary).
|
|
*/
|
|
/******************************************************************/
|
|
#define SMALLP(x) (((unsigned int)x >> 16) == (S_POSITIVE >> 16))
|
|
|
|
LispPTR find_the_blip(LispPTR blip, LispPTR throwp, FX *unwinder)
|
|
{
|
|
LispPTR target;
|
|
FX *target_addr;
|
|
LispPTR pc = NIL_PTR;
|
|
|
|
LispPTR CATCH_RETURN_PC_ATOM = parse_atomstring("SI::*CATCH-RETURN-PC*");
|
|
LispPTR CATCH_RETURN_TO_ATOM = parse_atomstring("SI::*CATCH-RETURN-TO*");
|
|
LispPTR CATCH_RETURN_FROM_ATOM = parse_atomstring("SI::*CATCH-RETURN-FROM*");
|
|
|
|
for (target = (LispPTR)unwinder; FX_INVALIDP(target); GETCLINK(target_addr)) {
|
|
target_addr = (FX *)NativeAligned4FromStackOffset(target);
|
|
if (blip == *target_addr) {
|
|
LispPTR var_name_in_frame = variable_name_in_frame(target_addr, (FVPVAR << 8) + 1);
|
|
if (var_name_in_frame == CATCH_RETURN_TO_ATOM) {
|
|
if (throwp) {
|
|
pc = pvar_value_in_frame(target_addr, CATCH_RETURN_PC_ATOM);
|
|
if
|
|
!(SMALLP(pc))error("Catch return-to frame lacks PC");
|
|
}
|
|
goto cons_result;
|
|
} else if (var_name_in_frame == CATCH_RETURN_FROM_ATOM) {
|
|
if (throwp) { target = GETCLINK(target_addr); }
|
|
goto cons_result;
|
|
}
|
|
} /* if blip */
|
|
} /* for */
|
|
|
|
no_result:
|
|
return (NIL_PTR);
|
|
cons_result:
|
|
return (cons(StackOffsetFromNative(target), pc));
|
|
}
|
|
|
|
LispPTR variable_name_in_frame(FX *fx_addr, LispPTR code)
|
|
{
|
|
DLword *name_ptr;
|
|
DLword *name_bind_ptr;
|
|
DLword *name_table_base;
|
|
DLword value;
|
|
|
|
name_table_base = NativeAligned2FromLAddr(GETNAMETABLE(fx_addr));
|
|
name_ptr = name_table_base + FNHEADSIZE;
|
|
name_table_base = name_ptr + ((FNHEAD *)name_table_base)->ntsize;
|
|
|
|
while (value = GETWORD(name_ptr++)) do {
|
|
if (code == GETWORD(name_bind_ptr++)) { return (value) }
|
|
} /* while */
|
|
return (NIL_PTR);
|
|
}; /* variable_name_in_frame */
|
|
|
|
/******************************************************************/
|
|
/*
|
|
pvar_value_in_frame searches through the name table for
|
|
frame_addr looking for the binding of atom_index. It
|
|
returns the PVAR value of the binding if the PVAR is found
|
|
& it is bound.
|
|
*/
|
|
/******************************************************************/
|
|
|
|
LispPTR pvar_value_in_frame(FX *frame_addr, LispPTR atom_index)
|
|
|
|
{
|
|
DLword *name_ptr;
|
|
DLword *name_bind_ptr;
|
|
DLword *name_table_base;
|
|
DLword value;
|
|
|
|
name_table_base = NativeAligned2FromLAddr(GETNAMETABLE(frame_addr));
|
|
name_ptr = name_table_base + FNHEADSIZE;
|
|
name_table_base = name_ptr + ((FNHEAD *)name_table_base)->ntsize;
|
|
|
|
while (value = GETWORD(name_ptr++)) do {
|
|
if (value == atom_index) {
|
|
DLword bind_info = GETWORD(name_bind_ptr);
|
|
if ((bind_info >> 8) == FVPVAR) {
|
|
LispPTR slot_value = *((LispPTR *)(FRAMESIZE + (DLword *)frame_addr) +
|
|
(bind_info - (FVPVAR << 8))) if (slot_value > 0) {
|
|
return (slot_value & POINTERMASK);
|
|
}
|
|
}
|
|
}
|
|
name_bind_ptr++;
|
|
} /* while */
|
|
return (NIL_PTR);
|
|
|
|
}; /* pvar_value_in_frame */
|
|
|
|
#endif
|