2016-10-22 18:51:32 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
* Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2016-10-22 18:51:32 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2016-10-22 18:51:32 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2016-10-22 18:51:32 +00:00
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2016-10-22 18:51:32 +00:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2016-10-22 18:51:32 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
#include "mes/lib.h"
|
|
|
|
#include "mes/mes.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
core: Remove struct definitions for builtins, drop snarfing.
After making a change to the list of builtin functions, run
cat src/*.i
and move the into
src/mes.c:mes_builtins ()
and, or also after changing the list of fixed symbols in src/mes.c:mes_symbols (), do
cat src/*.h > src/builtins.h
* build-aux/build.sh.in: Remove snarfing.
* build-aux/bootstrap.sh.in: Likewise.
* mes/module/mes/display.mes (display):
* mes/module/mes/type-0.mes (cell:type-alist): Remove <cell:function>.
(function?, builtin?): Remove.
* src/builtins.h: New file.
* src/mes.c (TFUNCTION): Remove.
(struct function): Remove.
(apply_builtin): Rewrite from call.
(mes_builtins): Rewrite.
(init_builtin, make_builtin_type, make_builtin, builtin_name,
builtin_arity, builtin, builtin_p, builtin_printer): New function.
2019-01-04 08:55:16 +00:00
|
|
|
|
mini-mes: Merge with mes.c: lib.c, math.c, posix.c.
* mes.c: Include math.c after posix.c.
(assert_defined, check_formals, check_apply, load_env,
bload_env): Move from lib.c
* scaffold/mini-mes.c: Include mini-lib.h, lib.c., mini-math.h,
math.c, mini-posix.h, posix.c.
(greater_p, less_p, is_p, minus, plus, divide, modulo, multiply,
logior, ash): Remove.
(ungetchar, peekchar, peek_byte, read_byte, write_byte,
string_to_cstring, getenv_, open_input_file, current_input_port,
set_current_input_port, force_output): Remove.
(mes_builtins): include mini-lib.i, mini-lib.environment.i.
mini-math.i, mini-math.environment.i mini-posix.i,
mini-posix.environment.i.
* GNUmakefile (guile-mini-mes): Add dependencies.
2017-04-08 13:01:24 +00:00
|
|
|
int g_depth;
|
2017-05-23 05:16:08 +00:00
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
display_helper (SCM x, int cont, char *sep, int fd, int write_p)
|
2017-03-25 14:58:44 +00:00
|
|
|
{
|
2018-05-29 16:15:22 +00:00
|
|
|
fdputs (sep, fd);
|
2018-04-05 19:35:31 +00:00
|
|
|
if (g_depth == 0)
|
|
|
|
return cell_unspecified;
|
2017-03-25 14:58:44 +00:00
|
|
|
g_depth = g_depth - 1;
|
2018-05-29 16:15:22 +00:00
|
|
|
|
2018-08-12 14:41:07 +00:00
|
|
|
int t = TYPE (x);
|
|
|
|
if (t == TCHAR)
|
2017-03-25 14:58:44 +00:00
|
|
|
{
|
2018-08-12 14:41:07 +00:00
|
|
|
if (!write_p)
|
|
|
|
fdputc (VALUE (x), fd);
|
|
|
|
else
|
|
|
|
{
|
2018-11-11 15:25:36 +00:00
|
|
|
fdputs ("#", fd);
|
2018-10-04 19:43:45 +00:00
|
|
|
long v = VALUE (x);
|
2019-05-18 11:27:42 +00:00
|
|
|
if (v == '\0')
|
|
|
|
fdputs ("\\nul", fd);
|
|
|
|
else if (v == '\a')
|
|
|
|
fdputs ("\\alarm", fd);
|
|
|
|
else if (v == '\b')
|
|
|
|
fdputs ("\\backspace", fd);
|
|
|
|
else if (v == '\t')
|
|
|
|
fdputs ("\\tab", fd);
|
|
|
|
else if (v == '\n')
|
|
|
|
fdputs ("\\newline", fd);
|
|
|
|
else if (v == '\v')
|
|
|
|
fdputs ("\\vtab", fd);
|
|
|
|
else if (v == '\f')
|
|
|
|
fdputs ("\\page", fd);
|
2018-08-12 14:41:07 +00:00
|
|
|
//Nyacc bug
|
|
|
|
// else if (v == '\r') fdputs ("return", fd);
|
2019-05-18 11:27:42 +00:00
|
|
|
else if (v == 13)
|
|
|
|
fdputs ("\\return", fd);
|
|
|
|
else if (v == ' ')
|
|
|
|
fdputs ("\\space", fd);
|
2018-11-11 15:25:36 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (v >= 32 && v <= 127)
|
|
|
|
fdputc ('\\', fd);
|
|
|
|
fdputc (VALUE (x), fd);
|
|
|
|
}
|
2018-08-12 14:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (t == TCLOSURE)
|
|
|
|
{
|
|
|
|
fdputs ("#<closure ", fd);
|
2018-10-20 18:01:45 +00:00
|
|
|
SCM circ = CADR (x);
|
|
|
|
SCM name = CADR (circ);
|
|
|
|
SCM args = CAR (CDDR (x));
|
|
|
|
display_helper (CAR (name), 0, "", fd, 0);
|
|
|
|
fdputc (' ', fd);
|
|
|
|
display_helper (args, 0, "", fd, 0);
|
2018-08-12 14:41:07 +00:00
|
|
|
fdputs (">", fd);
|
|
|
|
}
|
|
|
|
else if (t == TMACRO)
|
|
|
|
{
|
|
|
|
fdputs ("#<macro ", fd);
|
|
|
|
display_helper (CDR (x), cont, "", fd, 0);
|
|
|
|
fdputs (">", fd);
|
|
|
|
}
|
|
|
|
else if (t == TVARIABLE)
|
|
|
|
{
|
|
|
|
fdputs ("#<variable ", fd);
|
|
|
|
display_helper (CAR (VARIABLE (x)), cont, "", fd, 0);
|
|
|
|
fdputs (">", fd);
|
|
|
|
}
|
|
|
|
else if (t == TNUMBER)
|
|
|
|
{
|
|
|
|
fdputs (itoa (VALUE (x)), fd);
|
|
|
|
}
|
|
|
|
else if (t == TPAIR)
|
|
|
|
{
|
|
|
|
if (!cont)
|
|
|
|
fdputs ("(", fd);
|
2019-05-18 11:27:42 +00:00
|
|
|
if (CAR (x) == cell_circular && CADR (x) != cell_closure)
|
2018-08-12 14:41:07 +00:00
|
|
|
{
|
|
|
|
fdputs ("(*circ* . ", fd);
|
|
|
|
int i = 0;
|
|
|
|
x = CDR (x);
|
|
|
|
while (x != cell_nil && i++ < 10)
|
|
|
|
{
|
2019-05-18 11:27:42 +00:00
|
|
|
fdisplay_ (CAAR (x), fd, write_p);
|
|
|
|
fdputs (" ", fd);
|
2018-08-12 14:41:07 +00:00
|
|
|
x = CDR (x);
|
|
|
|
}
|
|
|
|
fdputs (" ...)", fd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x && x != cell_nil)
|
|
|
|
fdisplay_ (CAR (x), fd, write_p);
|
|
|
|
if (CDR (x) && TYPE (CDR (x)) == TPAIR)
|
|
|
|
display_helper (CDR (x), 1, " ", fd, write_p);
|
|
|
|
else if (CDR (x) && CDR (x) != cell_nil)
|
|
|
|
{
|
|
|
|
if (TYPE (CDR (x)) != TPAIR)
|
|
|
|
fdputs (" . ", fd);
|
|
|
|
fdisplay_ (CDR (x), fd, write_p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!cont)
|
|
|
|
fdputs (")", fd);
|
|
|
|
}
|
2019-05-18 11:27:42 +00:00
|
|
|
else if (t == TKEYWORD || t == TPORT || t == TSPECIAL || t == TSTRING || t == TSYMBOL)
|
2018-08-12 14:41:07 +00:00
|
|
|
{
|
2018-11-11 15:25:36 +00:00
|
|
|
if (t == TPORT)
|
2018-08-12 14:41:07 +00:00
|
|
|
{
|
|
|
|
fdputs ("#<port ", fd);
|
|
|
|
fdputs (itoa (PORT (x)), fd);
|
2019-05-18 11:27:42 +00:00
|
|
|
fdputs (" ", fd);
|
2018-11-11 15:25:36 +00:00
|
|
|
x = STRING (x);
|
2018-08-12 14:41:07 +00:00
|
|
|
}
|
2018-11-11 15:25:36 +00:00
|
|
|
if (t == TKEYWORD)
|
2018-08-12 14:41:07 +00:00
|
|
|
fdputs ("#:", fd);
|
2018-11-11 15:25:36 +00:00
|
|
|
if ((write_p && t == TSTRING) || t == TPORT)
|
2018-08-12 14:41:07 +00:00
|
|
|
fdputc ('"', fd);
|
2018-11-11 15:25:36 +00:00
|
|
|
char const *s = CSTRING (x);
|
|
|
|
#if 0
|
|
|
|
s += START (x);
|
|
|
|
size_t length = LEN (x);
|
|
|
|
#else
|
|
|
|
size_t length = LENGTH (x);
|
|
|
|
#endif
|
2019-05-18 11:27:42 +00:00
|
|
|
for (size_t i = 0; i < length; i++)
|
2018-08-12 14:41:07 +00:00
|
|
|
{
|
2018-11-11 15:25:36 +00:00
|
|
|
long v = write_p ? s[i] : -1;
|
2019-05-18 11:27:42 +00:00
|
|
|
if (v == '\0')
|
|
|
|
fdputs ("\\0", fd);
|
|
|
|
else if (v == '\a')
|
|
|
|
fdputs ("\\a", fd);
|
|
|
|
else if (v == '\b')
|
|
|
|
fdputs ("\\b", fd);
|
|
|
|
else if (v == '\t')
|
|
|
|
fdputs ("\\t", fd);
|
|
|
|
else if (v == '\v')
|
|
|
|
fdputs ("\\v", fd);
|
|
|
|
else if (v == '\n')
|
|
|
|
fdputs ("\\n", fd);
|
|
|
|
else if (v == '\f')
|
|
|
|
fdputs ("\\f", fd);
|
|
|
|
#if 1 //__MESC__
|
|
|
|
//Nyacc bug
|
|
|
|
else if (v == 13)
|
|
|
|
fdputs ("\\r", fd);
|
|
|
|
else if (v == 27)
|
|
|
|
fdputs ("\\e", fd);
|
2018-04-21 21:58:28 +00:00
|
|
|
#else
|
2018-08-12 14:41:07 +00:00
|
|
|
//else if (v == '\r') fdputs ("\\r", fd);
|
|
|
|
//Nyacc crash
|
|
|
|
//else if (v == '\e') fdputs ("\\e", fd);
|
2018-04-21 21:58:28 +00:00
|
|
|
#endif
|
2019-05-18 11:27:42 +00:00
|
|
|
else if (v == '\\')
|
|
|
|
fdputs ("\\\\", fd);
|
|
|
|
else if (v == '"')
|
|
|
|
fdputs ("\\\"", fd);
|
|
|
|
else
|
|
|
|
fdputc (s[i], fd);
|
2018-08-12 14:41:07 +00:00
|
|
|
}
|
2018-11-11 15:25:36 +00:00
|
|
|
if ((write_p && t == TSTRING) || t == TPORT)
|
2018-08-12 14:41:07 +00:00
|
|
|
fdputc ('"', fd);
|
2018-11-11 15:25:36 +00:00
|
|
|
if (t == TPORT)
|
2018-05-29 16:15:22 +00:00
|
|
|
fdputs (">", fd);
|
2018-08-12 14:41:07 +00:00
|
|
|
}
|
2018-10-13 15:34:27 +00:00
|
|
|
else if (t == TREF)
|
|
|
|
fdisplay_ (REF (x), fd, write_p);
|
|
|
|
else if (t == TSTRUCT)
|
|
|
|
{
|
core: Remove struct definitions for builtins, drop snarfing.
After making a change to the list of builtin functions, run
cat src/*.i
and move the into
src/mes.c:mes_builtins ()
and, or also after changing the list of fixed symbols in src/mes.c:mes_symbols (), do
cat src/*.h > src/builtins.h
* build-aux/build.sh.in: Remove snarfing.
* build-aux/bootstrap.sh.in: Likewise.
* mes/module/mes/display.mes (display):
* mes/module/mes/type-0.mes (cell:type-alist): Remove <cell:function>.
(function?, builtin?): Remove.
* src/builtins.h: New file.
* src/mes.c (TFUNCTION): Remove.
(struct function): Remove.
(apply_builtin): Rewrite from call.
(mes_builtins): Rewrite.
(init_builtin, make_builtin_type, make_builtin, builtin_name,
builtin_arity, builtin, builtin_p, builtin_printer): New function.
2019-01-04 08:55:16 +00:00
|
|
|
//SCM printer = STRUCT (x) + 1;
|
|
|
|
SCM printer = struct_ref_ (x, STRUCT_PRINTER);
|
2018-10-13 15:34:27 +00:00
|
|
|
if (TYPE (printer) == TREF)
|
|
|
|
printer = REF (printer);
|
2019-05-18 11:27:42 +00:00
|
|
|
if (TYPE (printer) == TCLOSURE || builtin_p (printer) == cell_t)
|
2018-10-13 15:34:27 +00:00
|
|
|
apply (printer, cons (x, cell_nil), r0);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fdputs ("#<", fd);
|
|
|
|
fdisplay_ (STRUCT (x), fd, write_p);
|
|
|
|
SCM t = CAR (x);
|
|
|
|
long size = LENGTH (x);
|
2019-05-18 11:27:42 +00:00
|
|
|
for (long i = 2; i < size; i++)
|
2018-10-13 15:34:27 +00:00
|
|
|
{
|
|
|
|
fdputc (' ', fd);
|
|
|
|
fdisplay_ (STRUCT (x) + i, fd, write_p);
|
|
|
|
}
|
|
|
|
fdputc ('>', fd);
|
|
|
|
}
|
|
|
|
}
|
2018-08-12 14:41:07 +00:00
|
|
|
else if (t == TVECTOR)
|
|
|
|
{
|
|
|
|
fdputs ("#(", fd);
|
|
|
|
SCM t = CAR (x);
|
2019-05-18 11:27:42 +00:00
|
|
|
for (long i = 0; i < LENGTH (x); i++)
|
2018-08-12 14:41:07 +00:00
|
|
|
{
|
|
|
|
if (i)
|
|
|
|
fdputc (' ', fd);
|
|
|
|
fdisplay_ (VECTOR (x) + i, fd, write_p);
|
|
|
|
}
|
|
|
|
fdputc (')', fd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fdputs ("<", fd);
|
2018-11-11 15:25:36 +00:00
|
|
|
fdputs (itoa (t), fd);
|
2018-08-12 14:41:07 +00:00
|
|
|
fdputs (":", fd);
|
|
|
|
fdputs (itoa (x), fd);
|
|
|
|
fdputs (">", fd);
|
2017-03-25 14:58:44 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
display_ (SCM x)
|
|
|
|
{
|
|
|
|
g_depth = 5;
|
2019-03-02 11:35:18 +00:00
|
|
|
return display_helper (x, 0, "", __stdout, 0);
|
2017-03-25 14:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
display_error_ (SCM x)
|
|
|
|
{
|
|
|
|
g_depth = 5;
|
2019-03-02 11:35:18 +00:00
|
|
|
return display_helper (x, 0, "", __stderr, 0);
|
2017-03-25 14:58:44 +00:00
|
|
|
}
|
|
|
|
|
2018-01-01 14:53:13 +00:00
|
|
|
SCM
|
|
|
|
display_port_ (SCM x, SCM p)
|
|
|
|
{
|
|
|
|
assert (TYPE (p) == TNUMBER);
|
2018-01-01 20:10:15 +00:00
|
|
|
return fdisplay_ (x, VALUE (p), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
write_ (SCM x)
|
|
|
|
{
|
|
|
|
g_depth = 5;
|
2019-03-02 11:35:18 +00:00
|
|
|
return display_helper (x, 0, "", __stdout, 1);
|
2018-01-01 20:10:15 +00:00
|
|
|
}
|
|
|
|
|
2018-01-07 15:08:11 +00:00
|
|
|
SCM
|
|
|
|
write_error_ (SCM x)
|
|
|
|
{
|
|
|
|
g_depth = 5;
|
2019-03-02 11:35:18 +00:00
|
|
|
return display_helper (x, 0, "", __stderr, 1);
|
2018-01-07 15:08:11 +00:00
|
|
|
}
|
|
|
|
|
2018-01-01 20:10:15 +00:00
|
|
|
SCM
|
|
|
|
write_port_ (SCM x, SCM p)
|
|
|
|
{
|
|
|
|
assert (TYPE (p) == TNUMBER);
|
|
|
|
return fdisplay_ (x, VALUE (p), 1);
|
2018-01-01 14:53:13 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
fdisplay_ (SCM x, int fd, int write_p) ///((internal))
|
2017-03-25 14:58:44 +00:00
|
|
|
{
|
|
|
|
g_depth = 5;
|
2018-01-01 20:10:15 +00:00
|
|
|
return display_helper (x, 0, "", fd, write_p);
|
2017-03-25 14:58:44 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
exit_ (SCM x) ///((name . "exit"))
|
2016-10-22 18:51:32 +00:00
|
|
|
{
|
core+mini-mes: Replace manual snippets by snarfed includes.
* build-aux/mes-snarf.scm (symbol->source, function->header,
function->source, function->environment): Add workarounds to
avoid struct-copy initializers.
* GNUmakefile (mini-mes): Snarf symbols and functions.
* scaffold/mini-mes.c: Include mini-mes.h, mini-mes.symbols.h,
mini-mes.symbols.i, mini-mes.i, mini-mes.environment.i.
Add snarfable symbol/special definitions.
(type_t): Prefix all types with `T', update users.
(assert_defined, gc_push_frame, gc_peek_frame, gc_init_cells): Mark
as internal.
* mes.c (type_t): Prefix all types with `T', update users.
* scaffold/mini-mes.c (eq_p, type_, car_, cdr_,
list_of_char_equal_p, lookup_macro, write_byte): New functions (from
mes.c).
(assq): Add debugging, workaround.
2017-03-10 19:56:18 +00:00
|
|
|
assert (TYPE (x) == TNUMBER);
|
2016-11-21 08:30:59 +00:00
|
|
|
exit (VALUE (x));
|
2016-10-22 18:51:32 +00:00
|
|
|
}
|
2016-12-24 00:23:50 +00:00
|
|
|
|
2018-10-20 16:23:20 +00:00
|
|
|
SCM
|
|
|
|
frame_printer (SCM frame)
|
|
|
|
{
|
2019-05-18 11:27:42 +00:00
|
|
|
fdputs ("#<", __stdout);
|
|
|
|
display_ (struct_ref_ (frame, 2));
|
2019-03-02 11:35:18 +00:00
|
|
|
fdputc (' ', __stdout);
|
2019-05-18 11:27:42 +00:00
|
|
|
fdputs ("procedure: ", __stdout);
|
|
|
|
display_ (struct_ref_ (frame, 3));
|
2019-03-02 11:35:18 +00:00
|
|
|
fdputc ('>', __stdout);
|
2018-10-20 16:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
make_frame_type () ///((internal))
|
2018-10-20 16:23:20 +00:00
|
|
|
{
|
2019-05-18 11:27:42 +00:00
|
|
|
SCM record_type = cell_symbol_record_type; // FIXME
|
2018-10-20 16:23:20 +00:00
|
|
|
SCM fields = cell_nil;
|
|
|
|
fields = cons (cell_symbol_procedure, fields);
|
|
|
|
fields = cons (fields, cell_nil);
|
|
|
|
fields = cons (cell_symbol_frame, fields);
|
|
|
|
return make_struct (record_type, fields, cell_unspecified);
|
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
make_frame (SCM stack, long index)
|
|
|
|
{
|
|
|
|
SCM frame_type = make_frame_type ();
|
2019-05-18 11:27:42 +00:00
|
|
|
long array_index = (STACK_SIZE - (index * FRAME_SIZE));
|
|
|
|
SCM procedure = g_stack_array[array_index + FRAME_PROCEDURE];
|
2018-10-20 16:23:20 +00:00
|
|
|
if (!procedure)
|
|
|
|
procedure = cell_f;
|
|
|
|
SCM values = cell_nil;
|
|
|
|
values = cons (procedure, values);
|
|
|
|
values = cons (cell_symbol_frame, values);
|
core: Remove struct definitions for builtins, drop snarfing.
After making a change to the list of builtin functions, run
cat src/*.i
and move the into
src/mes.c:mes_builtins ()
and, or also after changing the list of fixed symbols in src/mes.c:mes_symbols (), do
cat src/*.h > src/builtins.h
* build-aux/build.sh.in: Remove snarfing.
* build-aux/bootstrap.sh.in: Likewise.
* mes/module/mes/display.mes (display):
* mes/module/mes/type-0.mes (cell:type-alist): Remove <cell:function>.
(function?, builtin?): Remove.
* src/builtins.h: New file.
* src/mes.c (TFUNCTION): Remove.
(struct function): Remove.
(apply_builtin): Rewrite from call.
(mes_builtins): Rewrite.
(init_builtin, make_builtin_type, make_builtin, builtin_name,
builtin_arity, builtin, builtin_p, builtin_printer): New function.
2019-01-04 08:55:16 +00:00
|
|
|
return make_struct (frame_type, values, cstring_to_symbol ("frame-printer"));
|
2018-10-20 16:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
make_stack_type () ///((internal))
|
2018-10-20 16:23:20 +00:00
|
|
|
{
|
2019-05-18 11:27:42 +00:00
|
|
|
SCM record_type = cell_symbol_record_type; // FIXME
|
2018-10-20 16:23:20 +00:00
|
|
|
SCM fields = cell_nil;
|
|
|
|
fields = cons (cstring_to_symbol ("frames"), fields);
|
|
|
|
fields = cons (fields, cell_nil);
|
|
|
|
fields = cons (cell_symbol_stack, fields);
|
|
|
|
return make_struct (record_type, fields, cell_unspecified);
|
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
make_stack (SCM stack) ///((arity . n))
|
2018-10-20 16:23:20 +00:00
|
|
|
{
|
|
|
|
SCM stack_type = make_stack_type ();
|
2019-05-18 11:27:42 +00:00
|
|
|
long size = (STACK_SIZE - g_stack) / FRAME_SIZE;
|
2018-10-20 16:23:20 +00:00
|
|
|
SCM frames = make_vector__ (size);
|
2019-05-18 11:27:42 +00:00
|
|
|
for (long i = 0; i < size; i++)
|
2018-10-20 16:23:20 +00:00
|
|
|
{
|
|
|
|
SCM frame = make_frame (stack, i);
|
|
|
|
vector_set_x_ (frames, i, frame);
|
|
|
|
}
|
|
|
|
SCM values = cell_nil;
|
|
|
|
values = cons (frames, values);
|
|
|
|
values = cons (cell_symbol_stack, values);
|
|
|
|
return make_struct (stack_type, values, cell_unspecified);
|
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
stack_length (SCM stack)
|
|
|
|
{
|
|
|
|
SCM frames = struct_ref_ (stack, 3);
|
|
|
|
return vector_length (frames);
|
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
stack_ref (SCM stack, SCM index)
|
|
|
|
{
|
|
|
|
SCM frames = struct_ref_ (stack, 3);
|
|
|
|
return vector_ref (frames, index);
|
|
|
|
}
|
|
|
|
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
xassq (SCM x, SCM a) ///for speed in core only
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
{
|
2018-04-05 19:35:31 +00:00
|
|
|
while (a != cell_nil && x != CDAR (a))
|
|
|
|
a = CDR (a);
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
return a != cell_nil ? CAR (a) : cell_f;
|
|
|
|
}
|
2018-04-05 09:03:09 +00:00
|
|
|
|
|
|
|
SCM
|
|
|
|
memq (SCM x, SCM a)
|
|
|
|
{
|
2018-08-12 14:41:07 +00:00
|
|
|
int t = TYPE (x);
|
2019-05-18 11:27:42 +00:00
|
|
|
if (t == TCHAR || t == TNUMBER)
|
|
|
|
{
|
|
|
|
SCM v = VALUE (x);
|
|
|
|
while (a != cell_nil && v != VALUE (CAR (a)))
|
2018-04-05 19:35:31 +00:00
|
|
|
a = CDR (a);
|
2019-05-18 11:27:42 +00:00
|
|
|
}
|
|
|
|
else if (t == TKEYWORD)
|
|
|
|
{
|
|
|
|
while (a != cell_nil && (TYPE (CAR (a)) != TKEYWORD || string_equal_p (x, CAR (a)) == cell_f))
|
|
|
|
a = CDR (a);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
while (a != cell_nil && x != CAR (a))
|
|
|
|
a = CDR (a);
|
2018-04-05 09:03:09 +00:00
|
|
|
return a != cell_nil ? a : cell_f;
|
|
|
|
}
|
|
|
|
|
2018-04-05 18:01:04 +00:00
|
|
|
SCM
|
|
|
|
equal2_p (SCM a, SCM b)
|
|
|
|
{
|
2019-05-18 11:27:42 +00:00
|
|
|
equal2:
|
2018-04-24 04:59:18 +00:00
|
|
|
if (a == b)
|
2018-04-05 18:01:04 +00:00
|
|
|
return cell_t;
|
|
|
|
if (TYPE (a) == TPAIR && TYPE (b) == TPAIR)
|
2018-04-24 04:59:18 +00:00
|
|
|
{
|
|
|
|
if (equal2_p (CAR (a), CAR (b)) == cell_t)
|
|
|
|
{
|
|
|
|
a = CDR (a);
|
|
|
|
b = CDR (b);
|
|
|
|
goto equal2;
|
|
|
|
}
|
|
|
|
return cell_f;
|
|
|
|
}
|
2018-04-05 18:01:04 +00:00
|
|
|
if (TYPE (a) == TSTRING && TYPE (b) == TSTRING)
|
2018-11-11 15:25:36 +00:00
|
|
|
return string_equal_p (a, b);
|
2018-04-05 18:01:04 +00:00
|
|
|
if (TYPE (a) == TVECTOR && TYPE (b) == TVECTOR)
|
|
|
|
{
|
|
|
|
if (LENGTH (a) != LENGTH (b))
|
|
|
|
return cell_f;
|
2019-05-18 11:27:42 +00:00
|
|
|
for (long i = 0; i < LENGTH (a); i++)
|
2018-04-05 18:01:04 +00:00
|
|
|
{
|
|
|
|
SCM ai = VECTOR (a) + i;
|
|
|
|
SCM bi = VECTOR (b) + i;
|
|
|
|
if (TYPE (ai) == TREF)
|
|
|
|
ai = REF (ai);
|
|
|
|
if (TYPE (bi) == TREF)
|
|
|
|
bi = REF (bi);
|
|
|
|
if (equal2_p (ai, bi) == cell_f)
|
|
|
|
return cell_f;
|
|
|
|
}
|
|
|
|
return cell_t;
|
|
|
|
}
|
|
|
|
return eq_p (a, b);
|
|
|
|
}
|
2018-04-24 05:00:35 +00:00
|
|
|
|
|
|
|
SCM
|
|
|
|
last_pair (SCM x)
|
|
|
|
{
|
|
|
|
while (x != cell_nil && CDR (x) != cell_nil)
|
|
|
|
x = CDR (x);
|
|
|
|
return x;
|
|
|
|
}
|
2018-10-18 18:06:10 +00:00
|
|
|
|
|
|
|
SCM
|
|
|
|
pair_p (SCM x)
|
|
|
|
{
|
|
|
|
return TYPE (x) == TPAIR ? cell_t : cell_f;
|
|
|
|
}
|