/* -*-C-*-
-$Id: hppacach.c,v 1.8 1993/06/08 04:17:43 gjr Exp $
+$Id: hppacach.c,v 1.9 1993/06/24 05:41:02 gjr Exp $
Copyright (c) 1990-1993 Massachusetts Institute of Technology
#include <unistd.h>
#include <errno.h>
-#include "hppacache.h"
+#include "hppacach.h"
#define true 1
#define false 0
/* -*-C-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/hppanwca.c,v 1.1 1992/01/07 16:53:10 jinx Exp $
+$Id: hppanwca.c,v 1.2 1993/06/24 05:43:10 gjr Exp $
-Copyright (c) 1992 Massachusetts Institute of Technology
+Copyright (c) 1992-1993 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
*/
#include <stdio.h>
-#include "hppacache.h"
+#include "hppacach.h"
struct pdc_cache_written
{
/* -*-C-*-
-$Id: interp.c,v 9.74 1993/02/23 20:18:50 gjr Exp $
+$Id: interp.c,v 9.75 1993/06/24 05:44:06 gjr Exp $
Copyright (c) 1988-1993 Massachusetts Institute of Technology
{
if (interpreter_state == NULL_INTERPRETER_STATE)
{
- fprintf (stderr, "abort_to_interpreter: Interpreter not set up.\n");
+ outf_fatal ("abort_to_interpreter: Interpreter not set up.\n");
termination_init_error ();
}
/* -*-C-*-
-$Id: interp.h,v 9.36 1992/09/26 02:55:01 cph Exp $
+$Id: interp.h,v 9.37 1993/06/24 05:45:06 gjr Exp $
-Copyright (c) 1987-92 Massachusetts Institute of Technology
+Copyright (c) 1987-1993 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
/* If the primitive failed to unwind the dynamic stack, lose. */ \
if (PRIMITIVE_APPLY_INTERNAL_position != dstack_position) \
{ \
- fprintf (stderr, "\nPrimitive slipped the dynamic stack: %s\n", \
- (primitive_to_name (primitive))); \
- fflush (stderr); \
+ outf_fatal ("\nPrimitive slipped the dynamic stack: %s\n", \
+ (primitive_to_name (primitive))); \
Microcode_Termination (TERM_EXIT); \
} \
} \
/* -*-C-*-
-$Id: liarc.h,v 1.1 1993/06/08 06:13:32 gjr Exp $
+$Id: liarc.h,v 1.2 1993/06/24 05:46:01 gjr Exp $
Copyright (c) 1992-1993 Massachusetts Institute of Technology
#include "interp.h"
#include "prim.h"
#include "cmpgc.h"
-#include "cmpint2.h"
+#include "cmpintmd.h"
#ifdef __STDC__
# define USE_STDARG
/* -*-C-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/lookup.c,v 9.51 1992/02/27 22:25:45 jinx Exp $
+$Id: lookup.c,v 9.52 1993/06/24 05:50:22 gjr Exp $
-Copyright (c) 1988-1992 Massachusetts Institute of Technology
+Copyright (c) 1988-1993 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
if (this_pair[CONS_CAR] == trap)
{
if (Fluids_Debug)
- {
- fprintf(stderr, "Fluid found.\n");
- }
+ outf_error ("Fluid found.\n");
return (&this_pair[CONS_CDR]);
}
/* Not found in fluid binding alist, so use default. */
if (Fluids_Debug)
- {
- fprintf(stderr, "Fluid not found, using default.\n");
- }
+ outf_error ("Fluid not found, using default.\n");
return (MEMORY_LOC (trap, TRAP_EXTRA));
}
long result;
if (Define_Debug)
- {
- fprintf(stderr,
- "\n;; Local_Set: defining %s.",
- (STRING_LOC ((MEMORY_REF (sym, SYMBOL_NAME)), 0)));
- }
+ outf_error ("\n;; Local_Set: defining %s.",
+ (STRING_LOC ((MEMORY_REF (sym, SYMBOL_NAME)), 0)));
result = (extend_frame (env, sym, value, env, true));
Val = sym;
return (result);
/* We've lost BIG. */
if (temp == PRIM_INTERRUPT)
- fprintf (stderr,
- "\ncompiler_recache: Ran out of guaranteed space!\n");
+ outf_fatal ("\ncompiler_recache: Ran out of guaranteed space!\n");
else if (temp > 0)
- fprintf (stderr,
- "\ncompiler_recache: Unexpected error value %d (%s)\n",
- temp, Abort_Names[temp]);
+ outf_fatal ("\ncompiler_recache: Unexpected error value %d (%s)\n",
+ temp, Abort_Names[temp]);
else
- fprintf (stderr,
- "\ncompiler_recache: Unexpected abort value %d (%s)\n",
- -temp, Abort_Names[(-temp) - 1]);
+ outf_fatal ("\ncompiler_recache: Unexpected abort value %d (%s)\n",
+ -temp, Abort_Names[(-temp) - 1]);
Microcode_Termination (TERM_EXIT);
}
}
/* -*-C-*-
-$Id: interp.c,v 9.74 1993/02/23 20:18:50 gjr Exp $
+$Id: interp.c,v 9.75 1993/06/24 05:44:06 gjr Exp $
Copyright (c) 1988-1993 Massachusetts Institute of Technology
{
if (interpreter_state == NULL_INTERPRETER_STATE)
{
- fprintf (stderr, "abort_to_interpreter: Interpreter not set up.\n");
+ outf_fatal ("abort_to_interpreter: Interpreter not set up.\n");
termination_init_error ();
}
/* -*-C-*-
-$Id: liarc.h,v 1.1 1993/06/08 06:13:32 gjr Exp $
+$Id: liarc.h,v 1.2 1993/06/24 05:46:01 gjr Exp $
Copyright (c) 1992-1993 Massachusetts Institute of Technology
#include "interp.h"
#include "prim.h"
#include "cmpgc.h"
-#include "cmpint2.h"
+#include "cmpintmd.h"
#ifdef __STDC__
# define USE_STDARG
/* -*-C-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/lookup.c,v 9.51 1992/02/27 22:25:45 jinx Exp $
+$Id: lookup.c,v 9.52 1993/06/24 05:50:22 gjr Exp $
-Copyright (c) 1988-1992 Massachusetts Institute of Technology
+Copyright (c) 1988-1993 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
if (this_pair[CONS_CAR] == trap)
{
if (Fluids_Debug)
- {
- fprintf(stderr, "Fluid found.\n");
- }
+ outf_error ("Fluid found.\n");
return (&this_pair[CONS_CDR]);
}
/* Not found in fluid binding alist, so use default. */
if (Fluids_Debug)
- {
- fprintf(stderr, "Fluid not found, using default.\n");
- }
+ outf_error ("Fluid not found, using default.\n");
return (MEMORY_LOC (trap, TRAP_EXTRA));
}
long result;
if (Define_Debug)
- {
- fprintf(stderr,
- "\n;; Local_Set: defining %s.",
- (STRING_LOC ((MEMORY_REF (sym, SYMBOL_NAME)), 0)));
- }
+ outf_error ("\n;; Local_Set: defining %s.",
+ (STRING_LOC ((MEMORY_REF (sym, SYMBOL_NAME)), 0)));
result = (extend_frame (env, sym, value, env, true));
Val = sym;
return (result);
/* We've lost BIG. */
if (temp == PRIM_INTERRUPT)
- fprintf (stderr,
- "\ncompiler_recache: Ran out of guaranteed space!\n");
+ outf_fatal ("\ncompiler_recache: Ran out of guaranteed space!\n");
else if (temp > 0)
- fprintf (stderr,
- "\ncompiler_recache: Unexpected error value %d (%s)\n",
- temp, Abort_Names[temp]);
+ outf_fatal ("\ncompiler_recache: Unexpected error value %d (%s)\n",
+ temp, Abort_Names[temp]);
else
- fprintf (stderr,
- "\ncompiler_recache: Unexpected abort value %d (%s)\n",
- -temp, Abort_Names[(-temp) - 1]);
+ outf_fatal ("\ncompiler_recache: Unexpected abort value %d (%s)\n",
+ -temp, Abort_Names[(-temp) - 1]);
Microcode_Termination (TERM_EXIT);
}
}