1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-30 05:24:22 +00:00

Reformat all C source files with Clang-format in Google style w/ 100 col width.

This commit is contained in:
Nick Briggs
2017-05-28 18:08:18 -07:00
parent 691645d048
commit 156c3292f8
167 changed files with 40520 additions and 48069 deletions

436
src/mvs.c Executable file → Normal file
View File

@@ -1,11 +1,6 @@
/* $Id: mvs.c,v 1.3 1999/05/31 23:35:40 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved */
static char *id = "$Id: mvs.c,v 1.3 1999/05/31 23:35:40 sybalsky Exp $ Copyright (C) Venue";
/************************************************************************/
/* */
/* (C) Copyright 1989-95 Venue. All Rights Reserved. */
@@ -20,8 +15,6 @@ static char *id = "$Id: mvs.c,v 1.3 1999/05/31 23:35:40 sybalsky Exp $ Copyright
#include "version.h"
/************************************************************************/
/* */
/* M U L T I P L E - V A L U E S U P P O R T */
@@ -33,7 +26,6 @@ static char *id = "$Id: mvs.c,v 1.3 1999/05/31 23:35:40 sybalsky Exp $ Copyright
#include <stdio.h>
#include "lispemul.h"
#include "lispmap.h"
#include "lspglob.h"
@@ -47,15 +39,13 @@ static char *id = "$Id: mvs.c,v 1.3 1999/05/31 23:35:40 sybalsky Exp $ Copyright
#include "inlnPS2.h"
#endif /* AIXPS2 */
/* to optionally swap the fnhead field of a frame */
/* to optionally swap the fnhead field of a frame */
#ifdef BIGVM
#define SWA_FNHEAD
#else
#define SWA_FNHEAD swapx
#endif /* BIGVM */
LispPTR MVLIST_index;
LispPTR make_value_list(int argcount, LispPTR *argarray);
@@ -69,111 +59,102 @@ void simulate_unbind(FX2 *frame, int unbind_count, FX2 *returner);
/* */
/****************************************************************/
LispPTR values (int arg_count, register LispPTR *args)
{
FX2 *caller, *prevcaller=0, *immediate_caller=0;
ByteCode *pc;
int unbind_count=0;
struct fnhead *fnhead;
int byteswapped; /* T if on 386 & reswapped code block */
short opcode;
LispPTR values(int arg_count, register LispPTR *args) {
FX2 *caller, *prevcaller = 0, *immediate_caller = 0;
ByteCode *pc;
int unbind_count = 0;
struct fnhead *fnhead;
int byteswapped; /* T if on 386 & reswapped code block */
short opcode;
caller = (FX2 *) CURRENTFX;
immediate_caller = caller;
caller = (FX2 *)CURRENTFX;
immediate_caller = caller;
newframe:
if (caller == immediate_caller)
{
fnhead = (struct fnhead *) FuncObj;
pc = (ByteCode *) PC+3; /* to skip the miscn opcode we're in now */
}
else
{
fnhead = (struct fnhead *)
Addr68k_from_LADDR(POINTERMASK & SWA_FNHEAD((int)caller->fnheader));
pc = (ByteCode *)fnhead+(caller->pc);
}
if (caller == immediate_caller) {
fnhead = (struct fnhead *)FuncObj;
pc = (ByteCode *)PC + 3; /* to skip the miscn opcode we're in now */
} else {
fnhead = (struct fnhead *)Addr68k_from_LADDR(POINTERMASK & SWA_FNHEAD((int)caller->fnheader));
pc = (ByteCode *)fnhead + (caller->pc);
}
#ifdef ISC
if(!fnhead->byteswapped)
{
byte_swap_code_block(fnhead);
fnhead->byteswapped=1;
}
if (!fnhead->byteswapped) {
byte_swap_code_block(fnhead);
fnhead->byteswapped = 1;
}
#endif /* ISC */
newpc:
#ifdef ISC
opcode = (short)((unsigned char) *((char *)pc));
opcode = (short)((unsigned char)*((char *)pc));
#else
opcode = (short)((unsigned char)GETBYTE((char *)pc));
opcode = (short)((unsigned char)GETBYTE((char *)pc));
#endif
switch (opcode)
{
case opc_RETURN:
case opc_SLRETURN: prevcaller = caller;
caller = (FX2 *) (Stackspace+(unsigned)(GETCLINK(caller)));
goto newframe;
switch (opcode) {
case opc_RETURN:
case opc_SLRETURN:
prevcaller = caller;
caller = (FX2 *)(Stackspace + (unsigned)(GETCLINK(caller)));
goto newframe;
case opc_FN1: if (MVLIST_index == Get_code_AtomNo(pc+1))
{
if (unbind_count > 0)
simulate_unbind(caller, unbind_count, prevcaller);
case opc_FN1:
if (MVLIST_index == Get_code_AtomNo(pc + 1)) {
if (unbind_count > 0) simulate_unbind(caller, unbind_count, prevcaller);
#ifndef BIGATOMS
/* would add 3 to PC, but miscn return code does.*/
if (caller == immediate_caller) PC = pc;
/* would add 3 to PC, but miscn return code does.*/
if (caller == immediate_caller) PC = pc;
#else
/* BUT 3's not enough for big atoms, so add diff between FN op size & MISCN op size */
if (caller == immediate_caller) PC = pc + (FN_OPCODE_SIZE-3);
/* BUT 3's not enough for big atoms, so add diff between FN op size & MISCN op size */
if (caller == immediate_caller) PC = pc + (FN_OPCODE_SIZE - 3);
#endif /* BIGATOMS */
else caller->pc = (UNSIGNED)pc+ FN_OPCODE_SIZE-(UNSIGNED)fnhead;
return(make_value_list(arg_count, args));
}
break;
case opc_UNBIND: pc += 1;
unbind_count += 1;
goto newpc;
case opc_JUMPX: {
register short displacement;
#ifdef ISC
displacement = (short) (*((char *)pc+1));
#else
displacement = (short) (GETBYTE((char *)pc+1));
#endif
if (displacement >= 128) displacement -= 256;
pc += displacement;
goto newpc;
}
case opc_JUMPXX: {
register int displacement;
displacement = (int) Get_code_DLword(pc+1);
if (displacement >= 32768) displacement -= 65536;
pc += displacement;
goto newpc;
}
default: if ((opcode >= opc_JUMP) && (opcode < opc_FJUMP))
{
pc += 2 + opcode - opc_JUMP;
goto newpc;
}
else
caller->pc = (UNSIGNED)pc + FN_OPCODE_SIZE - (UNSIGNED)fnhead;
return (make_value_list(arg_count, args));
}
break;
/*****************************************/
/* Default case: Return a single value. */
/*****************************************/
case opc_UNBIND:
pc += 1;
unbind_count += 1;
goto newpc;
if (arg_count>0) return(args[0]);
else return(NIL_PTR);
case opc_JUMPX: {
register short displacement;
#ifdef ISC
displacement = (short)(*((char *)pc + 1));
#else
displacement = (short)(GETBYTE((char *)pc + 1));
#endif
if (displacement >= 128) displacement -= 256;
pc += displacement;
goto newpc;
}
case opc_JUMPXX: {
register int displacement;
displacement = (int)Get_code_DLword(pc + 1);
if (displacement >= 32768) displacement -= 65536;
pc += displacement;
goto newpc;
}
default:
if ((opcode >= opc_JUMP) && (opcode < opc_FJUMP)) {
pc += 2 + opcode - opc_JUMP;
goto newpc;
}
}
/*****************************************/
/* Default case: Return a single value. */
/*****************************************/
if (arg_count > 0)
return (args[0]);
else
return (NIL_PTR);
}
/****************************************************************/
/* */
@@ -183,110 +164,102 @@ newpc:
/* */
/****************************************************************/
LispPTR values_list (int arg_count, register LispPTR *args)
{
FX2 *caller, *prevcaller=0, *immediate_caller=0;
ByteCode *pc;
int unbind_count=0;
struct fnhead *fnhead;
short opcode;
LispPTR values_list(int arg_count, register LispPTR *args) {
FX2 *caller, *prevcaller = 0, *immediate_caller = 0;
ByteCode *pc;
int unbind_count = 0;
struct fnhead *fnhead;
short opcode;
caller = (FX2 *) CURRENTFX;
immediate_caller = caller;
caller = (FX2 *)CURRENTFX;
immediate_caller = caller;
newframe:
if (caller == immediate_caller)
{
fnhead = (struct fnhead *) FuncObj;
pc = (ByteCode *) PC+3; /* Skip over the miscn opcode we're in now */
}
else
{
fnhead = (struct fnhead *)
Addr68k_from_LADDR(POINTERMASK & SWA_FNHEAD((int)caller->fnheader));
pc = (ByteCode *)fnhead+(caller->pc);
}
#ifdef ISC
if(!fnhead->byteswapped)
{
byte_swap_code_block(fnhead);
fnhead->byteswapped=1;
}
#endif /* ISC */
newpc:
#ifdef ISC
opcode = (short)((unsigned char) *((char *)pc));
#else
opcode = (short)((unsigned char)GETBYTE((char *)pc));
#endif
switch (opcode)
{
case opc_RETURN:
case opc_SLRETURN: prevcaller = caller;
caller = (FX2 *) (Stackspace+(int)(GETCLINK(caller)));
goto newframe;
case opc_FN1: if (MVLIST_index == Get_code_AtomNo(pc+1))
{
if (unbind_count > 0)
simulate_unbind(caller, unbind_count, prevcaller);
/* would add 3 to PC, but miscn ret code does. */
#ifndef BIGATOMS
if (caller == immediate_caller) PC = pc;
#else
/* BUT 3's not enough for big atoms, so add 1 */
if (caller == immediate_caller) PC = pc + (FN_OPCODE_SIZE-3);
#endif /* BIGATOMS */
else caller->pc = (UNSIGNED)pc+ FN_OPCODE_SIZE-(UNSIGNED)fnhead;
return(args[0]);
}
break;
case opc_UNBIND: pc += 1;
unbind_count += 1;
goto newpc;
case opc_JUMPX: {
register short displacement;
#ifdef ISC
displacement = (short) (*((char *)pc+1));
#else
displacement = (short) (GETBYTE((char *)pc+1));
#endif
if (displacement >= 128) displacement -= 256;
pc += displacement;
goto newpc;
}
case opc_JUMPXX: {
register int displacement;
displacement = (int) Get_code_DLword(pc+1);
if (displacement >= 32768) displacement -= 65536;
pc += displacement;
goto newpc;
}
default: if ((opcode >= opc_JUMP) && (opcode < opc_FJUMP))
{
pc += 2 + opcode - opc_JUMP;
goto newpc;
}
}
/*****************************************/
/* Default case: Return a single value. */
/*****************************************/
if (Listp(args[0])) return(car(args[0]));
else return(args[0]);
if (caller == immediate_caller) {
fnhead = (struct fnhead *)FuncObj;
pc = (ByteCode *)PC + 3; /* Skip over the miscn opcode we're in now */
} else {
fnhead = (struct fnhead *)Addr68k_from_LADDR(POINTERMASK & SWA_FNHEAD((int)caller->fnheader));
pc = (ByteCode *)fnhead + (caller->pc);
}
#ifdef ISC
if (!fnhead->byteswapped) {
byte_swap_code_block(fnhead);
fnhead->byteswapped = 1;
}
#endif /* ISC */
newpc:
#ifdef ISC
opcode = (short)((unsigned char)*((char *)pc));
#else
opcode = (short)((unsigned char)GETBYTE((char *)pc));
#endif
switch (opcode) {
case opc_RETURN:
case opc_SLRETURN:
prevcaller = caller;
caller = (FX2 *)(Stackspace + (int)(GETCLINK(caller)));
goto newframe;
case opc_FN1:
if (MVLIST_index == Get_code_AtomNo(pc + 1)) {
if (unbind_count > 0) simulate_unbind(caller, unbind_count, prevcaller);
/* would add 3 to PC, but miscn ret code does. */
#ifndef BIGATOMS
if (caller == immediate_caller) PC = pc;
#else
/* BUT 3's not enough for big atoms, so add 1 */
if (caller == immediate_caller) PC = pc + (FN_OPCODE_SIZE - 3);
#endif /* BIGATOMS */
else
caller->pc = (UNSIGNED)pc + FN_OPCODE_SIZE - (UNSIGNED)fnhead;
return (args[0]);
}
break;
case opc_UNBIND:
pc += 1;
unbind_count += 1;
goto newpc;
case opc_JUMPX: {
register short displacement;
#ifdef ISC
displacement = (short)(*((char *)pc + 1));
#else
displacement = (short)(GETBYTE((char *)pc + 1));
#endif
if (displacement >= 128) displacement -= 256;
pc += displacement;
goto newpc;
}
case opc_JUMPXX: {
register int displacement;
displacement = (int)Get_code_DLword(pc + 1);
if (displacement >= 32768) displacement -= 65536;
pc += displacement;
goto newpc;
}
default:
if ((opcode >= opc_JUMP) && (opcode < opc_FJUMP)) {
pc += 2 + opcode - opc_JUMP;
goto newpc;
}
}
/*****************************************/
/* Default case: Return a single value. */
/*****************************************/
if (Listp(args[0]))
return (car(args[0]));
else
return (args[0]);
}
/************************************************************************/
/* */
@@ -299,19 +272,13 @@ newpc:
/* */
/************************************************************************/
LispPTR make_value_list(int argcount, LispPTR *argarray)
{
register LispPTR result = NIL_PTR;
register int i;
if (argcount == 0) return(NIL_PTR);
for (i = argcount-1; i>=0; i--)
{
result = cons(argarray[i], result);
}
return(result);
}
LispPTR make_value_list(int argcount, LispPTR *argarray) {
register LispPTR result = NIL_PTR;
register int i;
if (argcount == 0) return (NIL_PTR);
for (i = argcount - 1; i >= 0; i--) { result = cons(argarray[i], result); }
return (result);
}
/************************************************************************/
/* */
@@ -324,32 +291,31 @@ LispPTR make_value_list(int argcount, LispPTR *argarray)
/* */
/************************************************************************/
void simulate_unbind(FX2 *frame, int unbind_count, FX2 *returner)
{
int unbind;
LispPTR *stackptr;
DLword *nextblock;
stackptr = (LispPTR *) (Stackspace+frame->nextblock);
nextblock = (DLword *) stackptr;
for (unbind = 0; unbind<unbind_count; unbind++)
{
register int value;
register LispPTR *lastpvar;
int bindnvalues;
for (;((int)*--stackptr>=0);); /* find the binding mark */
value = (int)*stackptr;
lastpvar = (LispPTR *) ((DLword *)frame + FRAMESIZE + 2 + GetLoWord(value));;
bindnvalues = (~value)>>16;
for(value=bindnvalues; --value >= 0;){*--lastpvar = 0xffffffff;}
/* This line caused \NSMAIL.READ.HEADING to smash memory, */
/* so I removed it 21 Jul 91 --JDS. This was the only */
/* difference between this function and the UNWIND code */
/* in inlineC.h */
/* MAKEFREEBLOCK(stackptr, (DLword *)stackptr-nextblock); */
}
if (returner) returner->fast = 0; /* since we've destroyed congituity
/* in the stack, but that only
matters if there's a return. */
void simulate_unbind(FX2 *frame, int unbind_count, FX2 *returner) {
int unbind;
LispPTR *stackptr;
DLword *nextblock;
stackptr = (LispPTR *)(Stackspace + frame->nextblock);
nextblock = (DLword *)stackptr;
for (unbind = 0; unbind < unbind_count; unbind++) {
register int value;
register LispPTR *lastpvar;
int bindnvalues;
for (; ((int)*--stackptr >= 0);)
; /* find the binding mark */
value = (int)*stackptr;
lastpvar = (LispPTR *)((DLword *)frame + FRAMESIZE + 2 + GetLoWord(value));
;
bindnvalues = (~value) >> 16;
for (value = bindnvalues; --value >= 0;) { *--lastpvar = 0xffffffff; }
/* This line caused \NSMAIL.READ.HEADING to smash memory, */
/* so I removed it 21 Jul 91 --JDS. This was the only */
/* difference between this function and the UNWIND code */
/* in inlineC.h */
/* MAKEFREEBLOCK(stackptr, (DLword *)stackptr-nextblock); */
}
if (returner)
returner->fast = 0; /* since we've destroyed congituity
/* in the stack, but that only
matters if there's a return. */
}