1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-21 18:05:33 +00:00
Interlisp.maiko/src/unwind.c
Nick Briggs 5481a14812 Replace all K&R style function definitions with new-style function definitions.
Add some missing default function result types (int).
Add some missing void result types where appropriate.

	modified:   src/Cldeetr.c
	modified:   src/atom.c
	modified:   src/bbtsub.c
	modified:   src/bitblt.c
	modified:   src/byteswap.c
	modified:   src/chardev.c
	modified:   src/chatter.c
	modified:   src/colorbltfns.c
	modified:   src/common.c
	modified:   src/dir.c
	modified:   src/dlpi.c
	modified:   src/doskbd.c
	modified:   src/dosmouse.c
	modified:   src/draw.c
	modified:   src/dsk.c
	modified:   src/dspsubrs.c
	modified:   src/ejlisp.c
	modified:   src/ether.c
	modified:   src/imagefile.c
	modified:   src/imagefile2.c
	modified:   src/inet.c
	modified:   src/initdsp.c
	modified:   src/initkbd.c
	modified:   src/kbdsubrs.c
	modified:   src/ldeboot.c
	modified:   src/llcolor.c
	modified:   src/llstk.c
	modified:   src/loader.c
	modified:   src/loopsops.c
	modified:   src/lpdual.c
	modified:   src/lpmain.c
	modified:   src/lpread.c
	modified:   src/lptran.c
	modified:   src/lpwrite.c
	modified:   src/main.c
	modified:   src/misc7.c
	modified:   src/mkatom.c
	modified:   src/mnwevent.c
	modified:   src/mnxmeth.c
	modified:   src/mouseif.c
	modified:   src/ocr.c
	modified:   src/ocrproc.c
	modified:   src/oether.c
	modified:   src/oldeether.c
	modified:   src/osmsg.c
	modified:   src/picture.c
	modified:   src/rawcolor.c
	modified:   src/rawrs232c.c
	modified:   src/rpc.c
	modified:   src/rs232c.c
	modified:   src/socdvr.c
	modified:   src/socket.c
	modified:   src/testdsp.c
	modified:   src/testtool.c
	modified:   src/timeoday.c
	modified:   src/timeofday.c
	modified:   src/timer.c
	modified:   src/truecolor.c
	modified:   src/tty.c
	modified:   src/ufn.c
	modified:   src/ufs.c
	modified:   src/unixcomm.c
	modified:   src/unixfork.c
	modified:   src/unwind.c
	modified:   src/uraid.c
	modified:   src/vesainit.c
	modified:   src/vgainit.c
	modified:   src/vmemsave.c
	modified:   src/xcursor.c
	modified:   src/xinit.c
	modified:   src/xlspwin.c
	modified:   src/xmkicon.c
	modified:   src/xrdopt.c
	modified:   src/xwinman.c
2017-06-22 17:31:40 -07:00

200 lines
6.4 KiB
C

/* $Id: unwind.c,v 1.3 1999/05/31 23:35:46 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved
*/
static char *id = "$Id: unwind.c,v 1.3 1999/05/31 23:35:46 sybalsky Exp $ Copyright (C) Venue";
/************************************************************************/
/* */
/* (C) Copyright 1989-95 Venue. All Rights Reserved. */
/* Manufactured in the United States of America. */
/* */
/* The contents of this file are proprietary information */
/* belonging to Venue, and are provided to you under license. */
/* They may not be further distributed or disclosed to third */
/* parties without the specific permission of Venue. */
/* */
/************************************************************************/
#include "version.h"
/******************************************************************/
/*
File Name : unwind.c
Created : jul 17, 1987 by T.Shimizu
Changed : Sept 21 1988 BK
*/
/******************************************************************/
#include "lispemul.h"
#include "emlglob.h"
#include "stack.h"
#include "lspglob.h"
UNSIGNED N_OP_unwind(register LispPTR *cstkptr, register LispPTR tos, int n, int keep) {
register int num; /* number of UNBOUND slot */
register LispPTR *endptr; /* unwind limit */
register 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;
ERROR_EXIT(tos);
}
*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 ((UNSIGNED)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 unwider 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)
{
register LispPTR target;
register FX *target_addr;
register LispPTR pc = NIL_PTR;
LispPTR CATCH_RETURN_PC_ATOM = parse_atomstring("SI::*CATCH-RETURN-PC*");
LispPTR CHATCH_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 *)Addr68k_from_StkOffset(target);
if (blip == *target_addr) {
register LispPTR var_name_in_frame = variable_name_in_frame(target_addr, (FVPVAR << 8) + 1);
if (var_name_in_frame == CHATCH_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(StkOffset_from_68K(target), pc));
}
LispPTR variable_name_in_frame(FX *fx_addr, LispPTR code)
{
register DLword *name_ptr;
register DLword *name_bind_ptr;
register DLword *name_table_base;
register DLword value;
name_table_base = Addr68k_from_LADDR(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)
{
register DLword *name_ptr;
register DLword *name_bind_ptr;
register DLword *name_table_base;
register DLword value;
name_table_base = Addr68k_from_LADDR(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) {
register DLword bind_info = GETWORD(name_bind_ptr);
if ((bind_info >> 8) == FVPVAR) {
register 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