2016-10-17 16:26:07 +00:00
|
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2016-05-28 14:39:44 +00:00
|
|
|
|
* Mes --- Maxwell Equations of Software
|
|
|
|
|
* Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
|
*
|
|
|
|
|
* This file is part of Mes.
|
|
|
|
|
*
|
|
|
|
|
* Mes is free software; you can redistribute it and/or modify it
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
* Mes is distributed in the hope that it will be useful, but
|
|
|
|
|
* 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
|
|
|
|
|
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <ctype.h>
|
2016-12-11 07:23:15 +00:00
|
|
|
|
#include <errno.h>
|
2016-07-24 13:26:49 +00:00
|
|
|
|
#include <limits.h>
|
2016-05-28 14:39:44 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
2016-05-15 22:07:44 +00:00
|
|
|
|
#define DEBUG 0
|
2016-11-21 20:43:06 +00:00
|
|
|
|
#define FIXED_PRIMITIVES 1
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
|
2016-12-11 07:23:15 +00:00
|
|
|
|
int ARENA_SIZE = 100000;
|
2016-12-11 17:41:08 +00:00
|
|
|
|
int MAX_ARENA_SIZE = 20000000;
|
2016-12-11 07:23:15 +00:00
|
|
|
|
int GC_SAFETY = 100;
|
2016-05-15 22:07:44 +00:00
|
|
|
|
|
2016-12-14 18:02:19 +00:00
|
|
|
|
typedef int SCM;
|
2016-12-23 17:48:36 +00:00
|
|
|
|
enum type_t {CHAR, CLOSURE, FUNCTION, KEYWORD, MACRO, NUMBER, PAIR, REF, SPECIAL, STRING, SYMBOL, VALUES, VECTOR, BROKEN_HEART};
|
2016-11-21 08:28:34 +00:00
|
|
|
|
typedef SCM (*function0_t) (void);
|
|
|
|
|
typedef SCM (*function1_t) (SCM);
|
|
|
|
|
typedef SCM (*function2_t) (SCM, SCM);
|
|
|
|
|
typedef SCM (*function3_t) (SCM, SCM, SCM);
|
|
|
|
|
typedef SCM (*functionn_t) (SCM);
|
2016-11-03 20:28:05 +00:00
|
|
|
|
typedef struct function_t {
|
|
|
|
|
union {
|
|
|
|
|
function0_t function0;
|
|
|
|
|
function1_t function1;
|
|
|
|
|
function2_t function2;
|
|
|
|
|
function3_t function3;
|
|
|
|
|
functionn_t functionn;
|
|
|
|
|
};
|
|
|
|
|
int arity;
|
|
|
|
|
} function;
|
|
|
|
|
struct scm_t;
|
2016-05-28 14:39:44 +00:00
|
|
|
|
typedef struct scm_t {
|
2016-11-21 08:28:34 +00:00
|
|
|
|
enum type_t type;
|
2016-05-28 14:39:44 +00:00
|
|
|
|
union {
|
2016-10-08 08:14:17 +00:00
|
|
|
|
char const *name;
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM string;
|
|
|
|
|
SCM car;
|
|
|
|
|
SCM ref;
|
2016-07-11 08:38:02 +00:00
|
|
|
|
int length;
|
2016-05-28 14:39:44 +00:00
|
|
|
|
};
|
|
|
|
|
union {
|
|
|
|
|
int value;
|
2016-11-19 21:31:30 +00:00
|
|
|
|
int function;
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM cdr;
|
2016-12-23 17:48:36 +00:00
|
|
|
|
SCM closure;
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM macro;
|
|
|
|
|
SCM vector;
|
2016-10-26 17:44:36 +00:00
|
|
|
|
int hits;
|
2016-05-28 14:39:44 +00:00
|
|
|
|
};
|
|
|
|
|
} scm;
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
scm scm_nil = {SPECIAL, "()"};
|
|
|
|
|
scm scm_f = {SPECIAL, "#f"};
|
|
|
|
|
scm scm_t = {SPECIAL, "#t"};
|
|
|
|
|
scm scm_dot = {SPECIAL, "."};
|
2016-12-16 19:18:38 +00:00
|
|
|
|
scm scm_arrow = {SPECIAL, "=>"};
|
2016-11-21 08:28:34 +00:00
|
|
|
|
scm scm_undefined = {SPECIAL, "*undefined*"};
|
|
|
|
|
scm scm_unspecified = {SPECIAL, "*unspecified*"};
|
|
|
|
|
scm scm_closure = {SPECIAL, "*closure*"};
|
|
|
|
|
scm scm_circular = {SPECIAL, "*circular*"};
|
2016-12-23 09:38:41 +00:00
|
|
|
|
scm scm_label = {SPECIAL, "label"};
|
2016-11-21 08:28:34 +00:00
|
|
|
|
scm scm_begin = {SPECIAL, "*begin*"};
|
|
|
|
|
|
2016-12-23 16:02:23 +00:00
|
|
|
|
scm scm_symbol_dot = {SYMBOL, "*dot*"};
|
2016-11-21 08:28:34 +00:00
|
|
|
|
scm scm_symbol_lambda = {SYMBOL, "lambda"};
|
|
|
|
|
scm scm_symbol_begin = {SYMBOL, "begin"};
|
|
|
|
|
scm scm_symbol_if = {SYMBOL, "if"};
|
|
|
|
|
scm scm_symbol_set_x = {SYMBOL, "set!"};
|
|
|
|
|
|
|
|
|
|
scm scm_symbol_quote = {SYMBOL, "quote"};
|
|
|
|
|
|
|
|
|
|
scm scm_symbol_sc_expand = {SYMBOL, "sc-expand"};
|
2016-12-22 15:34:28 +00:00
|
|
|
|
scm scm_symbol_macro_expand = {SYMBOL, "macro-expand"};
|
2016-11-21 08:28:34 +00:00
|
|
|
|
scm scm_symbol_sc_expander_alist = {SYMBOL, "*sc-expander-alist*"};
|
|
|
|
|
|
|
|
|
|
scm scm_symbol_call_with_values = {SYMBOL, "call-with-values"};
|
|
|
|
|
scm scm_symbol_current_module = {SYMBOL, "current-module"};
|
|
|
|
|
scm scm_symbol_primitive_load = {SYMBOL, "primitive-load"};
|
2016-12-13 18:58:34 +00:00
|
|
|
|
scm scm_symbol_read_input_file = {SYMBOL, "read-input-file"};
|
2016-12-24 21:16:53 +00:00
|
|
|
|
scm scm_symbol_write = {SYMBOL, "write"};
|
2016-12-24 00:23:50 +00:00
|
|
|
|
scm scm_symbol_display = {SYMBOL, "display"};
|
2016-05-28 14:39:44 +00:00
|
|
|
|
|
2016-11-21 20:43:06 +00:00
|
|
|
|
scm scm_symbol_car = {SYMBOL, "car"};
|
|
|
|
|
scm scm_symbol_cdr = {SYMBOL, "cdr"};
|
|
|
|
|
scm scm_symbol_null_p = {SYMBOL, "null?"};
|
|
|
|
|
scm scm_symbol_eq_p = {SYMBOL, "eq?"};
|
|
|
|
|
scm scm_symbol_cons = {SYMBOL, "cons"};
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
scm g_free = {NUMBER, .value=0};
|
|
|
|
|
scm *g_cells;
|
|
|
|
|
scm *g_news = 0;
|
2016-05-15 22:07:44 +00:00
|
|
|
|
|
2016-12-14 18:02:19 +00:00
|
|
|
|
#include "mes.symbols.h"
|
|
|
|
|
|
|
|
|
|
SCM tmp;
|
|
|
|
|
SCM tmp_num;
|
|
|
|
|
SCM tmp_num2;
|
|
|
|
|
SCM tmp_num3;
|
|
|
|
|
SCM tmp_num4;
|
|
|
|
|
|
|
|
|
|
function functions[200];
|
|
|
|
|
int g_function = 0;
|
|
|
|
|
|
|
|
|
|
SCM g_symbols = 0;
|
|
|
|
|
SCM stack = 0;
|
|
|
|
|
SCM r0 = 0; // a/env
|
|
|
|
|
SCM r1 = 0; // param 1
|
|
|
|
|
SCM r2 = 0; // param 2
|
|
|
|
|
SCM r3 = 0; // param 3
|
|
|
|
|
|
|
|
|
|
#include "lib.h"
|
|
|
|
|
#include "math.h"
|
|
|
|
|
#include "mes.h"
|
|
|
|
|
#include "posix.h"
|
|
|
|
|
#include "reader.h"
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
#define CAR(x) g_cells[x].car
|
|
|
|
|
#define CDR(x) g_cells[x].cdr
|
2016-11-21 08:30:59 +00:00
|
|
|
|
#define HITS(x) g_cells[x].hits
|
2016-11-21 08:28:34 +00:00
|
|
|
|
#define LENGTH(x) g_cells[x].length
|
2016-11-21 08:30:59 +00:00
|
|
|
|
#define NAME(x) g_cells[x].name
|
2016-11-21 08:28:34 +00:00
|
|
|
|
#define STRING(x) g_cells[x].string
|
|
|
|
|
#define TYPE(x) g_cells[x].type
|
2016-12-23 17:48:36 +00:00
|
|
|
|
#define CLOSURE(x) g_cells[x].closure
|
2016-11-21 08:28:34 +00:00
|
|
|
|
#define MACRO(x) g_cells[x].macro
|
2016-11-21 08:30:59 +00:00
|
|
|
|
#define REF(x) g_cells[x].ref
|
2016-11-21 08:28:34 +00:00
|
|
|
|
#define VALUE(x) g_cells[x].value
|
|
|
|
|
#define VECTOR(x) g_cells[x].vector
|
2016-11-19 21:31:30 +00:00
|
|
|
|
#define FUNCTION(x) functions[g_cells[x].function]
|
2016-11-21 08:28:34 +00:00
|
|
|
|
#define NCAR(x) g_news[x].car
|
|
|
|
|
#define NTYPE(x) g_news[x].type
|
|
|
|
|
|
2016-11-21 08:30:59 +00:00
|
|
|
|
#define CAAR(x) CAR (CAR (x))
|
|
|
|
|
#define CDAR(x) CDR (CAR (x))
|
|
|
|
|
#define CAAR(x) CAR (CAR (x))
|
|
|
|
|
#define CADAR(x) CAR (CDR (CAR (x)))
|
2016-11-21 20:43:06 +00:00
|
|
|
|
#define CADDR(x) CAR (CDR (CDR (x)))
|
2016-11-21 08:30:59 +00:00
|
|
|
|
#define CDADAR(x) CAR (CDR (CAR (CDR (x))))
|
|
|
|
|
#define CADR(x) CAR (CDR (x))
|
2016-05-28 14:39:44 +00:00
|
|
|
|
|
2016-12-23 15:26:00 +00:00
|
|
|
|
#define MAKE_CHAR(n) make_cell (tmp_num_ (CHAR), 0, tmp_num2_ (n))
|
2016-12-23 15:22:19 +00:00
|
|
|
|
#define MAKE_NUMBER(n) make_cell (tmp_num_ (NUMBER), 0, tmp_num2_ (n))
|
2016-12-24 13:09:48 +00:00
|
|
|
|
#define MAKE_REF(n) make_cell (tmp_num_ (REF), n, 0)
|
|
|
|
|
#define MAKE_STRING(x) make_cell (tmp_num_ (STRING), x, 0)
|
2016-12-23 15:22:19 +00:00
|
|
|
|
|
2016-12-24 11:10:05 +00:00
|
|
|
|
int error (char const* msg, SCM x);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
SCM vm_call (function0_t f, SCM p1, SCM p2, SCM a);
|
2016-10-27 14:44:09 +00:00
|
|
|
|
|
2016-12-23 17:05:45 +00:00
|
|
|
|
SCM
|
|
|
|
|
tmp_num_ (int x)
|
|
|
|
|
{
|
|
|
|
|
g_cells[tmp_num].value = x;
|
|
|
|
|
return tmp_num;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
tmp_num2_ (int x)
|
|
|
|
|
{
|
|
|
|
|
g_cells[tmp_num2].value = x;
|
|
|
|
|
return tmp_num2;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-11-21 08:36:32 +00:00
|
|
|
|
alloc (int n)
|
2016-10-27 14:44:09 +00:00
|
|
|
|
{
|
|
|
|
|
assert (g_free.value + n < ARENA_SIZE);
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM x = g_free.value;
|
2016-10-27 14:44:09 +00:00
|
|
|
|
g_free.value += n;
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
make_cell (SCM type, SCM car, SCM cdr)
|
|
|
|
|
{
|
2016-11-21 08:36:32 +00:00
|
|
|
|
SCM x = alloc (1);
|
2016-11-21 08:30:59 +00:00
|
|
|
|
assert (TYPE (type) == NUMBER);
|
|
|
|
|
TYPE (x) = VALUE (type);
|
2016-11-21 08:28:34 +00:00
|
|
|
|
if (VALUE (type) == CHAR || VALUE (type) == NUMBER) {
|
2016-11-21 08:30:59 +00:00
|
|
|
|
if (car) CAR (x) = CAR (car);
|
|
|
|
|
if (cdr) CDR (x) = CDR (cdr);
|
2016-11-19 21:31:30 +00:00
|
|
|
|
} else if (VALUE (type) == FUNCTION) {
|
2016-11-21 08:30:59 +00:00
|
|
|
|
if (car) CAR (x) = car;
|
|
|
|
|
if (cdr) CDR (x) = CDR (cdr);
|
2016-10-26 17:44:36 +00:00
|
|
|
|
} else {
|
2016-11-21 08:30:59 +00:00
|
|
|
|
CAR (x) = car;
|
|
|
|
|
CDR (x) = cdr;
|
2016-10-26 17:44:36 +00:00
|
|
|
|
}
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
cons (SCM x, SCM y)
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
g_cells[tmp_num].value = PAIR;
|
|
|
|
|
return make_cell (tmp_num, x, y);
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:36:32 +00:00
|
|
|
|
SCM
|
|
|
|
|
car (SCM x)
|
|
|
|
|
{
|
2016-12-24 11:10:05 +00:00
|
|
|
|
if (TYPE (x) != PAIR) error ("car: not pair: ", x);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
return CAR (x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
cdr (SCM x)
|
|
|
|
|
{
|
2016-12-24 11:10:05 +00:00
|
|
|
|
if (TYPE (x) != PAIR) error ("cdr: not pair: ", x);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
return CDR (x);
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-23 17:05:45 +00:00
|
|
|
|
SCM
|
|
|
|
|
type_ (SCM x)
|
|
|
|
|
{
|
|
|
|
|
return MAKE_NUMBER (TYPE (x));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
car_ (SCM x)
|
|
|
|
|
{
|
|
|
|
|
return (TYPE (CAR (x)) == PAIR
|
|
|
|
|
|| TYPE (CAR (x)) == REF
|
|
|
|
|
|| TYPE (CAR (x)) == SYMBOL
|
|
|
|
|
|| TYPE (CAR (x)) == STRING) ? CAR (x) : MAKE_NUMBER (CAR (x));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
cdr_ (SCM x)
|
|
|
|
|
{
|
|
|
|
|
return (TYPE (CDR (x)) == PAIR
|
|
|
|
|
|| TYPE (CDR (x)) == REF
|
|
|
|
|
|| TYPE (CDR (x)) == SYMBOL
|
|
|
|
|
|| TYPE (CDR (x)) == STRING) ? CDR (x) : MAKE_NUMBER (CDR (x));
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
eq_p (SCM x, SCM y)
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
Move optional type predicates to type.c.
* mes.c (char_p, macro_p, number_p, pair_p, string_p, symbol_p,
vector_p, builtin_p, boolean_p): Move to type.c
* type.c: New file.
* GNUmakefile (mes.o): Depend on type snarf output.
* module/mes/loop-0.mes (cond, map, let, or, and not, evlis-env,
apply-env, eval-expand, uquote, add-unquoters, eval,
expand-macro-env, eval-begin-env, eval-if-env, sexp:define,
env:define, env:macro): Move to mes-0.mes.
* module/mes/mes-0.mes: New file.
* module/mes/type-0.mes: New file.
* scripts/include.mes: If BOOT, also include mes-0.mes. If TYPE0,
also include type-0.mes.
2016-10-22 10:16:19 +00:00
|
|
|
|
return (x == y
|
2016-12-16 22:30:33 +00:00
|
|
|
|
|| ((TYPE (x) == KEYWORD && TYPE (y) == KEYWORD
|
|
|
|
|
&& STRING (x) == STRING (y)))
|
2016-11-21 08:30:59 +00:00
|
|
|
|
|| (TYPE (x) == CHAR && TYPE (y) == CHAR
|
2016-11-21 08:28:34 +00:00
|
|
|
|
&& VALUE (x) == VALUE (y))
|
2016-11-21 08:30:59 +00:00
|
|
|
|
|| (TYPE (x) == NUMBER && TYPE (y) == NUMBER
|
2016-11-21 08:28:34 +00:00
|
|
|
|
&& VALUE (x) == VALUE (y)))
|
|
|
|
|
? cell_t : cell_f;
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
set_car_x (SCM x, SCM e)
|
2016-07-24 22:06:18 +00:00
|
|
|
|
{
|
2016-11-21 08:30:59 +00:00
|
|
|
|
assert (TYPE (x) == PAIR);
|
|
|
|
|
CAR (x) = e;
|
2016-11-21 08:28:34 +00:00
|
|
|
|
return cell_unspecified;
|
2016-07-24 22:06:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
set_cdr_x (SCM x, SCM e)
|
2016-07-10 08:43:26 +00:00
|
|
|
|
{
|
2016-12-24 11:10:05 +00:00
|
|
|
|
if (TYPE (x) != PAIR) error ("set-cdr!: not pair: ", x);
|
2016-11-21 08:30:59 +00:00
|
|
|
|
CDR (x) = e;
|
2016-11-21 08:28:34 +00:00
|
|
|
|
return cell_unspecified;
|
2016-07-10 11:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
set_env_x (SCM x, SCM e, SCM a)
|
2016-07-10 11:47:56 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM p = assert_defined (x, assq (x, a));
|
2016-12-24 11:10:05 +00:00
|
|
|
|
if (TYPE (p) != PAIR) error ("set-env!: not pair: ", x);
|
2016-10-30 14:38:27 +00:00
|
|
|
|
return set_cdr_x (p, e);
|
2016-07-10 08:43:26 +00:00
|
|
|
|
}
|
2016-05-28 14:39:44 +00:00
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
pairlis (SCM x, SCM y, SCM a)
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
if (x == cell_nil)
|
2016-05-28 14:39:44 +00:00
|
|
|
|
return a;
|
2016-12-23 17:05:45 +00:00
|
|
|
|
if (TYPE (x) != PAIR)
|
2016-07-08 16:02:06 +00:00
|
|
|
|
return cons (cons (x, y), a);
|
2016-05-28 14:39:44 +00:00
|
|
|
|
return cons (cons (car (x), car (y)),
|
|
|
|
|
pairlis (cdr (x), cdr (y), a));
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
assq (SCM x, SCM a)
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
while (a != cell_nil && eq_p (x, CAAR (a)) == cell_f)
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
{
|
2016-11-21 08:30:59 +00:00
|
|
|
|
if (TYPE (a) == BROKEN_HEART || TYPE (CAR (a)) == BROKEN_HEART)
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
fprintf (stderr, "oops, broken heart\n");
|
2016-11-21 08:30:59 +00:00
|
|
|
|
a = CDR (a);
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
}
|
2016-11-21 08:28:34 +00:00
|
|
|
|
return a != cell_nil ? car (a) : cell_f;
|
2016-10-19 22:11:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
assq_ref_cache (SCM x, SCM a)
|
2016-10-19 22:11:48 +00:00
|
|
|
|
{
|
|
|
|
|
x = assq (x, a);
|
2016-11-21 08:28:34 +00:00
|
|
|
|
if (x == cell_f) return cell_undefined;
|
|
|
|
|
return cdr (x);
|
2016-10-19 22:11:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-22 15:34:28 +00:00
|
|
|
|
enum eval_apply_t {EVLIS, APPLY, EVAL, MACRO_EXPAND, BEGIN, IF, CALL_WITH_VALUES};
|
|
|
|
|
enum eval_apply_t g_target;
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
call_lambda (SCM e, SCM x, SCM aa, SCM a) ///((internal))
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM cl = cons (cons (cell_closure, x), x);
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
r1 = e;
|
|
|
|
|
r0 = cl;
|
|
|
|
|
r2 = a;
|
|
|
|
|
r3 = aa;
|
2016-12-22 15:50:51 +00:00
|
|
|
|
return cell_unspecified;
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-12-22 15:34:28 +00:00
|
|
|
|
eval_apply ()
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
switch (g_target)
|
|
|
|
|
{
|
|
|
|
|
case EVLIS: goto evlis;
|
|
|
|
|
case APPLY: goto apply;
|
|
|
|
|
case EVAL: goto eval;
|
|
|
|
|
case MACRO_EXPAND: goto macro_expand;
|
|
|
|
|
case BEGIN: goto begin;
|
|
|
|
|
case IF: goto label_if;
|
|
|
|
|
case CALL_WITH_VALUES: goto call_with_values;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
evlis:
|
|
|
|
|
if (r1 == cell_nil) return cell_nil;
|
2016-12-22 15:50:51 +00:00
|
|
|
|
if (TYPE (r1) != PAIR) goto eval;
|
2016-12-22 15:34:28 +00:00
|
|
|
|
r2 = eval_env (car (r1), r0);
|
|
|
|
|
r1 = evlis_env (cdr (r1), r0);
|
|
|
|
|
return cons (r2, r1);
|
|
|
|
|
|
|
|
|
|
apply:
|
2016-12-23 17:48:36 +00:00
|
|
|
|
switch (TYPE (r1))
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-12-24 11:10:05 +00:00
|
|
|
|
case FUNCTION: {
|
|
|
|
|
check_formals (r1, MAKE_NUMBER (FUNCTION (r1).arity), r2);
|
|
|
|
|
return call (r1, r2);
|
|
|
|
|
}
|
2016-12-23 17:48:36 +00:00
|
|
|
|
case CLOSURE:
|
2016-12-14 18:02:19 +00:00
|
|
|
|
{
|
2016-12-23 17:48:36 +00:00
|
|
|
|
SCM cl = CLOSURE (r1);
|
2016-12-24 11:10:05 +00:00
|
|
|
|
SCM formals = cadr (cl);
|
2016-12-23 17:48:36 +00:00
|
|
|
|
SCM body = cddr (cl);
|
|
|
|
|
SCM aa = cdar (cl);
|
|
|
|
|
aa = cdr (aa);
|
2016-12-24 11:10:05 +00:00
|
|
|
|
check_formals (r1, formals, r2);
|
|
|
|
|
SCM p = pairlis (formals, r2, aa);
|
2016-12-23 17:48:36 +00:00
|
|
|
|
call_lambda (body, p, aa, r0);
|
|
|
|
|
goto begin;
|
|
|
|
|
}
|
|
|
|
|
case SYMBOL:
|
|
|
|
|
{
|
|
|
|
|
if (r1 == cell_symbol_call_with_values)
|
|
|
|
|
{
|
|
|
|
|
r1 = car (r2);
|
|
|
|
|
r2 = cadr (r2);
|
|
|
|
|
goto call_with_values;
|
|
|
|
|
}
|
|
|
|
|
if (r1 == cell_symbol_current_module) return r0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case PAIR:
|
|
|
|
|
{
|
|
|
|
|
switch (car (r1))
|
|
|
|
|
{
|
|
|
|
|
case cell_symbol_lambda:
|
|
|
|
|
{
|
2016-12-24 11:10:05 +00:00
|
|
|
|
SCM formals = cadr (r1);
|
2016-12-23 17:48:36 +00:00
|
|
|
|
SCM body = cddr (r1);
|
2016-12-24 11:10:05 +00:00
|
|
|
|
SCM p = pairlis (formals, r2, r0);
|
|
|
|
|
check_formals (r1, formals, r2);
|
2016-12-23 17:48:36 +00:00
|
|
|
|
call_lambda (body, p, p, r0);
|
|
|
|
|
goto begin;
|
|
|
|
|
}
|
2016-10-20 16:43:33 +00:00
|
|
|
|
#if BOOT
|
2016-12-23 17:48:36 +00:00
|
|
|
|
case cell_symbol_label:
|
|
|
|
|
{
|
|
|
|
|
r0 = cons (cons (cadr (r1), caddr (r1)), r0);
|
|
|
|
|
r1 = caddr (r1);
|
|
|
|
|
goto apply;
|
|
|
|
|
}
|
2016-10-20 16:43:33 +00:00
|
|
|
|
#endif
|
2016-12-23 17:48:36 +00:00
|
|
|
|
}
|
2016-12-14 18:02:19 +00:00
|
|
|
|
}
|
2016-12-23 17:48:36 +00:00
|
|
|
|
}
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM e = eval_env (r1, r0);
|
2016-12-24 11:10:05 +00:00
|
|
|
|
check_apply (e, r1);
|
2016-12-22 15:50:51 +00:00
|
|
|
|
r1 = e;
|
|
|
|
|
goto apply;
|
2016-05-28 14:39:44 +00:00
|
|
|
|
|
2016-12-22 15:34:28 +00:00
|
|
|
|
eval:
|
2016-11-21 08:30:59 +00:00
|
|
|
|
switch (TYPE (r1))
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-11-03 20:43:01 +00:00
|
|
|
|
case PAIR:
|
|
|
|
|
{
|
2016-12-14 18:02:19 +00:00
|
|
|
|
switch (car (r1))
|
|
|
|
|
{
|
2016-11-21 20:43:06 +00:00
|
|
|
|
#if FIXED_PRIMITIVES
|
2016-12-14 18:02:19 +00:00
|
|
|
|
case cell_symbol_car: return car (eval_env (CADR (r1), r0));
|
|
|
|
|
case cell_symbol_cdr: return cdr (eval_env (CADR (r1), r0));
|
|
|
|
|
case cell_symbol_cons: {SCM m = evlis_env (CDR (r1), r0);
|
|
|
|
|
return cons (CAR (m), CADR (m));}
|
|
|
|
|
case cell_symbol_null_p: return null_p (eval_env (CADR (r1), r0));
|
2016-11-21 20:43:06 +00:00
|
|
|
|
#endif // FIXED_PRIMITIVES
|
2016-12-14 18:02:19 +00:00
|
|
|
|
case cell_symbol_quote: return cadr (r1);
|
2016-12-22 15:50:51 +00:00
|
|
|
|
case cell_symbol_begin: goto begin;
|
2016-12-14 18:02:19 +00:00
|
|
|
|
case cell_symbol_lambda:
|
|
|
|
|
return make_closure (cadr (r1), cddr (r1), assq (cell_closure, r0));
|
2016-12-22 15:50:51 +00:00
|
|
|
|
case cell_symbol_if: {r1=cdr (r1); goto label_if;}
|
2016-12-14 18:02:19 +00:00
|
|
|
|
case cell_symbol_set_x: {
|
core: Remove c3+r abbreviatons.
* lib.c (caaar, caadr, caddr, cdadr, cadar, cddar, cdddr, cadddr):
Remove.
* mes.c: Rewrite callers
* module/mes/read-0.mes: Rewrite callers.
* module/mes/base.mes (caaar, caadr, caddr, cdadr, cadar, cddar, cdddr,
cadddr): New function.
2016-12-24 13:21:36 +00:00
|
|
|
|
SCM x = eval_env (car (cddr (r1)), r0); return set_env_x (cadr (r1), x, r0);
|
2016-12-14 18:02:19 +00:00
|
|
|
|
}
|
|
|
|
|
default: {
|
2016-12-22 15:34:28 +00:00
|
|
|
|
SCM x = macro_expand_env (r1, r0);
|
2016-12-22 07:31:20 +00:00
|
|
|
|
if (x != r1)
|
|
|
|
|
{
|
|
|
|
|
if (TYPE (x) == PAIR)
|
|
|
|
|
{
|
|
|
|
|
set_cdr_x (r1, cdr (x));
|
|
|
|
|
set_car_x (r1, car (x));
|
|
|
|
|
}
|
2016-12-22 15:50:51 +00:00
|
|
|
|
r1 = x;
|
|
|
|
|
goto eval;
|
2016-12-22 07:31:20 +00:00
|
|
|
|
}
|
2016-12-14 18:02:19 +00:00
|
|
|
|
SCM m = evlis_env (CDR (r1), r0);
|
2016-12-22 15:50:51 +00:00
|
|
|
|
r1 = car (r1);
|
|
|
|
|
r2 = m;
|
|
|
|
|
goto apply;
|
2016-12-14 18:02:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-03 20:43:01 +00:00
|
|
|
|
}
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
case SYMBOL: return assert_defined (r1, assq_ref_cache (r1, r0));
|
|
|
|
|
default: return r1;
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
2016-10-08 15:00:32 +00:00
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM macro;
|
|
|
|
|
SCM expanders;
|
2016-12-23 21:48:27 +00:00
|
|
|
|
macro_expand:
|
2016-11-21 08:28:34 +00:00
|
|
|
|
if (TYPE (r1) == PAIR
|
|
|
|
|
&& (macro = lookup_macro (car (r1), r0)) != cell_f)
|
2016-12-22 15:50:51 +00:00
|
|
|
|
{
|
|
|
|
|
r2 = CDR (r1);
|
|
|
|
|
r1 = macro;
|
|
|
|
|
goto apply;
|
|
|
|
|
}
|
2016-11-21 08:28:34 +00:00
|
|
|
|
else if (TYPE (r1) == PAIR
|
|
|
|
|
&& TYPE (CAR (r1)) == SYMBOL
|
|
|
|
|
&& ((expanders = assq_ref_cache (cell_symbol_sc_expander_alist, r0)) != cell_undefined)
|
|
|
|
|
&& ((macro = assq (CAR (r1), expanders)) != cell_f))
|
2016-10-30 15:16:20 +00:00
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
SCM sc_expand = assq_ref_cache (cell_symbol_macro_expand, r0);
|
2016-11-21 08:28:34 +00:00
|
|
|
|
if (sc_expand != cell_undefined && sc_expand != cell_f)
|
2016-12-22 15:50:51 +00:00
|
|
|
|
{
|
|
|
|
|
r2 = cons (r1, cell_nil);
|
|
|
|
|
r1 = sc_expand;
|
|
|
|
|
goto apply;
|
|
|
|
|
}
|
2016-10-30 15:16:20 +00:00
|
|
|
|
}
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
return r1;
|
2016-10-30 15:16:20 +00:00
|
|
|
|
|
2016-12-22 15:34:28 +00:00
|
|
|
|
SCM r;
|
|
|
|
|
begin:
|
|
|
|
|
r = cell_unspecified;
|
2016-11-21 08:36:32 +00:00
|
|
|
|
while (r1 != cell_nil) {
|
2016-12-07 19:26:41 +00:00
|
|
|
|
if (TYPE (r1) == PAIR && TYPE (CAR (r1)) == PAIR)
|
|
|
|
|
{
|
|
|
|
|
if (caar (r1) == cell_symbol_begin)
|
|
|
|
|
r1 = append2 (cdar (r1), cdr (r1));
|
|
|
|
|
else if (caar (r1) == cell_symbol_primitive_load)
|
2016-12-13 18:58:34 +00:00
|
|
|
|
{
|
|
|
|
|
SCM f = read_input_file_env (r0);
|
|
|
|
|
r1 = append2 (f, cdr (r1));
|
|
|
|
|
}
|
2016-12-07 19:26:41 +00:00
|
|
|
|
}
|
2016-12-22 15:50:51 +00:00
|
|
|
|
if (CDR (r1) == cell_nil)
|
|
|
|
|
{
|
|
|
|
|
r1 = car (r1);
|
|
|
|
|
goto eval;
|
|
|
|
|
}
|
2016-11-21 08:36:32 +00:00
|
|
|
|
r = eval_env (car (r1), r0);
|
|
|
|
|
r1 = CDR (r1);
|
|
|
|
|
}
|
|
|
|
|
return r;
|
|
|
|
|
|
2016-12-22 15:34:28 +00:00
|
|
|
|
SCM x;
|
|
|
|
|
label_if:
|
|
|
|
|
x = eval_env (car (r1), r0);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
if (x != cell_f)
|
2016-12-22 15:50:51 +00:00
|
|
|
|
{
|
|
|
|
|
r1 = cadr (r1);
|
|
|
|
|
goto eval;
|
|
|
|
|
}
|
2016-11-21 08:36:32 +00:00
|
|
|
|
if (cddr (r1) != cell_nil)
|
2016-12-22 15:50:51 +00:00
|
|
|
|
{
|
core: Remove c3+r abbreviatons.
* lib.c (caaar, caadr, caddr, cdadr, cadar, cddar, cdddr, cadddr):
Remove.
* mes.c: Rewrite callers
* module/mes/read-0.mes: Rewrite callers.
* module/mes/base.mes (caaar, caadr, caddr, cdadr, cadar, cddar, cdddr,
cadddr): New function.
2016-12-24 13:21:36 +00:00
|
|
|
|
r1 = car (cddr (r1));
|
2016-12-22 15:50:51 +00:00
|
|
|
|
goto eval;
|
|
|
|
|
}
|
2016-11-21 08:36:32 +00:00
|
|
|
|
return cell_unspecified;
|
|
|
|
|
|
2016-12-22 15:34:28 +00:00
|
|
|
|
SCM v;
|
|
|
|
|
call_with_values:
|
|
|
|
|
v = apply_env (r1, cell_nil, r0);
|
2016-12-10 11:07:04 +00:00
|
|
|
|
if (TYPE (v) == VALUES)
|
|
|
|
|
v = CDR (v);
|
2016-12-22 15:50:51 +00:00
|
|
|
|
r1 = r2;
|
|
|
|
|
r2 = v;
|
|
|
|
|
goto apply;
|
2016-12-10 11:07:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:36:32 +00:00
|
|
|
|
SCM
|
|
|
|
|
call (SCM fn, SCM x)
|
|
|
|
|
{
|
|
|
|
|
if ((FUNCTION (fn).arity > 0 || FUNCTION (fn).arity == -1)
|
|
|
|
|
&& x != cell_nil && TYPE (CAR (x)) == VALUES)
|
|
|
|
|
x = cons (CADAR (x), CDR (x));
|
|
|
|
|
if ((FUNCTION (fn).arity > 1 || FUNCTION (fn).arity == -1)
|
|
|
|
|
&& x != cell_nil && TYPE (CDR (x)) == PAIR && TYPE (CADR (x)) == VALUES)
|
|
|
|
|
x = cons (CAR (x), cons (CDADAR (x), CDR (x)));
|
|
|
|
|
switch (FUNCTION (fn).arity)
|
|
|
|
|
{
|
|
|
|
|
case 0: return FUNCTION (fn).function0 ();
|
|
|
|
|
case 1: return FUNCTION (fn).function1 (car (x));
|
|
|
|
|
case 2: return FUNCTION (fn).function2 (car (x), cadr (x));
|
core: Remove c3+r abbreviatons.
* lib.c (caaar, caadr, caddr, cdadr, cadar, cddar, cdddr, cadddr):
Remove.
* mes.c: Rewrite callers
* module/mes/read-0.mes: Rewrite callers.
* module/mes/base.mes (caaar, caadr, caddr, cdadr, cadar, cddar, cdddr,
cadddr): New function.
2016-12-24 13:21:36 +00:00
|
|
|
|
case 3: return FUNCTION (fn).function3 (car (x), cadr (x), car (cddr (x)));
|
2016-11-21 08:36:32 +00:00
|
|
|
|
case -1: return FUNCTION (fn).functionn (x);
|
|
|
|
|
}
|
2016-12-24 11:10:05 +00:00
|
|
|
|
|
2016-11-21 08:36:32 +00:00
|
|
|
|
return cell_unspecified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
gc_frame (SCM stack)
|
|
|
|
|
{
|
|
|
|
|
SCM frame = car (stack);
|
|
|
|
|
r1 = car (frame);
|
|
|
|
|
r2 = cadr (frame);
|
core: Remove c3+r abbreviatons.
* lib.c (caaar, caadr, caddr, cdadr, cadar, cddar, cdddr, cadddr):
Remove.
* mes.c: Rewrite callers
* module/mes/read-0.mes: Rewrite callers.
* module/mes/base.mes (caaar, caadr, caddr, cdadr, cadar, cddar, cdddr,
cadddr): New function.
2016-12-24 13:21:36 +00:00
|
|
|
|
r3 = car (cddr (frame));
|
|
|
|
|
r0 = cadr (cddr (frame));
|
2016-11-21 08:36:32 +00:00
|
|
|
|
return frame;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
gc_stack (SCM a)
|
|
|
|
|
{
|
|
|
|
|
SCM frame = cons (r1, cons (r2, cons (r3, cons (r0, cell_nil))));
|
|
|
|
|
stack = cons (frame, stack);
|
|
|
|
|
stack = gc (stack);
|
|
|
|
|
gc_frame (stack);
|
|
|
|
|
stack = cdr (stack);
|
|
|
|
|
return stack;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
vm_call (function0_t f, SCM p1, SCM p2, SCM a)
|
|
|
|
|
{
|
|
|
|
|
SCM frame = cons (r1, cons (r2, cons (r3, cons (r0, cell_nil))));
|
|
|
|
|
stack = cons (frame, stack);
|
|
|
|
|
r1 = p1;
|
|
|
|
|
r2 = p2;
|
|
|
|
|
r0 = a;
|
|
|
|
|
if (g_free.value + GC_SAFETY > ARENA_SIZE)
|
2016-11-21 20:43:06 +00:00
|
|
|
|
gc_stack (stack);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
|
|
|
|
|
SCM r = f ();
|
|
|
|
|
frame = gc_frame (stack);
|
|
|
|
|
stack = cdr (stack);
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
evlis_env (SCM m, SCM a)
|
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
g_target = EVLIS;
|
|
|
|
|
return vm_call (eval_apply, m, cell_undefined, a);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
apply_env (SCM fn, SCM x, SCM a)
|
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
g_target = APPLY;
|
|
|
|
|
return vm_call (eval_apply, fn, x, a);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
eval_env (SCM e, SCM a)
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
g_target = EVAL;
|
|
|
|
|
return vm_call (eval_apply, e, cell_undefined, a);
|
2016-05-29 11:44:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-12-22 15:34:28 +00:00
|
|
|
|
macro_expand_env (SCM e, SCM a)
|
2016-07-27 06:49:45 +00:00
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
g_target = MACRO_EXPAND;
|
|
|
|
|
return vm_call (eval_apply, e, cell_undefined, a);
|
2016-07-27 06:49:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-11-21 08:36:32 +00:00
|
|
|
|
begin_env (SCM e, SCM a)
|
2016-11-21 08:28:34 +00:00
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
g_target = BEGIN;
|
|
|
|
|
return vm_call (eval_apply, e, cell_undefined, a);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
if_env (SCM e, SCM a)
|
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
g_target = IF;
|
|
|
|
|
return vm_call (eval_apply, e, cell_undefined, a);
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-10 11:07:04 +00:00
|
|
|
|
SCM
|
|
|
|
|
call_with_values_env (SCM producer, SCM consumer, SCM a)
|
|
|
|
|
{
|
2016-12-22 15:34:28 +00:00
|
|
|
|
g_target = CALL_WITH_VALUES;
|
|
|
|
|
return vm_call (eval_apply, producer, consumer, a);
|
2016-12-10 11:07:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
append2 (SCM x, SCM y)
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
if (x == cell_nil) return y;
|
2016-11-21 08:30:59 +00:00
|
|
|
|
assert (TYPE (x) == PAIR);
|
2016-07-11 19:50:59 +00:00
|
|
|
|
return cons (car (x), append2 (cdr (x), y));
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
append (SCM x) ///((arity . n))
|
2016-07-11 19:50:59 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
if (x == cell_nil) return cell_nil;
|
2016-12-22 13:22:40 +00:00
|
|
|
|
if (cdr (x) == cell_nil) return car (x);
|
2016-07-11 19:50:59 +00:00
|
|
|
|
return append2 (car (x), append (cdr (x)));
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
Implement strings and symbols as list of characters [WAS: c-string].
* mes.c (scm_t): Add string field.
(make_string, internal_lookup_symbol, internal_make_symbol,
make_symbol, lookup, readword): Take scm*. Update callers.
(display_helper): Support string field.
(append_char): New function.
(readstring): Use it. Produce scm*.
(cstring_to_list): New function.
(add_environment, internal_make_symbol): Use it.
(list_of_char_equal_p): New function.
(internal_lookup_symbol): Use it.
* lib.c (list_ref): New function.
* string.c (string_ref): Use it.
(string, string_append, string_length, substring, number_to_string,
string_to_symbol, symbol_to_string): Update to list-of-characters
implementation.
2016-10-25 14:50:19 +00:00
|
|
|
|
cstring_to_list (char const* s)
|
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM p = cell_nil;
|
|
|
|
|
int i = strlen (s);
|
|
|
|
|
while (i--)
|
2016-12-23 15:26:00 +00:00
|
|
|
|
p = cons (MAKE_CHAR (s[i]), p);
|
2016-05-28 14:39:44 +00:00
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-19 22:25:24 +00:00
|
|
|
|
SCM
|
|
|
|
|
null_p (SCM x)
|
|
|
|
|
{
|
|
|
|
|
return x == cell_nil ? cell_t : cell_f;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-12-23 10:31:34 +00:00
|
|
|
|
make_symbol_ (SCM s)
|
2016-10-08 06:41:30 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
g_cells[tmp_num].value = SYMBOL;
|
|
|
|
|
SCM x = make_cell (tmp_num, s, 0);
|
2016-12-10 11:07:04 +00:00
|
|
|
|
g_symbols = cons (x, g_symbols);
|
2016-10-08 06:41:30 +00:00
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
make_symbol (SCM s)
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-12-23 10:31:34 +00:00
|
|
|
|
SCM x = lookup_symbol_ (s);
|
|
|
|
|
return x ? x : make_symbol_ (s);
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
make_vector (SCM n)
|
2016-07-11 08:38:02 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
int k = VALUE (n);
|
|
|
|
|
g_cells[tmp_num].value = VECTOR;
|
2016-11-21 08:36:32 +00:00
|
|
|
|
SCM v = alloc (k);
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM x = make_cell (tmp_num, k, v);
|
|
|
|
|
for (int i=0; i<k; i++) g_cells[v+i] = g_cells[vector_entry (cell_unspecified)];
|
2016-10-26 17:44:36 +00:00
|
|
|
|
return x;
|
2016-07-11 08:38:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-24 00:23:50 +00:00
|
|
|
|
SCM
|
|
|
|
|
arity_ (SCM x)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (x) == FUNCTION);
|
|
|
|
|
return MAKE_NUMBER (FUNCTION (x).arity);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
values (SCM x) ///((arity . n))
|
2016-07-11 17:32:11 +00:00
|
|
|
|
{
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM v = cons (0, x);
|
2016-11-21 08:30:59 +00:00
|
|
|
|
TYPE (v) = VALUES;
|
2016-07-11 17:32:11 +00:00
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
vector_length (SCM x)
|
2016-07-11 08:38:02 +00:00
|
|
|
|
{
|
2016-11-21 08:30:59 +00:00
|
|
|
|
assert (TYPE (x) == VECTOR);
|
2016-12-23 15:22:19 +00:00
|
|
|
|
return MAKE_NUMBER (LENGTH (x));
|
2016-07-11 08:38:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
vector_ref (SCM x, SCM i)
|
|
|
|
|
{
|
2016-11-21 08:30:59 +00:00
|
|
|
|
assert (TYPE (x) == VECTOR);
|
|
|
|
|
assert (VALUE (i) < LENGTH (x));
|
|
|
|
|
SCM e = VECTOR (x) + VALUE (i);
|
|
|
|
|
if (TYPE (e) == REF) e = g_cells[e].ref;
|
2016-12-23 15:26:00 +00:00
|
|
|
|
if (TYPE (e) == CHAR) e = MAKE_CHAR (VALUE (e));
|
2016-12-23 15:22:19 +00:00
|
|
|
|
if (TYPE (e) == NUMBER) e = MAKE_NUMBER (VALUE (e));
|
Introduce reference type, use vectors of SCM.
* mes.c (type): Add REF.
(scm_t): Add ref, change vector to *scm_t. Update users.
(alloc): New function.
(cons, make_char, make_macro, make_number, make_string,
internal_make_symbol, make_vector): Use it.
(make_ref): New function.
(vector_entry): New function.
(make_vector, list_to_vector, vector_set_x): Use it.
(vector_ref): Dereference REF entry.
(display_helper): Handle REF.
* lib.c (vector_to_list): Handle REF.
* type.c (ref_p): New function.
* tests/vector.test (vector list): New test.
Bugfix vector-ref.
* mes.c (vector-ref): Make copies of simple values. Fixes lalr.
* tests/vector.test (vector-set! 3): New test.
2016-10-24 22:21:28 +00:00
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
vector_entry (SCM x) {
|
2016-12-23 15:31:56 +00:00
|
|
|
|
if (TYPE (x) == PAIR || TYPE (x) == SPECIAL || TYPE (x) == STRING || TYPE (x) == SYMBOL || TYPE (x) == VECTOR) x = MAKE_REF (x);
|
Introduce reference type, use vectors of SCM.
* mes.c (type): Add REF.
(scm_t): Add ref, change vector to *scm_t. Update users.
(alloc): New function.
(cons, make_char, make_macro, make_number, make_string,
internal_make_symbol, make_vector): Use it.
(make_ref): New function.
(vector_entry): New function.
(make_vector, list_to_vector, vector_set_x): Use it.
(vector_ref): Dereference REF entry.
(display_helper): Handle REF.
* lib.c (vector_to_list): Handle REF.
* type.c (ref_p): New function.
* tests/vector.test (vector list): New test.
Bugfix vector-ref.
* mes.c (vector-ref): Make copies of simple values. Fixes lalr.
* tests/vector.test (vector-set! 3): New test.
2016-10-24 22:21:28 +00:00
|
|
|
|
return x;
|
2016-07-11 08:38:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
vector_set_x (SCM x, SCM i, SCM e)
|
2016-07-11 08:38:02 +00:00
|
|
|
|
{
|
2016-11-21 08:30:59 +00:00
|
|
|
|
assert (TYPE (x) == VECTOR);
|
|
|
|
|
assert (VALUE (i) < LENGTH (x));
|
2016-11-21 08:28:34 +00:00
|
|
|
|
g_cells[VECTOR (x)+g_cells[i].value] = g_cells[vector_entry (e)];
|
|
|
|
|
return cell_unspecified;
|
2016-07-11 08:38:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-19 22:25:24 +00:00
|
|
|
|
SCM
|
|
|
|
|
list_to_vector (SCM x)
|
|
|
|
|
{
|
|
|
|
|
VALUE (tmp_num) = VALUE (length (x));
|
|
|
|
|
SCM v = make_vector (tmp_num);
|
|
|
|
|
SCM p = VECTOR (v);
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
g_cells[p++] = g_cells[vector_entry (car (x))];
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-23 19:09:57 +00:00
|
|
|
|
SCM
|
|
|
|
|
vector_to_list (SCM v)
|
|
|
|
|
{
|
|
|
|
|
SCM x = cell_nil;
|
|
|
|
|
for (int i = 0; i < LENGTH (v); i++) {
|
|
|
|
|
SCM e = VECTOR (v)+i;
|
|
|
|
|
if (TYPE (e) == REF) e = g_cells[e].ref;
|
|
|
|
|
x = append2 (x, cons (e, cell_nil));
|
|
|
|
|
}
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-10 11:07:04 +00:00
|
|
|
|
void
|
|
|
|
|
make_tmps (scm* cells)
|
|
|
|
|
{
|
|
|
|
|
tmp = g_free.value++;
|
|
|
|
|
cells[tmp].type = CHAR;
|
|
|
|
|
tmp_num = g_free.value++;
|
|
|
|
|
cells[tmp_num].type = NUMBER;
|
|
|
|
|
tmp_num2 = g_free.value++;
|
|
|
|
|
cells[tmp_num2].type = NUMBER;
|
|
|
|
|
tmp_num3 = g_free.value++;
|
|
|
|
|
cells[tmp_num3].type = NUMBER;
|
|
|
|
|
tmp_num4 = g_free.value++;
|
|
|
|
|
cells[tmp_num4].type = NUMBER;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:36:32 +00:00
|
|
|
|
// Jam Collector
|
2016-12-10 11:07:04 +00:00
|
|
|
|
SCM g_symbol_max;
|
2016-12-11 07:23:15 +00:00
|
|
|
|
bool g_debug = false;
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
gc_up_arena ()
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-12-11 07:23:15 +00:00
|
|
|
|
ARENA_SIZE *= 2;
|
|
|
|
|
void *p = realloc (g_cells-1, 2*ARENA_SIZE*sizeof(scm));
|
2016-12-24 11:10:05 +00:00
|
|
|
|
if (!p) error (strerror (errno), MAKE_NUMBER (g_free.value));
|
2016-12-11 07:23:15 +00:00
|
|
|
|
g_cells = (scm*)p;
|
|
|
|
|
g_cells++;
|
|
|
|
|
gc_init_news ();
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-11-21 08:36:32 +00:00
|
|
|
|
gc ()
|
2016-07-10 22:15:28 +00:00
|
|
|
|
{
|
2016-12-10 11:07:04 +00:00
|
|
|
|
if (g_debug) fprintf (stderr, "***gc[%d]...", g_free.value);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
g_free.value = 1;
|
2016-12-11 17:41:08 +00:00
|
|
|
|
if (g_cells < g_news && ARENA_SIZE < MAX_ARENA_SIZE) gc_up_arena ();
|
2016-12-10 11:07:04 +00:00
|
|
|
|
for (int i=g_free.value; i<g_symbol_max; i++)
|
2016-11-21 08:36:32 +00:00
|
|
|
|
gc_copy (i);
|
2016-12-10 11:07:04 +00:00
|
|
|
|
make_tmps (g_news);
|
|
|
|
|
g_symbols = gc_copy (g_symbols);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
SCM new = gc_copy (stack);
|
2016-12-10 11:07:04 +00:00
|
|
|
|
if (g_debug) fprintf (stderr, "new=%d\n", new, stack);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
stack = new;
|
|
|
|
|
return gc_loop (1);
|
2016-07-10 22:15:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-19 22:25:24 +00:00
|
|
|
|
SCM
|
2016-11-21 08:36:32 +00:00
|
|
|
|
gc_loop (SCM scan)
|
2016-11-19 22:25:24 +00:00
|
|
|
|
{
|
2016-11-21 08:36:32 +00:00
|
|
|
|
while (scan < g_free.value)
|
|
|
|
|
{
|
2016-12-23 17:48:36 +00:00
|
|
|
|
if (NTYPE (scan) == CLOSURE
|
2016-12-24 00:23:50 +00:00
|
|
|
|
|| NTYPE (scan) == FUNCTION
|
2016-12-23 17:48:36 +00:00
|
|
|
|
|| NTYPE (scan) == KEYWORD
|
2016-12-16 22:30:33 +00:00
|
|
|
|
|| NTYPE (scan) == MACRO
|
2016-11-21 08:36:32 +00:00
|
|
|
|
|| NTYPE (scan) == PAIR
|
|
|
|
|
|| NTYPE (scan) == REF
|
2016-12-10 11:07:04 +00:00
|
|
|
|
|| scan == 1 // null
|
|
|
|
|
|| NTYPE (scan) == SPECIAL
|
|
|
|
|
|| NTYPE (scan) == STRING
|
|
|
|
|
|| NTYPE (scan) == SYMBOL)
|
2016-11-21 08:36:32 +00:00
|
|
|
|
{
|
|
|
|
|
SCM car = gc_copy (g_news[scan].car);
|
|
|
|
|
gc_relocate_car (scan, car);
|
|
|
|
|
}
|
2016-12-23 17:48:36 +00:00
|
|
|
|
if ((NTYPE (scan) == CLOSURE
|
|
|
|
|
|| NTYPE (scan) == MACRO
|
2016-11-21 08:36:32 +00:00
|
|
|
|
|| NTYPE (scan) == PAIR
|
|
|
|
|
|| NTYPE (scan) == VALUES)
|
|
|
|
|
&& g_news[scan].cdr) // allow for 0 terminated list of symbols
|
|
|
|
|
{
|
|
|
|
|
SCM cdr = gc_copy (g_news[scan].cdr);
|
|
|
|
|
gc_relocate_cdr (scan, cdr);
|
|
|
|
|
}
|
|
|
|
|
scan++;
|
|
|
|
|
}
|
|
|
|
|
return gc_flip ();
|
2016-11-19 22:25:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-11-21 08:36:32 +00:00
|
|
|
|
gc_copy (SCM old)
|
Implement strings and symbols as list of characters [WAS: c-string].
* mes.c (scm_t): Add string field.
(make_string, internal_lookup_symbol, internal_make_symbol,
make_symbol, lookup, readword): Take scm*. Update callers.
(display_helper): Support string field.
(append_char): New function.
(readstring): Use it. Produce scm*.
(cstring_to_list): New function.
(add_environment, internal_make_symbol): Use it.
(list_of_char_equal_p): New function.
(internal_lookup_symbol): Use it.
* lib.c (list_ref): New function.
* string.c (string_ref): Use it.
(string, string_append, string_length, substring, number_to_string,
string_to_symbol, symbol_to_string): Update to list-of-characters
implementation.
2016-10-25 14:50:19 +00:00
|
|
|
|
{
|
2016-11-21 08:36:32 +00:00
|
|
|
|
if (TYPE (old) == BROKEN_HEART) return g_cells[old].car;
|
|
|
|
|
SCM new = g_free.value++;
|
|
|
|
|
g_news[new] = g_cells[old];
|
|
|
|
|
if (NTYPE (new) == VECTOR)
|
|
|
|
|
{
|
|
|
|
|
g_news[new].vector = g_free.value;
|
|
|
|
|
for (int i=0; i<LENGTH (old); i++)
|
|
|
|
|
g_news[g_free.value++] = g_cells[VECTOR (old)+i];
|
|
|
|
|
}
|
|
|
|
|
g_cells[old].type = BROKEN_HEART;
|
|
|
|
|
g_cells[old].car = new;
|
|
|
|
|
return new;
|
Implement strings and symbols as list of characters [WAS: c-string].
* mes.c (scm_t): Add string field.
(make_string, internal_lookup_symbol, internal_make_symbol,
make_symbol, lookup, readword): Take scm*. Update callers.
(display_helper): Support string field.
(append_char): New function.
(readstring): Use it. Produce scm*.
(cstring_to_list): New function.
(add_environment, internal_make_symbol): Use it.
(list_of_char_equal_p): New function.
(internal_lookup_symbol): Use it.
* lib.c (list_ref): New function.
* string.c (string_ref): Use it.
(string, string_append, string_length, substring, number_to_string,
string_to_symbol, symbol_to_string): Update to list-of-characters
implementation.
2016-10-25 14:50:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-11-21 08:36:32 +00:00
|
|
|
|
gc_relocate_car (SCM new, SCM car)
|
2016-07-10 20:43:23 +00:00
|
|
|
|
{
|
2016-11-21 08:36:32 +00:00
|
|
|
|
g_news[new].car = car;
|
|
|
|
|
return cell_unspecified;
|
2016-07-10 20:43:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:36:32 +00:00
|
|
|
|
SCM
|
|
|
|
|
gc_relocate_cdr (SCM new, SCM cdr)
|
2016-07-09 16:56:59 +00:00
|
|
|
|
{
|
2016-11-21 08:36:32 +00:00
|
|
|
|
g_news[new].cdr = cdr;
|
|
|
|
|
return cell_unspecified;
|
2016-07-09 16:56:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-11-21 08:36:32 +00:00
|
|
|
|
gc_flip ()
|
2016-05-28 14:39:44 +00:00
|
|
|
|
{
|
2016-11-21 08:36:32 +00:00
|
|
|
|
scm *cells = g_cells;
|
|
|
|
|
g_cells = g_news;
|
|
|
|
|
g_news = cells;
|
2016-12-10 11:07:04 +00:00
|
|
|
|
if (g_debug) fprintf (stderr, " => jam[%d]\n", g_free.value);
|
2016-11-21 08:36:32 +00:00
|
|
|
|
return stack;
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:36:32 +00:00
|
|
|
|
// Environment setup
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
acons (SCM key, SCM value, SCM alist)
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
{
|
|
|
|
|
return cons (cons (key, value), alist);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
2016-12-11 07:23:15 +00:00
|
|
|
|
gc_init_cells ()
|
2016-05-15 22:07:44 +00:00
|
|
|
|
{
|
2016-12-11 07:23:15 +00:00
|
|
|
|
g_cells = (scm *)malloc (2*ARENA_SIZE*sizeof(scm));
|
2016-10-27 14:44:09 +00:00
|
|
|
|
g_cells[0].type = VECTOR;
|
2016-11-19 22:25:24 +00:00
|
|
|
|
g_cells[0].length = 1000;
|
2016-11-21 08:28:34 +00:00
|
|
|
|
g_cells[0].vector = 0;
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
g_cells++;
|
2016-11-21 08:28:34 +00:00
|
|
|
|
g_cells[0].type = CHAR;
|
|
|
|
|
g_cells[0].value = 'c';
|
2016-12-11 07:23:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
gc_init_news ()
|
|
|
|
|
{
|
|
|
|
|
g_news = g_cells-1 + ARENA_SIZE;
|
|
|
|
|
g_news[0].type = VECTOR;
|
|
|
|
|
g_news[0].length = 1000;
|
|
|
|
|
g_news[0].vector = 0;
|
|
|
|
|
g_news++;
|
|
|
|
|
g_news[0].type = CHAR;
|
|
|
|
|
g_news[0].value = 'n';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
mes_symbols () ///((internal))
|
|
|
|
|
{
|
|
|
|
|
gc_init_cells ();
|
|
|
|
|
gc_init_news ();
|
2016-11-21 08:28:34 +00:00
|
|
|
|
|
|
|
|
|
#include "mes.symbols.i"
|
|
|
|
|
|
2016-12-10 11:07:04 +00:00
|
|
|
|
g_symbol_max = g_free.value;
|
|
|
|
|
make_tmps (g_cells);
|
2016-11-21 08:28:34 +00:00
|
|
|
|
|
2016-12-10 11:07:04 +00:00
|
|
|
|
g_symbols = 0;
|
|
|
|
|
for (int i=1; i<g_symbol_max; i++)
|
|
|
|
|
g_symbols = cons (i, g_symbols);
|
2016-11-19 22:25:24 +00:00
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM a = cell_nil;
|
2016-10-20 16:43:33 +00:00
|
|
|
|
|
2016-12-23 09:38:41 +00:00
|
|
|
|
#include "mes.symbol-names.i"
|
|
|
|
|
|
2016-11-19 22:25:24 +00:00
|
|
|
|
#if BOOT
|
|
|
|
|
a = acons (cell_symbol_label, cell_t, a);
|
|
|
|
|
#endif
|
2016-12-23 16:02:23 +00:00
|
|
|
|
a = acons (cell_symbol_dot, cell_dot, a);
|
2016-11-19 22:25:24 +00:00
|
|
|
|
a = acons (cell_symbol_begin, cell_begin, a);
|
2016-12-23 16:02:23 +00:00
|
|
|
|
a = acons (cell_symbol_sc_expand, cell_f, a);
|
2016-11-19 22:25:24 +00:00
|
|
|
|
a = acons (cell_closure, a, a);
|
|
|
|
|
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
mes_builtins (SCM a)
|
|
|
|
|
{
|
|
|
|
|
#include "mes.i"
|
|
|
|
|
|
|
|
|
|
#include "lib.i"
|
|
|
|
|
#include "math.i"
|
|
|
|
|
#include "posix.i"
|
2016-11-21 08:36:32 +00:00
|
|
|
|
#include "reader.i"
|
2016-11-19 22:25:24 +00:00
|
|
|
|
|
2016-10-22 18:51:32 +00:00
|
|
|
|
#include "lib.environment.i"
|
2016-11-21 08:28:34 +00:00
|
|
|
|
#include "math.environment.i"
|
2016-10-21 20:44:50 +00:00
|
|
|
|
#include "mes.environment.i"
|
2016-11-21 08:28:34 +00:00
|
|
|
|
#include "posix.environment.i"
|
2016-11-21 08:36:32 +00:00
|
|
|
|
#include "reader.environment.i"
|
2016-11-21 08:28:34 +00:00
|
|
|
|
|
2016-11-19 22:25:24 +00:00
|
|
|
|
return a;
|
|
|
|
|
}
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
|
2016-11-19 22:25:24 +00:00
|
|
|
|
SCM
|
|
|
|
|
mes_stack (SCM a) ///((internal))
|
|
|
|
|
{
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
r0 = a;
|
2016-12-23 15:26:00 +00:00
|
|
|
|
r1 = MAKE_CHAR (0);
|
|
|
|
|
r2 = MAKE_CHAR (0);
|
|
|
|
|
r3 = MAKE_CHAR (0);
|
2016-11-21 08:28:34 +00:00
|
|
|
|
stack = cons (cell_nil, cell_nil);
|
2016-11-19 22:25:24 +00:00
|
|
|
|
return r0;
|
|
|
|
|
}
|
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
2016-10-28 16:42:03 +00:00
|
|
|
|
|
2016-11-19 22:25:24 +00:00
|
|
|
|
SCM
|
|
|
|
|
mes_environment () ///((internal))
|
|
|
|
|
{
|
|
|
|
|
SCM a = mes_symbols ();
|
|
|
|
|
return mes_stack (a);
|
2016-05-28 14:39:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
make_closure (SCM args, SCM body, SCM a)
|
2016-07-19 19:37:39 +00:00
|
|
|
|
{
|
2016-12-23 17:48:36 +00:00
|
|
|
|
return make_cell (tmp_num_ (CLOSURE), cell_f, cons (cons (cell_circular, a), cons (args, body)));
|
2016-07-19 19:37:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM
|
|
|
|
|
lookup_macro (SCM x, SCM a)
|
2016-10-20 17:19:32 +00:00
|
|
|
|
{
|
2016-11-21 08:30:59 +00:00
|
|
|
|
if (TYPE (x) != SYMBOL) return cell_f;
|
2016-11-21 08:28:34 +00:00
|
|
|
|
SCM m = assq_ref_cache (x, a);
|
2016-12-23 17:05:45 +00:00
|
|
|
|
if (TYPE (m) == MACRO) return MACRO (m);
|
2016-11-21 08:28:34 +00:00
|
|
|
|
return cell_f;
|
2016-07-08 16:02:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
core: Move reader and posix functions from mes.c
* mes.c (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte, write_byte, read_input_file_env_, read_input_file_env):
Remove.
* posix.c (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte, write_byte): Move from mes.c.
* reader (read_input_file_env_, read_input_file_env): Move from mes.c.
2016-12-24 10:28:25 +00:00
|
|
|
|
FILE *g_stdin;
|
2016-10-22 18:51:32 +00:00
|
|
|
|
#include "lib.c"
|
2016-10-22 18:18:03 +00:00
|
|
|
|
#include "math.c"
|
2016-11-02 19:22:02 +00:00
|
|
|
|
#include "posix.c"
|
2016-11-21 08:36:32 +00:00
|
|
|
|
#include "reader.c"
|
2016-10-22 18:18:03 +00:00
|
|
|
|
|
2016-07-16 20:43:13 +00:00
|
|
|
|
int
|
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
|
{
|
2016-12-10 11:07:04 +00:00
|
|
|
|
g_debug = getenv ("MES_DEBUG");
|
2016-12-13 18:58:34 +00:00
|
|
|
|
if (getenv ("MES_ARENA")) ARENA_SIZE = atoi (getenv ("MES_ARENA"));
|
2016-10-16 11:45:24 +00:00
|
|
|
|
if (argc > 1 && !strcmp (argv[1], "--help")) return puts ("Usage: mes < FILE\n");
|
2016-12-12 20:00:02 +00:00
|
|
|
|
if (argc > 1 && !strcmp (argv[1], "--version")) return puts ("Mes 0.3\n");
|
2016-11-02 17:25:18 +00:00
|
|
|
|
g_stdin = stdin;
|
2016-12-13 18:58:34 +00:00
|
|
|
|
r0 = mes_environment ();
|
|
|
|
|
SCM program = (argc > 1 && !strcmp (argv[1], "--load"))
|
|
|
|
|
? bload_env (r0) : load_env (r0);
|
|
|
|
|
if (argc > 1 && !strcmp (argv[1], "--dump")) return dump ();
|
2016-12-24 00:23:50 +00:00
|
|
|
|
stderr_ (begin_env (program, r0));
|
2016-08-12 12:17:20 +00:00
|
|
|
|
fputs ("", stderr);
|
2016-11-19 22:25:24 +00:00
|
|
|
|
gc (stack);
|
2016-12-10 11:07:04 +00:00
|
|
|
|
if (g_debug) fprintf (stderr, "\nstats: [%d]\n", g_free.value);
|
2016-07-16 20:43:13 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|