2017-04-02 10:01:33 +00:00
|
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
|
* Mes --- Maxwell Equations of Software
|
2017-01-02 06:50:44 +00:00
|
|
|
|
* Copyright © 2016,2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
2017-04-02 10:01:33 +00:00
|
|
|
|
*
|
|
|
|
|
* 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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-04-02 10:29:09 +00:00
|
|
|
|
#if __GNUC__
|
|
|
|
|
#include "mlibc.c"
|
|
|
|
|
#endif
|
|
|
|
|
#define assert(x) ((x) ? (void)0 : assert_fail (#x))
|
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#define MES_MINI 1
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
#define FIXED_PRIMITIVES 1
|
2017-04-02 10:01:33 +00:00
|
|
|
|
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
#define MES_GC 1
|
|
|
|
|
#if MES_GC
|
|
|
|
|
int ARENA_SIZE = 100000;
|
|
|
|
|
#else
|
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
|
|
|
|
int ARENA_SIZE = 1000000000;
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
#endif
|
2017-04-01 17:10:28 +00:00
|
|
|
|
int MAX_ARENA_SIZE = 40000000;
|
|
|
|
|
int GC_SAFETY = 10000;
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
|
2017-04-02 10:31:15 +00:00
|
|
|
|
char *arena = 0;
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
typedef int SCM;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
int g_debug = 0;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
int g_free = 0;
|
|
|
|
|
|
2017-03-06 06:14:15 +00:00
|
|
|
|
SCM g_continuations = 0;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
SCM g_symbols = 0;
|
|
|
|
|
SCM g_stack = 0;
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
// a/env
|
|
|
|
|
SCM r0 = 0;
|
|
|
|
|
// param 1
|
|
|
|
|
SCM r1 = 0;
|
|
|
|
|
// save 2+load/dump
|
|
|
|
|
SCM r2 = 0;
|
|
|
|
|
// continuation
|
|
|
|
|
SCM r3 = 0;
|
2017-01-18 06:38:45 +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
|
|
|
|
enum type_t {TCHAR, TCLOSURE, TCONTINUATION, TFUNCTION, TKEYWORD, TMACRO, TNUMBER, TPAIR, TREF, TSPECIAL, TSTRING, TSYMBOL, TVALUES, TVECTOR, TBROKEN_HEART};
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
|
|
|
|
|
struct scm {
|
|
|
|
|
enum type_t type;
|
|
|
|
|
SCM car;
|
|
|
|
|
SCM cdr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct function {
|
|
|
|
|
int (*function) (void);
|
2017-04-02 10:01:33 +00:00
|
|
|
|
int arity;
|
2017-03-09 22:27:12 +00:00
|
|
|
|
char *name;
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
//FIXME
|
|
|
|
|
char *foobar = 0;
|
|
|
|
|
|
2017-04-02 10:31:15 +00:00
|
|
|
|
#if __GNUC__
|
2017-03-25 14:58:44 +00:00
|
|
|
|
struct scm *g_cells = 0;
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
struct scm *g_news = 0;
|
2017-04-02 10:31:15 +00:00
|
|
|
|
#else
|
|
|
|
|
struct scm *g_cells = foobar;
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
struct scm *g_news = foobar;
|
2017-04-02 10:31:15 +00:00
|
|
|
|
#endif
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +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
|
|
|
|
struct scm scm_nil = {TSPECIAL, "()",0};
|
|
|
|
|
struct scm scm_f = {TSPECIAL, "#f",0};
|
|
|
|
|
struct scm scm_t = {TSPECIAL, "#t",0};
|
|
|
|
|
struct scm scm_dot = {TSPECIAL, ".",0};
|
|
|
|
|
struct scm scm_arrow = {TSPECIAL, "=>",0};
|
|
|
|
|
struct scm scm_undefined = {TSPECIAL, "*undefined*",0};
|
|
|
|
|
struct scm scm_unspecified = {TSPECIAL, "*unspecified*",0};
|
|
|
|
|
struct scm scm_closure = {TSPECIAL, "*closure*",0};
|
|
|
|
|
struct scm scm_circular = {TSPECIAL, "*circular*",0};
|
|
|
|
|
struct scm scm_begin = {TSPECIAL, "*begin*",0};
|
|
|
|
|
|
|
|
|
|
struct scm scm_symbol_dot = {TSYMBOL, "*dot*",0};
|
|
|
|
|
struct scm scm_symbol_lambda = {TSYMBOL, "lambda",0};
|
|
|
|
|
struct scm scm_symbol_begin = {TSYMBOL, "begin",0};
|
|
|
|
|
struct scm scm_symbol_if = {TSYMBOL, "if",0};
|
|
|
|
|
struct scm scm_symbol_quote = {TSYMBOL, "quote",0};
|
|
|
|
|
struct scm scm_symbol_set_x = {TSYMBOL, "set!",0};
|
|
|
|
|
|
|
|
|
|
struct scm scm_symbol_sc_expand = {TSYMBOL, "sc-expand",0};
|
|
|
|
|
struct scm scm_symbol_macro_expand = {TSYMBOL, "macro-expand",0};
|
|
|
|
|
struct scm scm_symbol_sc_expander_alist = {TSYMBOL, "*sc-expander-alist*",0};
|
|
|
|
|
|
|
|
|
|
struct scm scm_symbol_call_with_values = {TSYMBOL, "call-with-values",0};
|
|
|
|
|
struct scm scm_call_with_current_continuation = {TSPECIAL, "*call/cc*",0};
|
|
|
|
|
struct scm scm_symbol_call_with_current_continuation = {TSYMBOL, "call-with-current-continuation",0};
|
|
|
|
|
struct scm scm_symbol_current_module = {TSYMBOL, "current-module",0};
|
|
|
|
|
struct scm scm_symbol_primitive_load = {TSYMBOL, "primitive-load",0};
|
|
|
|
|
struct scm scm_symbol_read_input_file = {TSYMBOL, "read-input-file",0};
|
|
|
|
|
struct scm scm_symbol_write = {TSYMBOL, "write",0};
|
|
|
|
|
struct scm scm_symbol_display = {TSYMBOL, "display",0};
|
|
|
|
|
|
|
|
|
|
struct scm scm_symbol_throw = {TSYMBOL, "throw",0};
|
|
|
|
|
struct scm scm_symbol_not_a_pair = {TSYMBOL, "not-a-pair",0};
|
|
|
|
|
struct scm scm_symbol_system_error = {TSYMBOL, "system-error",0};
|
|
|
|
|
struct scm scm_symbol_wrong_number_of_args = {TSYMBOL, "wrong-number-of-args",0};
|
|
|
|
|
struct scm scm_symbol_wrong_type_arg = {TSYMBOL, "wrong-type-arg",0};
|
|
|
|
|
struct scm scm_symbol_unbound_variable = {TSYMBOL, "unbound-variable",0};
|
|
|
|
|
|
|
|
|
|
struct scm scm_symbol_argv = {TSYMBOL, "%argv",0};
|
|
|
|
|
struct scm scm_symbol_mes_prefix = {TSYMBOL, "%prefix",0};
|
|
|
|
|
struct scm scm_symbol_mes_version = {TSYMBOL, "%version",0};
|
|
|
|
|
|
|
|
|
|
struct scm scm_symbol_car = {TSYMBOL, "car",0};
|
|
|
|
|
struct scm scm_symbol_cdr = {TSYMBOL, "cdr",0};
|
|
|
|
|
struct scm scm_symbol_null_p = {TSYMBOL, "null?",0};
|
|
|
|
|
struct scm scm_symbol_eq_p = {TSYMBOL, "eq?",0};
|
|
|
|
|
struct scm scm_symbol_cons = {TSYMBOL, "cons",0};
|
|
|
|
|
|
|
|
|
|
struct scm scm_vm_evlis = {TSPECIAL, "*vm-evlis*",0};
|
|
|
|
|
struct scm scm_vm_evlis2 = {TSPECIAL, "*vm-evlis2*",0};
|
|
|
|
|
struct scm scm_vm_evlis3 = {TSPECIAL, "*vm-evlis3*",0};
|
|
|
|
|
struct scm scm_vm_apply = {TSPECIAL, "core:apply",0};
|
|
|
|
|
struct scm scm_vm_apply2 = {TSPECIAL, "*vm-apply2*",0};
|
|
|
|
|
struct scm scm_vm_eval = {TSPECIAL, "core:eval",0};
|
|
|
|
|
|
|
|
|
|
//FIXED_PRIMITIVES
|
|
|
|
|
struct scm scm_vm_eval_car = {TSPECIAL, "*vm-eval-car*",0};
|
|
|
|
|
struct scm scm_vm_eval_cdr = {TSPECIAL, "*vm-eval-cdr*",0};
|
|
|
|
|
struct scm scm_vm_eval_cons = {TSPECIAL, "*vm-eval-cons*",0};
|
|
|
|
|
struct scm scm_vm_eval_null_p = {TSPECIAL, "*vm-eval-null-p*",0};
|
|
|
|
|
|
|
|
|
|
struct scm scm_vm_eval_set_x = {TSPECIAL, "*vm-eval-set!*",0};
|
|
|
|
|
struct scm scm_vm_eval_macro = {TSPECIAL, "*vm-eval-macro*",0};
|
2017-03-27 18:14:48 +00:00
|
|
|
|
struct scm scm_vm_eval_check_func = {TSPECIAL, "*vm-eval-check-func*",0};
|
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
|
|
|
|
struct scm scm_vm_eval2 = {TSPECIAL, "*vm-eval2*",0};
|
|
|
|
|
struct scm scm_vm_macro_expand = {TSPECIAL, "core:macro-expand",0};
|
|
|
|
|
struct scm scm_vm_begin = {TSPECIAL, "*vm-begin*",0};
|
|
|
|
|
struct scm scm_vm_begin_read_input_file = {TSPECIAL, "*vm-begin-read-input-file*",0};
|
|
|
|
|
struct scm scm_vm_begin2 = {TSPECIAL, "*vm-begin2*",0};
|
|
|
|
|
struct scm scm_vm_if = {TSPECIAL, "*vm-if*",0};
|
|
|
|
|
struct scm scm_vm_if_expr = {TSPECIAL, "*vm-if-expr*",0};
|
|
|
|
|
struct scm scm_vm_call_with_values2 = {TSPECIAL, "*vm-call-with-values2*",0};
|
|
|
|
|
struct scm scm_vm_call_with_current_continuation2 = {TSPECIAL, "*vm-call-with-current-continuation2*",0};
|
|
|
|
|
struct scm scm_vm_return = {TSPECIAL, "*vm-return*",0};
|
|
|
|
|
|
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
|
|
|
|
struct scm scm_symbol_gnuc = {TSYMBOL, "%gnuc",0};
|
|
|
|
|
struct scm scm_symbol_mesc = {TSYMBOL, "%mesc",0};
|
|
|
|
|
|
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
|
|
|
|
struct scm scm_test = {TSYMBOL, "test",0};
|
|
|
|
|
|
|
|
|
|
#include "mini-mes.symbols.h"
|
2017-01-18 06:38:45 +00:00
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
SCM tmp;
|
|
|
|
|
SCM tmp_num;
|
|
|
|
|
SCM tmp_num2;
|
|
|
|
|
|
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
|
|
|
|
struct function g_functions[200];
|
2017-04-02 10:01:33 +00:00
|
|
|
|
int g_function = 0;
|
|
|
|
|
|
2017-04-02 15:01:22 +00:00
|
|
|
|
#include "mini-gc.h"
|
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
|
|
|
|
// #include "lib.h"
|
|
|
|
|
// #include "math.h"
|
|
|
|
|
#include "mini-mes.h"
|
|
|
|
|
// #include "posix.h"
|
|
|
|
|
// #include "reader.h"
|
2017-04-02 15:01:22 +00:00
|
|
|
|
#include "mini-vector.h"
|
2017-04-02 10:01:33 +00:00
|
|
|
|
|
|
|
|
|
|
2017-01-02 06:50:44 +00:00
|
|
|
|
#define TYPE(x) (g_cells[x].type)
|
2017-04-02 10:01:33 +00:00
|
|
|
|
|
|
|
|
|
#define CAR(x) g_cells[x].car
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
#define LENGTH(x) g_cells[x].car
|
2017-03-25 13:05:17 +00:00
|
|
|
|
#define REF(x) g_cells[x].car
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
#define STRING(x) g_cells[x].car
|
2017-04-02 10:01:33 +00:00
|
|
|
|
|
|
|
|
|
#define CDR(x) g_cells[x].cdr
|
2017-03-06 06:14:15 +00:00
|
|
|
|
#define CLOSURE(x) g_cells[x].cdr
|
2017-01-18 06:38:45 +00:00
|
|
|
|
#define CONTINUATION(x) g_cells[x].cdr
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
|
2017-03-02 19:26:13 +00:00
|
|
|
|
#define FUNCTION(x) g_functions[g_cells[x].cdr]
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
#define MACRO(x) g_cells[x].cdr
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
#define VALUE(x) g_cells[x].cdr
|
|
|
|
|
#define VECTOR(x) g_cells[x].cdr
|
2017-04-02 10:01:33 +00:00
|
|
|
|
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
#define NTYPE(x) g_news[x].type
|
|
|
|
|
|
|
|
|
|
#define NCAR(x) g_news[x].car
|
|
|
|
|
#define NLENGTH(x) g_news[x].car
|
|
|
|
|
|
|
|
|
|
#define NCDR(x) g_news[x].cdr
|
|
|
|
|
#define NVALUE(x) g_news[x].cdr
|
|
|
|
|
#define NVECTOR(x) g_news[x].cdr
|
|
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
|
#define MAKE_CHAR(n) make_cell_ (tmp_num_ (TCHAR), 0, tmp_num2_ (n))
|
|
|
|
|
#define MAKE_CONTINUATION(n) make_cell_ (tmp_num_ (TCONTINUATION), n, g_stack)
|
|
|
|
|
#define MAKE_NUMBER(n) make_cell_ (tmp_num_ (TNUMBER), 0, tmp_num2_ (n))
|
2017-03-25 13:05:17 +00:00
|
|
|
|
#define MAKE_REF(n) make_cell_ (tmp_num_ (TREF), n, 0)
|
2017-01-18 06:38:45 +00:00
|
|
|
|
|
|
|
|
|
#define CAAR(x) CAR (CAR (x))
|
2017-03-25 14:58:44 +00:00
|
|
|
|
#define CADR(x) CAR (CDR (x))
|
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
|
|
|
|
#define CDAR(x) CDR (CAR (x))
|
2017-03-25 14:58:44 +00:00
|
|
|
|
#define CDDR(x) CDR (CDR (x))
|
2017-01-18 06:38:45 +00:00
|
|
|
|
#define CADAR(x) CAR (CDR (CAR (x)))
|
2017-03-06 06:14:15 +00:00
|
|
|
|
#define CADDR(x) CAR (CDR (CDR (x)))
|
2017-01-18 06:38:45 +00:00
|
|
|
|
#define CDADAR(x) CAR (CDR (CAR (CDR (x))))
|
|
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
|
#define MAKE_STRING(x) make_cell_ (tmp_num_ (TSTRING), x, 0)
|
2017-04-02 10:01:33 +00:00
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
alloc (int n)
|
|
|
|
|
{
|
|
|
|
|
assert (g_free + n < ARENA_SIZE);
|
|
|
|
|
SCM x = g_free;
|
|
|
|
|
g_free += n;
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-07 21:33:59 +00:00
|
|
|
|
#define DEBUG 0
|
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
SCM
|
2017-03-25 14:58:44 +00:00
|
|
|
|
tmp_num_ (int x)
|
|
|
|
|
{
|
|
|
|
|
VALUE (tmp_num) = x;
|
|
|
|
|
return tmp_num;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
tmp_num2_ (int x)
|
|
|
|
|
{
|
|
|
|
|
VALUE (tmp_num2) = x;
|
|
|
|
|
return tmp_num2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
make_cell_ (SCM type, SCM car, SCM cdr)
|
2017-04-02 10:01:33 +00:00
|
|
|
|
{
|
|
|
|
|
SCM x = alloc (1);
|
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 (type) == TNUMBER);
|
2017-04-02 10:01:33 +00:00
|
|
|
|
TYPE (x) = VALUE (type);
|
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
|
|
|
|
if (VALUE (type) == TCHAR || VALUE (type) == TNUMBER) {
|
2017-04-02 10:01:33 +00:00
|
|
|
|
if (car) CAR (x) = CAR (car);
|
2017-01-02 06:50:44 +00:00
|
|
|
|
if (cdr) CDR(x) = CDR(cdr);
|
2017-02-24 12:27:39 +00:00
|
|
|
|
}
|
|
|
|
|
else if (VALUE (type) == TFUNCTION) {
|
2017-04-02 10:01:33 +00:00
|
|
|
|
if (car) CAR (x) = car;
|
2017-01-02 06:50:44 +00:00
|
|
|
|
if (cdr) CDR(x) = CDR(cdr);
|
2017-02-24 12:27:39 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
2017-04-02 10:01:33 +00:00
|
|
|
|
CAR (x) = car;
|
2017-01-02 06:50:44 +00:00
|
|
|
|
CDR(x) = cdr;
|
2017-04-02 10:01:33 +00:00
|
|
|
|
}
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
SCM
|
2017-03-25 14:58:44 +00:00
|
|
|
|
make_symbol_ (SCM s) ///((internal))
|
2017-04-02 10:01:33 +00:00
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
VALUE (tmp_num) = TSYMBOL;
|
|
|
|
|
SCM x = make_cell_ (tmp_num, s, 0);
|
|
|
|
|
g_symbols = cons (x, g_symbols);
|
|
|
|
|
return x;
|
2017-04-02 10:01:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
2017-03-25 14:58:44 +00:00
|
|
|
|
lookup_symbol_ (SCM s)
|
2017-04-02 10:01:33 +00:00
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
SCM x = g_symbols;
|
|
|
|
|
while (x) {
|
|
|
|
|
//if (list_of_char_equal_p (STRING (car (x)), s) == cell_t) break;
|
|
|
|
|
if (list_of_char_equal_p (STRING (car (x)), s) == cell_t) goto dun;
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
dun:
|
|
|
|
|
if (x) x = car (x);
|
|
|
|
|
if (!x) x = make_symbol_ (s);
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
list_of_char_equal_p (SCM a, SCM b) ///((internal))
|
|
|
|
|
{
|
|
|
|
|
while (a != cell_nil && b != cell_nil && VALUE (car (a)) == VALUE (car (b))) {
|
|
|
|
|
assert (TYPE (car (a)) == TCHAR);
|
|
|
|
|
assert (TYPE (car (b)) == TCHAR);
|
|
|
|
|
a = cdr (a);
|
|
|
|
|
b = cdr (b);
|
|
|
|
|
}
|
|
|
|
|
return (a == cell_nil && b == cell_nil) ? cell_t : cell_f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
type_ (SCM x)
|
|
|
|
|
{
|
|
|
|
|
return MAKE_NUMBER (TYPE (x));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
car_ (SCM x)
|
|
|
|
|
{
|
|
|
|
|
return (TYPE (x) != TCONTINUATION
|
|
|
|
|
&& (TYPE (CAR (x)) == TPAIR // FIXME: this is weird
|
|
|
|
|
|| TYPE (CAR (x)) == TREF
|
|
|
|
|
|| TYPE (CAR (x)) == TSPECIAL
|
|
|
|
|
|| TYPE (CAR (x)) == TSYMBOL
|
|
|
|
|
|| TYPE (CAR (x)) == TSTRING)) ? CAR (x) : MAKE_NUMBER (CAR (x));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
cdr_ (SCM x)
|
|
|
|
|
{
|
|
|
|
|
return (TYPE (CDR (x)) == TPAIR
|
|
|
|
|
|| TYPE (CDR (x)) == TREF
|
|
|
|
|
|| TYPE (CAR (x)) == TSPECIAL
|
|
|
|
|
|| TYPE (CDR (x)) == TSYMBOL
|
|
|
|
|
|| TYPE (CDR (x)) == TSTRING) ? CDR (x) : MAKE_NUMBER (CDR (x));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
arity_ (SCM x)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (x) == TFUNCTION);
|
|
|
|
|
return MAKE_NUMBER (FUNCTION (x).arity);
|
2017-04-02 10:01:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
cons (SCM x, SCM y)
|
|
|
|
|
{
|
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
|
|
|
|
VALUE (tmp_num) = TPAIR;
|
2017-03-25 14:58:44 +00:00
|
|
|
|
return make_cell_ (tmp_num, x, y);
|
2017-04-02 10:01:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
car (SCM x)
|
|
|
|
|
{
|
|
|
|
|
#if MES_MINI
|
2017-01-02 06:50:44 +00:00
|
|
|
|
//Nyacc
|
|
|
|
|
//assert ("!car");
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#else
|
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
|
|
|
|
if (TYPE (x) != TPAIR) error (cell_symbol_not_a_pair, cons (x, cell_symbol_car));
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#endif
|
|
|
|
|
return CAR (x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
cdr (SCM x)
|
|
|
|
|
{
|
|
|
|
|
#if MES_MINI
|
2017-01-02 06:50:44 +00:00
|
|
|
|
//Nyacc
|
|
|
|
|
//assert ("!cdr");
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#else
|
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
|
|
|
|
if (TYPE (x) != TPAIR) error (cell_symbol_not_a_pair, cons (x, cell_symbol_cdr));
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#endif
|
2017-01-02 06:50:44 +00:00
|
|
|
|
return CDR(x);
|
|
|
|
|
}
|
2017-04-02 10:01:33 +00:00
|
|
|
|
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
SCM
|
|
|
|
|
list (SCM x) ///((arity . n))
|
|
|
|
|
{
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-07 21:33:59 +00:00
|
|
|
|
SCM
|
|
|
|
|
null_p (SCM x)
|
|
|
|
|
{
|
|
|
|
|
return x == cell_nil ? cell_t : cell_f;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
SCM
|
|
|
|
|
eq_p (SCM x, SCM y)
|
|
|
|
|
{
|
|
|
|
|
return (x == y
|
|
|
|
|
|| ((TYPE (x) == TKEYWORD && TYPE (y) == TKEYWORD
|
|
|
|
|
&& STRING (x) == STRING (y)))
|
|
|
|
|
|| (TYPE (x) == TCHAR && TYPE (y) == TCHAR
|
|
|
|
|
&& VALUE (x) == VALUE (y))
|
|
|
|
|
|| (TYPE (x) == TNUMBER && TYPE (y) == TNUMBER
|
|
|
|
|
&& VALUE (x) == VALUE (y)))
|
|
|
|
|
? cell_t : cell_f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
2017-03-25 14:58:44 +00:00
|
|
|
|
values (SCM x) ///((arity . n))
|
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
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
SCM v = cons (0, x);
|
|
|
|
|
TYPE (v) = TVALUES;
|
|
|
|
|
return v;
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
2017-03-25 14:58:44 +00:00
|
|
|
|
acons (SCM key, SCM value, SCM alist)
|
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
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
return cons (cons (key, value), alist);
|
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
|
|
|
|
}
|
|
|
|
|
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
SCM
|
|
|
|
|
length (SCM x)
|
|
|
|
|
{
|
|
|
|
|
int n = 0;
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
n++;
|
|
|
|
|
if (TYPE (x) != TPAIR) return MAKE_NUMBER (-1);
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
error (SCM key, SCM x)
|
|
|
|
|
{
|
|
|
|
|
SCM throw;
|
|
|
|
|
if ((throw = assq_ref_env (cell_symbol_throw, r0)) != cell_undefined)
|
|
|
|
|
return apply (throw, cons (key, cons (x, cell_nil)), r0);
|
2017-03-26 20:12:24 +00:00
|
|
|
|
display_error_ (key);
|
|
|
|
|
eputs (": ");
|
2017-03-25 14:58:44 +00:00
|
|
|
|
display_ (x);
|
2017-03-26 20:12:24 +00:00
|
|
|
|
eputs ("\n");
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
assert (0);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
SCM
|
|
|
|
|
assert_defined (SCM x, SCM e) ///((internal))
|
2017-03-06 06:14:15 +00:00
|
|
|
|
{
|
|
|
|
|
if (e != cell_undefined) return e;
|
|
|
|
|
// error (cell_symbol_unbound_variable, x);
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
eputs ("unbound variable: ");
|
2017-03-25 14:58:44 +00:00
|
|
|
|
display_error_ (x);
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
eputs ("\n");
|
2017-03-06 06:14:15 +00:00
|
|
|
|
exit (33);
|
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
cstring_to_list (char const* s)
|
|
|
|
|
{
|
|
|
|
|
char *x = s;
|
|
|
|
|
SCM p = cell_nil;
|
|
|
|
|
int i = strlen (s);
|
|
|
|
|
while (i--)
|
|
|
|
|
{
|
|
|
|
|
p = cons (MAKE_CHAR (s[i]), p);
|
|
|
|
|
x++;
|
|
|
|
|
}
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
SCM
|
|
|
|
|
check_formals (SCM f, SCM formals, SCM args) ///((internal))
|
|
|
|
|
{
|
|
|
|
|
int flen = (TYPE (formals) == TNUMBER) ? VALUE (formals) : VALUE (length (formals));
|
|
|
|
|
int alen = VALUE (length (args));
|
|
|
|
|
if (alen != flen && alen != -1 && flen != -1)
|
|
|
|
|
{
|
|
|
|
|
// FIXME
|
|
|
|
|
//char buf[1024];
|
|
|
|
|
char buf = "TODO:check_formals";
|
|
|
|
|
// sprintf (buf, "apply: wrong number of arguments; expected: %d, got: %d: ", flen, alen);
|
|
|
|
|
eputs ("apply: wrong number of arguments; expected: ");
|
|
|
|
|
eputs (itoa (flen));
|
|
|
|
|
eputs (", got: ");
|
|
|
|
|
eputs (itoa (alen));
|
|
|
|
|
eputs ("\n");
|
2017-03-25 14:58:44 +00:00
|
|
|
|
display_error_ (f);
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
SCM e = MAKE_STRING (cstring_to_list (buf));
|
|
|
|
|
return error (cell_symbol_wrong_number_of_args, cons (e, f));
|
|
|
|
|
}
|
|
|
|
|
return cell_unspecified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
check_apply (SCM f, SCM e) ///((internal))
|
|
|
|
|
{
|
|
|
|
|
//char const* type = 0;
|
|
|
|
|
char* type = 0;
|
|
|
|
|
if (f == cell_f || f == cell_t) type = "bool";
|
|
|
|
|
if (f == cell_nil) type = "nil";
|
|
|
|
|
if (f == cell_unspecified) type = "*unspecified*";
|
|
|
|
|
if (f == cell_undefined) type = "*undefined*";
|
|
|
|
|
if (TYPE (f) == TCHAR) type = "char";
|
|
|
|
|
if (TYPE (f) == TNUMBER) type = "number";
|
|
|
|
|
if (TYPE (f) == TSTRING) type = "string";
|
|
|
|
|
|
|
|
|
|
if (type)
|
|
|
|
|
{
|
|
|
|
|
//FIXME
|
|
|
|
|
//char buf[1024];
|
|
|
|
|
char buf = "TODO:check_apply";
|
|
|
|
|
// sprintf (buf, "cannot apply: %s:", type);
|
|
|
|
|
// fprintf (stderr, " [");
|
2017-03-25 14:58:44 +00:00
|
|
|
|
// display_error_ (e);
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
// fprintf (stderr, "]\n");
|
|
|
|
|
eputs ("cannot apply: ");
|
|
|
|
|
eputs (type);
|
|
|
|
|
eputs ("[");
|
2017-03-25 14:58:44 +00:00
|
|
|
|
display_error_ (e);
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
eputs ("]\n");
|
|
|
|
|
SCM e = MAKE_STRING (cstring_to_list (buf));
|
|
|
|
|
return error (cell_symbol_wrong_type_arg, cons (e, f));
|
|
|
|
|
}
|
|
|
|
|
return cell_unspecified;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-18 06:38:45 +00:00
|
|
|
|
SCM
|
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
|
|
|
|
gc_push_frame () ///((internal))
|
2017-01-18 06:38:45 +00:00
|
|
|
|
{
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
SCM frame = cons (r1, cons (r2, cons (r3, cons (r0, cell_nil))));
|
|
|
|
|
g_stack = cons (frame, g_stack);
|
|
|
|
|
return g_stack;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
SCM
|
|
|
|
|
apply (SCM f, SCM x, SCM a) ///((internal))
|
|
|
|
|
{
|
|
|
|
|
push_cc (cons (f, x), cell_unspecified, r0, cell_unspecified);
|
|
|
|
|
r3 = cell_vm_apply;
|
|
|
|
|
return eval_apply ();
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-18 06:38:45 +00:00
|
|
|
|
SCM
|
|
|
|
|
append2 (SCM x, SCM y)
|
|
|
|
|
{
|
|
|
|
|
if (x == cell_nil) return y;
|
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) == TPAIR);
|
2017-01-18 06:38:45 +00:00
|
|
|
|
return cons (car (x), append2 (cdr (x), y));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
pairlis (SCM x, SCM y, SCM a)
|
|
|
|
|
{
|
|
|
|
|
if (x == cell_nil)
|
|
|
|
|
return a;
|
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
|
|
|
|
if (TYPE (x) != TPAIR)
|
2017-01-18 06:38:45 +00:00
|
|
|
|
return cons (cons (x, y), a);
|
|
|
|
|
return cons (cons (car (x), car (y)),
|
|
|
|
|
pairlis (cdr (x), cdr (y), a));
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
SCM display_ (SCM);
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
call (SCM fn, SCM x)
|
|
|
|
|
{
|
|
|
|
|
if ((FUNCTION (fn).arity > 0 || FUNCTION (fn).arity == -1)
|
|
|
|
|
&& x != cell_nil && TYPE (CAR (x)) == TVALUES)
|
|
|
|
|
x = cons (CADAR (x), CDR (x));
|
|
|
|
|
if ((FUNCTION (fn).arity > 1 || FUNCTION (fn).arity == -1)
|
|
|
|
|
&& x != cell_nil && TYPE (CDR (x)) == TPAIR && TYPE (CADR (x)) == TVALUES)
|
|
|
|
|
x = cons (CAR (x), cons (CDADAR (x), CDR (x)));
|
|
|
|
|
switch (FUNCTION (fn).arity)
|
|
|
|
|
{
|
|
|
|
|
case 0: {return (FUNCTION (fn).function) ();}
|
2017-03-25 14:58:44 +00:00
|
|
|
|
case 1: {return ((SCM(*)(SCM))(FUNCTION (fn).function)) (CAR (x));}
|
|
|
|
|
case 2: {return ((SCM(*)(SCM,SCM))(FUNCTION (fn).function)) (CAR (x), CADR (x));}
|
|
|
|
|
case 3: {return ((SCM(*)(SCM,SCM,SCM))(FUNCTION (fn).function)) (CAR (x), CADR (x), car (CDDR (x)));}
|
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
|
|
|
|
case -1: {return ((SCM(*)(SCM))(FUNCTION (fn).function)) (x);}
|
|
|
|
|
default: {return ((SCM(*)(SCM))(FUNCTION (fn).function)) (x);}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return cell_unspecified;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-18 06:38:45 +00:00
|
|
|
|
SCM
|
|
|
|
|
assq (SCM x, SCM a)
|
|
|
|
|
{
|
2017-04-02 11:18:22 +00:00
|
|
|
|
//FIXME: move into fast-non eq_p-ing assq core:assq?
|
|
|
|
|
//while (a != cell_nil && x != CAAR (a)) a = CDR (a);
|
|
|
|
|
while (a != cell_nil && eq_p (x, CAAR (a)) == cell_f) a = CDR (a);
|
2017-01-18 06:38:45 +00:00
|
|
|
|
return a != cell_nil ? car (a) : cell_f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
assq_ref_env (SCM x, SCM a)
|
|
|
|
|
{
|
|
|
|
|
x = assq (x, a);
|
|
|
|
|
if (x == cell_f) return cell_undefined;
|
|
|
|
|
return cdr (x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
2017-03-06 06:14:15 +00:00
|
|
|
|
set_car_x (SCM x, SCM e)
|
2017-01-18 06:38:45 +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) == TPAIR);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
CAR (x) = e;
|
|
|
|
|
return cell_unspecified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
set_cdr_x (SCM x, SCM e)
|
|
|
|
|
{
|
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
|
|
|
|
//if (TYPE (x) != TPAIR) error (cell_symbol_not_a_pair, cons (x, cell_set_cdr_x));
|
2017-03-06 06:14:15 +00:00
|
|
|
|
CDR (x) = e;
|
|
|
|
|
return cell_unspecified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
set_env_x (SCM x, SCM e, SCM a)
|
|
|
|
|
{
|
|
|
|
|
SCM p = assert_defined (x, assq (x, a));
|
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
|
|
|
|
//if (TYPE (p) != TPAIR) error (cell_symbol_not_a_pair, cons (p, x));
|
2017-03-06 06:14:15 +00:00
|
|
|
|
return set_cdr_x (p, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
call_lambda (SCM e, SCM x, SCM aa, SCM a) ///((internal))
|
|
|
|
|
{
|
2017-03-17 16:54:37 +00:00
|
|
|
|
SCM cl = cons (cons (cell_closure, x), x);
|
2017-03-12 11:02:12 +00:00
|
|
|
|
cl = cons (cons (cell_closure, x), x);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
r1 = e;
|
|
|
|
|
r0 = cl;
|
|
|
|
|
return cell_unspecified;
|
2017-01-18 06:38:45 +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
|
|
|
|
SCM
|
2017-03-25 14:58:44 +00:00
|
|
|
|
make_closure_ (SCM args, SCM body, SCM a) ///((internal))
|
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
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
return make_cell_ (tmp_num_ (TCLOSURE), cell_f, cons (cons (cell_circular, a), cons (args, body)));
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
2017-03-25 14:58:44 +00:00
|
|
|
|
lookup_macro_ (SCM x, SCM a) ///((internal))
|
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
|
|
|
|
{
|
|
|
|
|
if (TYPE (x) != TSYMBOL) return cell_f;
|
|
|
|
|
SCM m = assq_ref_env (x, a);
|
2017-03-25 14:58:44 +00:00
|
|
|
|
if (TYPE (m) == TMACRO) return MACRO (m);
|
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
|
|
|
|
return cell_f;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
SCM
|
|
|
|
|
push_cc (SCM p1, SCM p2, SCM a, SCM c) ///((internal))
|
|
|
|
|
{
|
|
|
|
|
SCM x = r3;
|
|
|
|
|
r3 = c;
|
|
|
|
|
r2 = p2;
|
|
|
|
|
gc_push_frame ();
|
|
|
|
|
r1 = p1;
|
|
|
|
|
r0 = a;
|
|
|
|
|
r3 = x;
|
|
|
|
|
return cell_unspecified;
|
|
|
|
|
}
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +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
|
|
|
|
SCM gc_pop_frame (); //((internal))
|
2017-01-18 06:38:45 +00:00
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
eval_apply ()
|
|
|
|
|
{
|
|
|
|
|
eval_apply:
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
#if MES_GC
|
|
|
|
|
if (g_free + GC_SAFETY > ARENA_SIZE)
|
|
|
|
|
gc_pop_frame (gc (gc_push_frame ()));
|
|
|
|
|
#endif
|
2017-01-18 06:38:45 +00:00
|
|
|
|
switch (r3)
|
|
|
|
|
{
|
|
|
|
|
case cell_vm_evlis: goto evlis;
|
|
|
|
|
case cell_vm_evlis2: goto evlis2;
|
|
|
|
|
case cell_vm_evlis3: goto evlis3;
|
2017-03-06 06:14:15 +00:00
|
|
|
|
case cell_vm_apply: goto apply;
|
|
|
|
|
case cell_vm_apply2: goto apply2;
|
|
|
|
|
case cell_vm_eval: goto eval;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
#if FIXED_PRIMITIVES
|
|
|
|
|
case cell_vm_eval_car: goto eval_car;
|
|
|
|
|
case cell_vm_eval_cdr: goto eval_cdr;
|
|
|
|
|
case cell_vm_eval_cons: goto eval_cons;
|
|
|
|
|
case cell_vm_eval_null_p: goto eval_null_p;
|
|
|
|
|
#endif
|
|
|
|
|
case cell_vm_eval_set_x: goto eval_set_x;
|
|
|
|
|
case cell_vm_eval_macro: goto eval_macro;
|
2017-03-27 18:14:48 +00:00
|
|
|
|
case cell_vm_eval_check_func: goto eval_check_func;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
case cell_vm_eval2: goto eval2;
|
|
|
|
|
case cell_vm_macro_expand: goto macro_expand;
|
2017-03-06 06:14:15 +00:00
|
|
|
|
case cell_vm_begin: goto begin;
|
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
|
|
|
|
case cell_vm_begin_read_input_file: goto begin_read_input_file;
|
2017-03-06 06:14:15 +00:00
|
|
|
|
case cell_vm_begin2: goto begin2;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
case cell_vm_if: goto vm_if;
|
|
|
|
|
case cell_vm_if_expr: goto if_expr;
|
|
|
|
|
case cell_vm_call_with_current_continuation2: goto call_with_current_continuation2;
|
|
|
|
|
case cell_vm_call_with_values2: goto call_with_values2;
|
|
|
|
|
case cell_vm_return: goto vm_return;
|
2017-03-06 06:14:15 +00:00
|
|
|
|
case cell_unspecified: return r1;
|
|
|
|
|
default: assert (0);
|
2017-01-18 06:38:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM x = cell_nil;
|
|
|
|
|
SCM y = cell_nil;
|
2017-03-06 06:14:15 +00:00
|
|
|
|
evlis:
|
|
|
|
|
if (r1 == cell_nil) goto vm_return;
|
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
|
|
|
|
if (TYPE (r1) != TPAIR) goto eval;
|
2017-03-06 06:14:15 +00:00
|
|
|
|
push_cc (car (r1), r1, r0, cell_vm_evlis2);
|
|
|
|
|
goto eval;
|
|
|
|
|
evlis2:
|
|
|
|
|
push_cc (cdr (r2), r1, r0, cell_vm_evlis3);
|
|
|
|
|
goto evlis;
|
|
|
|
|
evlis3:
|
|
|
|
|
r1 = cons (r2, r1);
|
|
|
|
|
goto vm_return;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
|
|
|
|
|
apply:
|
|
|
|
|
switch (TYPE (car (r1)))
|
|
|
|
|
{
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
case TFUNCTION: {
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
check_formals (car (r1), MAKE_NUMBER (FUNCTION (car (r1)).arity), cdr (r1));
|
2017-01-18 06:38:45 +00:00
|
|
|
|
r1 = call (car (r1), cdr (r1)); /// FIXME: move into eval_apply
|
|
|
|
|
goto vm_return;
|
|
|
|
|
}
|
2017-03-06 06:14:15 +00:00
|
|
|
|
case TCLOSURE:
|
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
SCM cl = CLOSURE (CAR (r1));
|
|
|
|
|
SCM formals = CADR (cl);
|
|
|
|
|
SCM body = CDDR (cl);
|
|
|
|
|
SCM aa = CDAR (cl);
|
|
|
|
|
aa = CDR (aa);
|
|
|
|
|
check_formals (CAR (r1), formals, CDR (r1));
|
|
|
|
|
SCM p = pairlis (formals, CDR (r1), aa);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
call_lambda (body, p, aa, r0);
|
|
|
|
|
goto begin;
|
|
|
|
|
}
|
|
|
|
|
case TCONTINUATION:
|
|
|
|
|
{
|
|
|
|
|
x = r1;
|
|
|
|
|
g_stack = CONTINUATION (CAR (r1));
|
|
|
|
|
gc_pop_frame ();
|
2017-03-25 14:58:44 +00:00
|
|
|
|
r1 = CADR (x);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
goto eval_apply;
|
|
|
|
|
}
|
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
|
|
|
|
case TSPECIAL:
|
2017-03-06 06:14:15 +00:00
|
|
|
|
{
|
|
|
|
|
switch (car (r1))
|
|
|
|
|
{
|
|
|
|
|
case cell_vm_apply:
|
|
|
|
|
{
|
|
|
|
|
push_cc (cons (CADR (r1), CADDR (r1)), r1, r0, cell_vm_return);
|
|
|
|
|
goto apply;
|
|
|
|
|
}
|
|
|
|
|
case cell_vm_eval:
|
|
|
|
|
{
|
|
|
|
|
push_cc (CADR (r1), r1, CADDR (r1), cell_vm_return);
|
|
|
|
|
goto eval;
|
|
|
|
|
}
|
|
|
|
|
case cell_call_with_current_continuation:
|
|
|
|
|
{
|
|
|
|
|
r1 = cdr (r1);
|
|
|
|
|
goto call_with_current_continuation;
|
|
|
|
|
}
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
default: check_apply (cell_f, car (r1));
|
2017-03-06 06:14:15 +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
|
|
|
|
case TSYMBOL:
|
2017-03-06 06:14:15 +00:00
|
|
|
|
{
|
|
|
|
|
if (car (r1) == cell_symbol_call_with_values)
|
|
|
|
|
{
|
|
|
|
|
r1 = cdr (r1);
|
|
|
|
|
goto call_with_values;
|
|
|
|
|
}
|
|
|
|
|
if (car (r1) == cell_symbol_current_module)
|
|
|
|
|
{
|
|
|
|
|
r1 = r0;
|
|
|
|
|
goto vm_return;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
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
|
|
|
|
case TPAIR:
|
2017-03-06 06:14:15 +00:00
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
switch (CAAR (r1))
|
2017-03-06 06:14:15 +00:00
|
|
|
|
{
|
|
|
|
|
case cell_symbol_lambda:
|
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
SCM formals = CADR (car (r1));
|
|
|
|
|
SCM body = CDDR (car (r1));
|
2017-03-06 06:14:15 +00:00
|
|
|
|
SCM p = pairlis (formals, cdr (r1), r0);
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
check_formals (r1, formals, cdr (r1));
|
2017-03-06 06:14:15 +00:00
|
|
|
|
call_lambda (body, p, p, r0);
|
|
|
|
|
goto begin;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-18 06:38:45 +00:00
|
|
|
|
}
|
|
|
|
|
push_cc (car (r1), r1, r0, cell_vm_apply2);
|
|
|
|
|
goto eval;
|
|
|
|
|
apply2:
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
check_apply (r1, car (r2));
|
2017-01-18 06:38:45 +00:00
|
|
|
|
r1 = cons (r1, cdr (r2));
|
|
|
|
|
goto apply;
|
|
|
|
|
|
|
|
|
|
eval:
|
|
|
|
|
switch (TYPE (r1))
|
|
|
|
|
{
|
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
|
|
|
|
case TPAIR:
|
2017-01-18 06:38:45 +00:00
|
|
|
|
{
|
|
|
|
|
switch (car (r1))
|
|
|
|
|
{
|
2017-03-06 06:14:15 +00:00
|
|
|
|
#if FIXED_PRIMITIVES
|
|
|
|
|
case cell_symbol_car:
|
|
|
|
|
{
|
|
|
|
|
push_cc (CADR (r1), r1, r0, cell_vm_eval_car); goto eval;
|
|
|
|
|
eval_car:
|
|
|
|
|
x = r1; gc_pop_frame (); r1 = car (x); goto eval_apply;
|
|
|
|
|
}
|
|
|
|
|
case cell_symbol_cdr:
|
|
|
|
|
{
|
|
|
|
|
push_cc (CADR (r1), r1, r0, cell_vm_eval_cdr); goto eval;
|
|
|
|
|
eval_cdr:
|
|
|
|
|
x = r1; gc_pop_frame (); r1 = cdr (x); goto eval_apply;
|
|
|
|
|
}
|
|
|
|
|
case cell_symbol_cons: {
|
|
|
|
|
push_cc (CDR (r1), r1, r0, cell_vm_eval_cons); goto evlis;
|
|
|
|
|
eval_cons:
|
|
|
|
|
x = r1;
|
|
|
|
|
gc_pop_frame ();
|
|
|
|
|
r1 = cons (CAR (x), CADR (x));
|
|
|
|
|
goto eval_apply;
|
|
|
|
|
}
|
|
|
|
|
case cell_symbol_null_p:
|
|
|
|
|
{
|
|
|
|
|
push_cc (CADR (r1), r1, r0, cell_vm_eval_null_p);
|
|
|
|
|
goto eval;
|
|
|
|
|
eval_null_p:
|
|
|
|
|
x = r1; gc_pop_frame (); r1 = null_p (x); goto eval_apply;
|
|
|
|
|
}
|
|
|
|
|
#endif // FIXED_PRIMITIVES
|
|
|
|
|
case cell_symbol_quote:
|
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
x = r1; gc_pop_frame (); r1 = CADR (x); goto eval_apply;
|
2017-03-06 06:14:15 +00:00
|
|
|
|
}
|
|
|
|
|
case cell_symbol_begin: goto begin;
|
|
|
|
|
case cell_symbol_lambda:
|
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
r1 = make_closure_ (CADR (r1), CDDR (r1), assq (cell_closure, r0));
|
2017-03-06 06:14:15 +00:00
|
|
|
|
goto vm_return;
|
|
|
|
|
}
|
|
|
|
|
case cell_symbol_if: {r1=cdr (r1); goto vm_if;}
|
|
|
|
|
case cell_symbol_set_x:
|
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
push_cc (car (CDDR (r1)), r1, r0, cell_vm_eval_set_x);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
goto eval;
|
|
|
|
|
eval_set_x:
|
|
|
|
|
x = r2;
|
2017-03-25 14:58:44 +00:00
|
|
|
|
r1 = set_env_x (CADR (x), r1, r0);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
goto vm_return;
|
|
|
|
|
}
|
|
|
|
|
case cell_vm_macro_expand:
|
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
push_cc (CADR (r1), r1, r0, cell_vm_return);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
goto macro_expand;
|
|
|
|
|
}
|
2017-01-18 06:38:45 +00:00
|
|
|
|
default: {
|
|
|
|
|
push_cc (r1, r1, r0, cell_vm_eval_macro);
|
|
|
|
|
goto macro_expand;
|
|
|
|
|
eval_macro:
|
|
|
|
|
x = r2;
|
|
|
|
|
if (r1 != r2)
|
|
|
|
|
{
|
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
|
|
|
|
if (TYPE (r1) == TPAIR)
|
2017-01-18 06:38:45 +00:00
|
|
|
|
{
|
|
|
|
|
set_cdr_x (r2, cdr (r1));
|
|
|
|
|
set_car_x (r2, car (r1));
|
|
|
|
|
}
|
|
|
|
|
goto eval;
|
|
|
|
|
}
|
2017-03-27 18:14:48 +00:00
|
|
|
|
push_cc (car (r1), r1, r0, cell_vm_eval_check_func); goto eval;
|
|
|
|
|
eval_check_func:
|
|
|
|
|
push_cc (CDR (r2), r2, r0, cell_vm_eval2); goto evlis;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
eval2:
|
|
|
|
|
r1 = cons (car (r2), r1);
|
|
|
|
|
goto apply;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
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
|
|
|
|
case TSYMBOL:
|
2017-01-18 06:38:45 +00:00
|
|
|
|
{
|
|
|
|
|
r1 = assert_defined (r1, assq_ref_env (r1, r0));
|
|
|
|
|
goto vm_return;
|
|
|
|
|
}
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
default: {goto vm_return;}
|
2017-01-18 06:38:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-06 06:14:15 +00:00
|
|
|
|
SCM macro;
|
|
|
|
|
SCM expanders;
|
|
|
|
|
macro_expand:
|
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
|
|
|
|
if (TYPE (r1) == TPAIR
|
2017-03-25 14:58:44 +00:00
|
|
|
|
&& (macro = lookup_macro_ (car (r1), r0)) != cell_f)
|
2017-03-06 06:14:15 +00:00
|
|
|
|
{
|
|
|
|
|
r1 = cons (macro, CDR (r1));
|
|
|
|
|
goto apply;
|
|
|
|
|
}
|
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
|
|
|
|
else if (TYPE (r1) == TPAIR
|
|
|
|
|
&& TYPE (CAR (r1)) == TSYMBOL
|
2017-03-06 06:14:15 +00:00
|
|
|
|
&& ((expanders = assq_ref_env (cell_symbol_sc_expander_alist, r0)) != cell_undefined)
|
|
|
|
|
&& ((macro = assq (CAR (r1), expanders)) != cell_f))
|
|
|
|
|
{
|
|
|
|
|
SCM sc_expand = assq_ref_env (cell_symbol_macro_expand, r0);
|
|
|
|
|
if (sc_expand != cell_undefined && sc_expand != cell_f)
|
|
|
|
|
{
|
|
|
|
|
r1 = cons (sc_expand, cons (r1, cell_nil));
|
|
|
|
|
goto apply;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-12 11:02:12 +00:00
|
|
|
|
goto vm_return;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
begin:
|
|
|
|
|
x = cell_unspecified;
|
|
|
|
|
while (r1 != cell_nil) {
|
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
|
|
|
|
if (TYPE (r1) == TPAIR && TYPE (CAR (r1)) == TPAIR)
|
2017-01-18 06:38:45 +00:00
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
if (CAAR (r1) == cell_symbol_begin)
|
|
|
|
|
r1 = append2 (CDAR (r1), cdr (r1));
|
|
|
|
|
else if (CAAR (r1) == cell_symbol_primitive_load)
|
2017-01-18 06:38:45 +00:00
|
|
|
|
{
|
|
|
|
|
push_cc (cons (cell_symbol_read_input_file, cell_nil), r1, r0, cell_vm_begin_read_input_file);
|
|
|
|
|
goto apply;
|
|
|
|
|
begin_read_input_file:
|
|
|
|
|
r1 = append2 (r1, cdr (r2));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (CDR (r1) == cell_nil)
|
|
|
|
|
{
|
|
|
|
|
r1 = car (r1);
|
|
|
|
|
goto eval;
|
|
|
|
|
}
|
|
|
|
|
push_cc (CAR (r1), r1, r0, cell_vm_begin2);
|
|
|
|
|
goto eval;
|
|
|
|
|
begin2:
|
|
|
|
|
x = r1;
|
|
|
|
|
r1 = CDR (r2);
|
|
|
|
|
}
|
|
|
|
|
r1 = x;
|
|
|
|
|
goto vm_return;
|
|
|
|
|
|
2017-03-06 06:14:15 +00:00
|
|
|
|
vm_if:
|
|
|
|
|
push_cc (car (r1), r1, r0, cell_vm_if_expr);
|
|
|
|
|
goto eval;
|
|
|
|
|
if_expr:
|
|
|
|
|
x = r1;
|
|
|
|
|
r1 = r2;
|
|
|
|
|
if (x != cell_f)
|
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
r1 = CADR (r1);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
goto eval;
|
|
|
|
|
}
|
2017-03-25 14:58:44 +00:00
|
|
|
|
if (CDDR (r1) != cell_nil)
|
2017-03-06 06:14:15 +00:00
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
r1 = car (CDDR (r1));
|
2017-03-06 06:14:15 +00:00
|
|
|
|
goto eval;
|
|
|
|
|
}
|
|
|
|
|
r1 = cell_unspecified;
|
|
|
|
|
goto vm_return;
|
|
|
|
|
|
|
|
|
|
call_with_current_continuation:
|
|
|
|
|
gc_push_frame ();
|
|
|
|
|
#if __GNUC__
|
|
|
|
|
// FIXME GCC
|
|
|
|
|
x = MAKE_CONTINUATION (g_continuations++);
|
|
|
|
|
#else
|
|
|
|
|
x = MAKE_CONTINUATION (g_continuations);
|
|
|
|
|
g_continuations++;
|
|
|
|
|
#endif
|
|
|
|
|
gc_pop_frame ();
|
|
|
|
|
push_cc (cons (car (r1), cons (x, cell_nil)), x, r0, cell_vm_call_with_current_continuation2);
|
|
|
|
|
goto apply;
|
|
|
|
|
call_with_current_continuation2:
|
|
|
|
|
CONTINUATION (r2) = g_stack;
|
|
|
|
|
goto vm_return;
|
|
|
|
|
|
|
|
|
|
call_with_values:
|
|
|
|
|
push_cc (cons (car (r1), cell_nil), r1, r0, cell_vm_call_with_values2);
|
|
|
|
|
goto apply;
|
|
|
|
|
call_with_values2:
|
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
|
|
|
|
if (TYPE (r1) == TVALUES)
|
2017-03-06 06:14:15 +00:00
|
|
|
|
r1 = CDR (r1);
|
2017-03-25 14:58:44 +00:00
|
|
|
|
r1 = cons (CADR (r2), r1);
|
2017-03-06 06:14:15 +00:00
|
|
|
|
goto apply;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
|
|
|
|
|
vm_return:
|
|
|
|
|
x = r1;
|
|
|
|
|
gc_pop_frame ();
|
|
|
|
|
r1 = x;
|
|
|
|
|
goto eval_apply;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
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
|
|
|
|
gc_peek_frame () ///((internal))
|
2017-04-02 10:01:33 +00:00
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
SCM frame = CAR (g_stack);
|
|
|
|
|
r1 = CAR (frame);
|
|
|
|
|
r2 = CADR (frame);
|
|
|
|
|
r3 = CAR (CDDR (frame));
|
|
|
|
|
r0 = CADR (CDDR (frame));
|
2017-04-02 10:01:33 +00:00
|
|
|
|
return frame;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-18 06:38:45 +00:00
|
|
|
|
SCM
|
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
|
|
|
|
gc_pop_frame () ///((internal))
|
2017-01-18 06:38:45 +00:00
|
|
|
|
{
|
|
|
|
|
SCM frame = gc_peek_frame (g_stack);
|
|
|
|
|
g_stack = cdr (g_stack);
|
|
|
|
|
return frame;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
SCM
|
|
|
|
|
mes_g_stack (SCM a) ///((internal))
|
|
|
|
|
{
|
|
|
|
|
r0 = a;
|
|
|
|
|
r1 = MAKE_CHAR (0);
|
|
|
|
|
r2 = MAKE_CHAR (0);
|
|
|
|
|
r3 = MAKE_CHAR (0);
|
|
|
|
|
g_stack = cons (cell_nil, cell_nil);
|
|
|
|
|
return r0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Environment setup
|
|
|
|
|
SCM
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
make_tmps (struct scm* cells)
|
2017-04-02 10:01:33 +00:00
|
|
|
|
{
|
|
|
|
|
tmp = g_free++;
|
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
|
|
|
|
cells[tmp].type = TCHAR;
|
2017-04-02 10:01:33 +00:00
|
|
|
|
tmp_num = g_free++;
|
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
|
|
|
|
cells[tmp_num].type = TNUMBER;
|
2017-04-02 10:01:33 +00:00
|
|
|
|
tmp_num2 = g_free++;
|
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
|
|
|
|
cells[tmp_num2].type = TNUMBER;
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
return 0;
|
2017-04-02 10:01:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
// Posix
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
int
|
|
|
|
|
ungetchar (int c)
|
|
|
|
|
{
|
|
|
|
|
return ungetc (c, g_stdin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
peekchar ()
|
|
|
|
|
{
|
|
|
|
|
int c = getchar ();
|
|
|
|
|
ungetchar (c);
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
peek_byte ()
|
|
|
|
|
{
|
|
|
|
|
return MAKE_NUMBER (peekchar ());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
read_byte ()
|
|
|
|
|
{
|
|
|
|
|
return MAKE_NUMBER (getchar ());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
unread_byte (SCM i)
|
|
|
|
|
{
|
|
|
|
|
ungetchar (VALUE (i));
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
SCM
|
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
|
|
|
|
write_byte (SCM x) ///((arity . n))
|
2017-04-02 10:01:33 +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
|
|
|
|
SCM c = car (x);
|
|
|
|
|
SCM p = cdr (x);
|
|
|
|
|
int fd = 1;
|
|
|
|
|
if (TYPE (p) == TPAIR && TYPE (car (p)) == TNUMBER) fd = VALUE (car (p));
|
|
|
|
|
//FILE *f = fd == 1 ? stdout : stderr;
|
2017-04-02 10:29:09 +00:00
|
|
|
|
#if __GNUC__
|
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 (c) == TNUMBER || TYPE (c) == TCHAR);
|
2017-04-02 10:29:09 +00:00
|
|
|
|
#endif
|
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
|
|
|
|
// fputc (VALUE (c), f);
|
2017-03-17 16:54:37 +00:00
|
|
|
|
char cc = VALUE (c);
|
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
|
|
|
|
write (1, (char*)&cc, fd);
|
|
|
|
|
return c;
|
2017-04-02 10:01:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
char string_to_cstring_buf[1024];
|
|
|
|
|
char const*
|
|
|
|
|
string_to_cstring (SCM s)
|
|
|
|
|
{
|
|
|
|
|
//static char buf[1024];
|
|
|
|
|
//char *p = buf;
|
|
|
|
|
char *p = string_to_cstring_buf;
|
|
|
|
|
s = STRING(s);
|
|
|
|
|
while (s != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
*p++ = VALUE (car (s));
|
|
|
|
|
s = cdr (s);
|
|
|
|
|
}
|
|
|
|
|
*p = 0;
|
|
|
|
|
//return buf;
|
|
|
|
|
return string_to_cstring_buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
getenv_ (SCM s) ///((name . "getenv"))
|
|
|
|
|
{
|
|
|
|
|
#if 0
|
|
|
|
|
char *p = getenv (string_to_cstring (s));
|
|
|
|
|
return p ? MAKE_STRING (cstring_to_list (p)) : cell_f;
|
|
|
|
|
#else
|
|
|
|
|
return cell_t;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
open_input_file (SCM file_name)
|
|
|
|
|
{
|
|
|
|
|
return MAKE_NUMBER (open (string_to_cstring (file_name), O_RDONLY));
|
|
|
|
|
// char *s = string_to_cstring (file_name);
|
|
|
|
|
// int x = open (s, 0);
|
|
|
|
|
// return MAKE_NUMBER (x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
current_input_port ()
|
|
|
|
|
{
|
|
|
|
|
return MAKE_NUMBER (g_stdin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
set_current_input_port (SCM port)
|
|
|
|
|
{
|
|
|
|
|
g_stdin = VALUE (port) ? VALUE (port) : STDIN;
|
|
|
|
|
return current_input_port ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
force_output (SCM p) ///((arity . n))
|
|
|
|
|
{
|
|
|
|
|
#if 0
|
|
|
|
|
//FIXME
|
|
|
|
|
int fd = 1;
|
|
|
|
|
if (TYPE (p) == TPAIR && TYPE (car (p)) == TNUMBER) fd = VALUE (car (p));
|
|
|
|
|
FILE *f = fd == 1 ? stdout : stderr;
|
|
|
|
|
fflush (f);
|
|
|
|
|
#endif
|
|
|
|
|
return cell_unspecified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Math
|
|
|
|
|
SCM
|
|
|
|
|
greater_p (SCM x) ///((name . ">") (arity . n))
|
|
|
|
|
{
|
|
|
|
|
int n = INT_MAX;
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
if (VALUE (car (x)) >= n) return cell_f;
|
|
|
|
|
n = VALUE (car (x));
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return cell_t;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
less_p (SCM x) ///((name . "<") (arity . n))
|
|
|
|
|
{
|
|
|
|
|
int n = INT_MIN;
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
if (VALUE (car (x)) <= n) return cell_f;
|
|
|
|
|
n = VALUE (car (x));
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return cell_t;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
is_p (SCM x) ///((name . "=") (arity . n))
|
|
|
|
|
{
|
|
|
|
|
if (x == cell_nil) return cell_t;
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
int n = VALUE (car (x));
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
if (VALUE (car (x)) != n) return cell_f;
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return cell_t;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
minus (SCM x) ///((name . "-") (arity . n))
|
|
|
|
|
{
|
|
|
|
|
SCM a = car (x);
|
|
|
|
|
assert (TYPE (a) == TNUMBER);
|
|
|
|
|
int n = VALUE (a);
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
if (x == cell_nil)
|
|
|
|
|
n = -n;
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
#if __GNUC__
|
|
|
|
|
n -= VALUE (car (x));
|
|
|
|
|
#else
|
|
|
|
|
n = n - VALUE (car (x));
|
|
|
|
|
#endif
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
plus (SCM x) ///((name . "+") (arity . n))
|
|
|
|
|
{
|
|
|
|
|
int n = 0;
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
#if __GNUC__
|
|
|
|
|
n += VALUE (car (x));
|
|
|
|
|
#else
|
|
|
|
|
n = n + VALUE (car (x));
|
|
|
|
|
#endif
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
divide (SCM x) ///((name . "/") (arity . n))
|
|
|
|
|
{
|
|
|
|
|
int n = 1;
|
|
|
|
|
if (x != cell_nil) {
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
n = VALUE (car (x));
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
#if __GNUC__
|
|
|
|
|
n /= VALUE (car (x));
|
|
|
|
|
#else
|
|
|
|
|
n = n / VALUE (car (x));
|
|
|
|
|
#endif
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
modulo (SCM a, SCM b)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (a) == TNUMBER);
|
|
|
|
|
assert (TYPE (b) == TNUMBER);
|
|
|
|
|
int x = VALUE (a);
|
|
|
|
|
while (x < 0) x += VALUE (b);
|
|
|
|
|
return MAKE_NUMBER (x % VALUE (b));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
multiply (SCM x) ///((name . "*") (arity . n))
|
|
|
|
|
{
|
|
|
|
|
int n = 1;
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
#if __GNUC__
|
|
|
|
|
n *= VALUE (car (x));
|
|
|
|
|
#else
|
|
|
|
|
n = n * VALUE (car (x));
|
|
|
|
|
#endif
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
logior (SCM x) ///((arity . n))
|
|
|
|
|
{
|
|
|
|
|
int n = 0;
|
|
|
|
|
while (x != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (car (x)) == TNUMBER);
|
|
|
|
|
#if __GNUC__
|
|
|
|
|
n |= VALUE (car (x));
|
|
|
|
|
#else
|
2017-03-24 22:15:01 +00:00
|
|
|
|
n = n | VALUE (car (x));
|
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
|
|
|
|
#endif
|
|
|
|
|
x = cdr (x);
|
|
|
|
|
}
|
|
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
ash (SCM n, SCM count)
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (n) == TNUMBER);
|
|
|
|
|
assert (TYPE (count) == TNUMBER);
|
|
|
|
|
int cn = VALUE (n);
|
|
|
|
|
int ccount = VALUE (count);
|
|
|
|
|
return MAKE_NUMBER ((ccount < 0) ? cn >> -ccount : cn << ccount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lib [rest of]
|
|
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
|
int g_depth;
|
|
|
|
|
|
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
|
2017-03-25 14:58:44 +00:00
|
|
|
|
display_helper (SCM x, int cont, char* sep, int fd)
|
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
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
fputs (sep, fd);
|
|
|
|
|
if (g_depth == 0) return cell_unspecified;
|
|
|
|
|
g_depth = g_depth - 1;
|
|
|
|
|
|
|
|
|
|
switch (TYPE (x))
|
|
|
|
|
{
|
|
|
|
|
case TCHAR:
|
|
|
|
|
{
|
|
|
|
|
fputs ("#\\", fd);
|
|
|
|
|
putc (VALUE (x), fd);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case TFUNCTION:
|
|
|
|
|
{
|
|
|
|
|
fputs ("#<procedure ", fd);
|
|
|
|
|
char *p = "?";
|
|
|
|
|
if (FUNCTION (x).name != 0)
|
|
|
|
|
p = FUNCTION (x).name;
|
|
|
|
|
fputs (p, fd);
|
|
|
|
|
fputs ("[", fd);
|
|
|
|
|
fputs (itoa (CDR (x)), fd);
|
|
|
|
|
fputs (",", fd);
|
|
|
|
|
fputs (itoa (x), fd);
|
|
|
|
|
fputs ("]>", fd);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case TMACRO:
|
|
|
|
|
{
|
|
|
|
|
fputs ("#<macro ", fd);
|
|
|
|
|
display_helper (cdr (x), cont, "", fd);
|
|
|
|
|
fputs (">", fd);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case TNUMBER:
|
|
|
|
|
{
|
|
|
|
|
fputs (itoa (VALUE (x)), fd);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case TPAIR:
|
|
|
|
|
{
|
|
|
|
|
if (!cont) fputs ("(", fd);
|
|
|
|
|
if (x && x != cell_nil) fdisplay_ (CAR (x), fd);
|
|
|
|
|
if (CDR (x) && TYPE (CDR (x)) == TPAIR)
|
|
|
|
|
display_helper (CDR (x), 1, " ", fd);
|
|
|
|
|
else if (CDR (x) && CDR (x) != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
if (TYPE (CDR (x)) != TPAIR)
|
|
|
|
|
fputs (" . ", fd);
|
|
|
|
|
fdisplay_ (CDR (x), fd);
|
|
|
|
|
}
|
|
|
|
|
if (!cont) fputs (")", fd);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case TSPECIAL:
|
|
|
|
|
#if __NYACC__
|
|
|
|
|
// FIXME
|
|
|
|
|
//{}
|
|
|
|
|
{
|
|
|
|
|
SCM t = CAR (x);
|
|
|
|
|
while (t && t != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
putc (VALUE (CAR (t)), fd);
|
|
|
|
|
t = CDR (t);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
case TSTRING:
|
|
|
|
|
#if __NYACC__
|
|
|
|
|
// FIXME
|
|
|
|
|
{
|
|
|
|
|
SCM t = CAR (x);
|
|
|
|
|
while (t && t != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
putc (VALUE (CAR (t)), fd);
|
|
|
|
|
t = CDR (t);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
case TSYMBOL:
|
|
|
|
|
{
|
|
|
|
|
SCM t = CAR (x);
|
|
|
|
|
while (t && t != cell_nil)
|
|
|
|
|
{
|
|
|
|
|
putc (VALUE (CAR (t)), fd);
|
|
|
|
|
t = CDR (t);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
{
|
|
|
|
|
fputs ("<", fd);
|
|
|
|
|
fputs (itoa (TYPE (x)), fd);
|
|
|
|
|
fputs (":", fd);
|
|
|
|
|
fputs (itoa (x), fd);
|
|
|
|
|
fputs (">", fd);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
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
|
2017-03-25 14:58:44 +00:00
|
|
|
|
display_ (SCM x)
|
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
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
g_depth = 5;
|
|
|
|
|
return display_helper (x, 0, "", STDOUT);
|
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
|
2017-03-25 14:58:44 +00:00
|
|
|
|
display_error_ (SCM x)
|
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
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
g_depth = 5;
|
|
|
|
|
return display_helper (x, 0, "", STDERR);
|
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
|
2017-03-25 14:58:44 +00:00
|
|
|
|
fdisplay_ (SCM x, int fd) ///((internal))
|
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
|
|
|
|
{
|
2017-03-25 14:58:44 +00:00
|
|
|
|
g_depth = 5;
|
|
|
|
|
return display_helper (x, 0, "", fd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
exit_ (SCM x) ///((name . "exit"))
|
|
|
|
|
{
|
|
|
|
|
assert (TYPE (x) == TNUMBER);
|
|
|
|
|
exit (VALUE (x));
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
xassq (SCM x, SCM a) ///for speed in core only
|
|
|
|
|
{
|
|
|
|
|
while (a != cell_nil && x != CDAR (a)) a = CDR (a);
|
|
|
|
|
return a != cell_nil ? CAR (a) : cell_f;
|
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
|
// Jam Collector
|
|
|
|
|
SCM g_symbol_max;
|
|
|
|
|
|
2017-01-18 06:38:45 +00:00
|
|
|
|
SCM
|
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
|
|
|
|
gc_init_cells () ///((internal))
|
2017-01-18 06:38:45 +00:00
|
|
|
|
{
|
2017-04-02 10:31:15 +00:00
|
|
|
|
//return 0;
|
|
|
|
|
//g_cells = (scm *)malloc (ARENA_SIZE);
|
2017-04-01 21:30:45 +00:00
|
|
|
|
//int size = ARENA_SIZE * sizeof (struct scm);
|
|
|
|
|
int size = ARENA_SIZE * 12;
|
|
|
|
|
#if MES_GC
|
|
|
|
|
size = size * 2;
|
|
|
|
|
#endif
|
2017-04-02 10:31:15 +00:00
|
|
|
|
#if __GNUC__
|
2017-04-01 21:30:45 +00:00
|
|
|
|
arena = (char*)malloc (size);
|
2017-04-02 10:31:15 +00:00
|
|
|
|
#else
|
|
|
|
|
char *p = 0;
|
2017-04-01 21:30:45 +00:00
|
|
|
|
p = malloc (size);
|
2017-04-02 10:31:15 +00:00
|
|
|
|
arena = p;
|
|
|
|
|
#endif
|
|
|
|
|
g_cells = arena;
|
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
|
|
|
|
return 0;
|
2017-04-02 10:31:15 +00:00
|
|
|
|
//g_cells = (scm *)malloc (2*ARENA_SIZE*sizeof(scm));
|
2017-03-06 06:14:15 +00:00
|
|
|
|
|
2017-04-01 21:30:45 +00:00
|
|
|
|
TYPE (0) = TVECTOR;
|
|
|
|
|
LENGTH (0) = 1000;
|
|
|
|
|
VECTOR (0) = 0;
|
|
|
|
|
g_cells++;
|
|
|
|
|
TYPE (0) = TCHAR;
|
|
|
|
|
VALUE (0) = 'c';
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
gc_init_news () ///((internal))
|
|
|
|
|
{
|
|
|
|
|
eputs ("gc_init_news\n");
|
|
|
|
|
///g_news = g_cells-1 + ARENA_SIZE;
|
|
|
|
|
//g_news = g_cells + ARENA_SIZE * 12 + GC_SAFETY * 6;
|
|
|
|
|
char *p = g_cells;
|
|
|
|
|
// g_news = g_cells;
|
|
|
|
|
int halfway = ARENA_SIZE * 12;
|
|
|
|
|
int safety = GC_SAFETY * 12;
|
|
|
|
|
safety = safety / 2;
|
|
|
|
|
halfway = halfway + safety;
|
|
|
|
|
// g_news = g_news + halfway;
|
|
|
|
|
p = p + halfway;
|
|
|
|
|
g_news = p;
|
|
|
|
|
eputs ("g_cells=");
|
|
|
|
|
eputs (itoa (g_cells));
|
|
|
|
|
eputs (" size=");
|
|
|
|
|
eputs (itoa (halfway));
|
|
|
|
|
eputs (" news=");
|
|
|
|
|
eputs (itoa (g_news));
|
|
|
|
|
eputs (" news - cells=");
|
|
|
|
|
char * c = g_cells;
|
|
|
|
|
eputs (itoa (p - c));
|
|
|
|
|
eputs ("\n");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NTYPE (0) = TVECTOR;
|
|
|
|
|
NLENGTH (0) = 1000;
|
|
|
|
|
NVECTOR (0) = 0;
|
|
|
|
|
g_news++;
|
|
|
|
|
NTYPE (0) = TCHAR;
|
|
|
|
|
NVALUE (0) = 'n';
|
|
|
|
|
return 0;
|
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
|
|
|
|
}
|
2017-01-18 06:38:45 +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
|
|
|
|
// INIT NEWS
|
2017-01-18 06:38:45 +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
|
|
|
|
SCM
|
|
|
|
|
mes_symbols () ///((internal))
|
|
|
|
|
{
|
|
|
|
|
gc_init_cells ();
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
#if MES_GC
|
|
|
|
|
gc_init_news ();
|
|
|
|
|
#endif
|
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
|
|
|
|
|
|
|
|
|
#include "mini-mes.symbols.i"
|
|
|
|
|
|
|
|
|
|
g_symbol_max = g_free;
|
|
|
|
|
make_tmps (g_cells);
|
|
|
|
|
|
|
|
|
|
g_symbols = 0;
|
|
|
|
|
for (int i=1; i<g_symbol_max; i++)
|
|
|
|
|
g_symbols = cons (i, g_symbols);
|
|
|
|
|
|
|
|
|
|
SCM a = cell_nil;
|
|
|
|
|
|
|
|
|
|
#include "mini-mes.symbol-names.i"
|
|
|
|
|
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
a = acons (cell_symbol_mes_version, MAKE_STRING (cstring_to_list (VERSION)), a);
|
|
|
|
|
a = acons (cell_symbol_mes_prefix, MAKE_STRING (cstring_to_list (PREFIX)), a);
|
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
|
|
|
|
|
|
|
|
|
a = acons (cell_symbol_dot, cell_dot, a);
|
|
|
|
|
a = acons (cell_symbol_begin, cell_begin, a);
|
2017-03-27 18:14:48 +00:00
|
|
|
|
a = acons (cell_symbol_call_with_values, cell_symbol_call_with_values, a);
|
|
|
|
|
a = acons (cell_symbol_current_module, cell_symbol_current_module, a);
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
a = acons (cell_symbol_call_with_current_continuation, cell_call_with_current_continuation, a);
|
|
|
|
|
a = acons (cell_symbol_sc_expand, cell_f, 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
|
|
|
|
|
|
|
|
|
#if __GNUC__
|
|
|
|
|
a = acons (cell_symbol_gnuc, cell_t, a);
|
|
|
|
|
a = acons (cell_symbol_mesc, cell_f, a);
|
|
|
|
|
#else
|
|
|
|
|
a = acons (cell_symbol_gnuc, cell_f, a);
|
|
|
|
|
a = acons (cell_symbol_mesc, cell_t, a);
|
|
|
|
|
#endif
|
|
|
|
|
|
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
|
|
|
|
a = acons (cell_closure, a, a);
|
|
|
|
|
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
mes_environment () ///((internal))
|
|
|
|
|
{
|
|
|
|
|
SCM a = 0;
|
|
|
|
|
a = mes_symbols ();
|
|
|
|
|
a = mes_g_stack (a);
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SCM
|
|
|
|
|
mes_builtins (SCM a) ///((internal))
|
|
|
|
|
{
|
|
|
|
|
#include "mini-mes.i"
|
|
|
|
|
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
// Do not sort: Order of these includes define builtins
|
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
|
|
|
|
// #include "lib.i"
|
|
|
|
|
// #include "math.i"
|
|
|
|
|
// #include "posix.i"
|
2017-04-02 15:01:22 +00:00
|
|
|
|
#include "mini-vector.i"
|
|
|
|
|
#include "mini-gc.i"
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
// #include "reader.i"
|
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
|
|
|
|
|
2017-04-02 15:01:22 +00:00
|
|
|
|
#include "mini-gc.environment.i"
|
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
|
|
|
|
// #include "lib.environment.i"
|
|
|
|
|
// #include "math.environment.i"
|
2017-04-02 15:01:22 +00:00
|
|
|
|
#include "mini-mes.environment.i"
|
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
|
|
|
|
// #include "posix.environment.i"
|
|
|
|
|
// #include "reader.environment.i"
|
2017-04-02 15:01:22 +00:00
|
|
|
|
#include "mini-vector.environment.i"
|
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
|
|
|
|
|
|
|
|
|
return a;
|
|
|
|
|
}
|
2017-01-18 06:38:45 +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
|
|
|
|
SCM
|
|
|
|
|
bload_env (SCM a) ///((internal))
|
|
|
|
|
{
|
2017-03-19 12:41:56 +00:00
|
|
|
|
char *mo = "module/mes/read-0-32.mo";
|
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
|
|
|
|
g_stdin = open (mo, 0);
|
|
|
|
|
if (g_stdin < 0) {eputs ("no such file: ");eputs (mo);eputs ("\n");return 1;}
|
2017-01-18 06:38:45 +00:00
|
|
|
|
assert (getchar () == 'M');
|
|
|
|
|
assert (getchar () == 'E');
|
|
|
|
|
assert (getchar () == 'S');
|
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
|
|
|
|
eputs ("*GOT MES*\n");
|
2017-01-18 06:38:45 +00:00
|
|
|
|
g_stack = getchar () << 8;
|
|
|
|
|
g_stack += getchar ();
|
|
|
|
|
|
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
|
|
|
|
char *p = (char*)g_cells;
|
|
|
|
|
int c = getchar ();
|
2017-01-18 06:38:45 +00:00
|
|
|
|
while (c != -1)
|
|
|
|
|
{
|
|
|
|
|
*p++ = c;
|
|
|
|
|
c = getchar ();
|
|
|
|
|
}
|
|
|
|
|
g_free = (p-(char*)g_cells) / sizeof (struct scm);
|
2017-03-02 19:26:13 +00:00
|
|
|
|
gc_peek_frame ();
|
2017-03-07 21:33:59 +00:00
|
|
|
|
g_symbols = r1;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
g_stdin = STDIN;
|
|
|
|
|
r0 = mes_builtins (r0);
|
|
|
|
|
|
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
|
|
|
|
#if __GNUC__
|
|
|
|
|
set_env_x (cell_symbol_gnuc, cell_t, r0);
|
|
|
|
|
set_env_x (cell_symbol_mesc, cell_f, r0);
|
|
|
|
|
#else
|
|
|
|
|
set_env_x (cell_symbol_gnuc, cell_f, r0);
|
|
|
|
|
set_env_x (cell_symbol_mesc, cell_t, r0);
|
2017-01-02 06:50:44 +00:00
|
|
|
|
#endif
|
2017-04-02 10:01:33 +00:00
|
|
|
|
|
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
|
|
|
|
if (g_debug)
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
{
|
2017-03-26 20:12:24 +00:00
|
|
|
|
eputs ("symbols: ");
|
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 s = g_symbols;
|
|
|
|
|
while (s && s != cell_nil) {
|
2017-03-26 20:12:24 +00:00
|
|
|
|
display_error_ (CAR (s));
|
|
|
|
|
eputs (" ");
|
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
|
|
|
|
s = CDR (s);
|
|
|
|
|
}
|
2017-03-26 20:12:24 +00:00
|
|
|
|
eputs ("\n");
|
|
|
|
|
eputs ("functions: ");
|
|
|
|
|
eputs (itoa (g_function));
|
|
|
|
|
eputs ("\n");
|
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
|
|
|
|
for (int i = 0; i < g_function; i++)
|
|
|
|
|
{
|
2017-03-26 20:12:24 +00:00
|
|
|
|
eputs ("[");
|
|
|
|
|
eputs (itoa (i));
|
|
|
|
|
eputs ("]: ");
|
|
|
|
|
eputs (g_functions[i].name);
|
|
|
|
|
eputs ("\n");
|
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
|
|
|
|
}
|
2017-03-26 20:12:24 +00:00
|
|
|
|
//display_error_ (r0);
|
|
|
|
|
//puts ("\n");
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
}
|
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 r2;
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-25 13:05:17 +00:00
|
|
|
|
// #include "math.c"
|
|
|
|
|
// #include "posix.c"
|
|
|
|
|
// #include "lib.c"
|
|
|
|
|
// #include "reader.c"
|
|
|
|
|
#include "vector.c"
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
#include "gc.c"
|
2017-03-25 13:05:17 +00:00
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
int
|
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
|
{
|
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
|
|
|
|
eputs ("Hello mini-mes!\n");
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
#if _POSIX_SOURCE
|
|
|
|
|
g_debug = getenv ("MES_DEBUG");
|
|
|
|
|
eputs ("g_debug=");
|
|
|
|
|
eputs (itoa (g_debug));
|
|
|
|
|
eputs ("\n");
|
|
|
|
|
if (getenv ("MES_ARENA")) ARENA_SIZE = atoi (getenv ("MES_ARENA"));
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#endif
|
mini-mes: Include and enable gc.
* scaffold/mini-mes.c: Set MES_GC=1.
(ARENA_SIZE)[MES_GC]: Reduce to 10,000 cells (WAS: 1,000,000,000
chars).
(g_news): New global.
(NTYPE, NCAR, NVALUE, NLENGTH, NCDR, NVECTOR): New macros.
(mes_symbols)[MES_GC]: Call gc_init_news.
(mes_builtins): Include gc.i, gc.environment.i.
2017-03-26 14:03:41 +00:00
|
|
|
|
g_debug = 1;
|
2017-04-02 10:01:33 +00:00
|
|
|
|
if (argc > 1 && !strcmp (argv[1], "--help")) return eputs ("Usage: mes [--dump|--load] < FILE");
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
#if __GNUC__
|
2017-04-02 10:01:33 +00:00
|
|
|
|
if (argc > 1 && !strcmp (argv[1], "--version")) {eputs ("Mes ");return eputs (VERSION);};
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
#else
|
|
|
|
|
if (argc > 1 && !strcmp (argv[1], "--version")) {eputs ("Mes ");return eputs ("0.4");};
|
|
|
|
|
#endif
|
2017-04-02 10:01:33 +00:00
|
|
|
|
g_stdin = STDIN;
|
|
|
|
|
|
mescc: Run mini-mes.
* .gitignore: Ignore tiny-mes and tiny .mo's.
* doc/examples/tiny-mes.c: Simplify.
* doc/examples/mini-mes.c: Use simplifications from tiny-mes.
* doc/examples/t.c (read_test, struct_test): New functions.
(test): Add tests for arena, g_cells globals.
* module/mes/elf-util.mes (dec->hex): New function.
(lambda/label->list): Add text-address parameter. Update callers.
* module/language/c99/compiler.mes (make, info, clone): Add init field.
(.init): New function.
(ident->accu): Add exceptions for globals.
* module/mes/elf-util.scm: Export it.
* module/mes/libc-i386.mes (i386:accu->base-ref,
i386:byte-accu->base-ref, i386:accu->base-ref+n,
i386:accu->global-ref, i386:global-ref->accu, i386:global-ref->base,
i386:global-add, i386:global->accu):, i386:local-ref->accu,
i386:local-ptr->accu, i386:local-ptr->base): New functions.
* module/mes/libc-i386.scm: Export them.
2017-01-29 14:22:39 +00:00
|
|
|
|
r0 = mes_environment ();
|
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#if MES_MINI
|
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
|
|
|
|
SCM program = bload_env (r0);
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#else
|
|
|
|
|
SCM program = (argc > 1 && !strcmp (argv[1], "--load"))
|
|
|
|
|
? bload_env (r0) : load_env (r0);
|
|
|
|
|
if (argc > 1 && !strcmp (argv[1], "--dump")) return dump ();
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-04-02 15:01:22 +00:00
|
|
|
|
SCM lst = cell_nil;
|
|
|
|
|
for (int i=argc-1; i>=0; i--) lst = cons (MAKE_STRING (cstring_to_list (argv[i])), lst);
|
|
|
|
|
r0 = acons (cell_symbol_argv, lst, r0);
|
2017-04-02 10:01:33 +00:00
|
|
|
|
push_cc (r2, cell_unspecified, r0, cell_unspecified);
|
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
|
|
|
|
if (g_debug)
|
|
|
|
|
{
|
|
|
|
|
eputs ("program: ");
|
2017-03-26 20:12:24 +00:00
|
|
|
|
display_error_ (r1);
|
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
|
|
|
|
eputs ("\n");
|
|
|
|
|
}
|
2017-03-06 06:14:15 +00:00
|
|
|
|
r3 = cell_vm_begin;
|
2017-01-18 06:38:45 +00:00
|
|
|
|
r1 = eval_apply ();
|
2017-03-26 20:12:24 +00:00
|
|
|
|
display_error_ (r1);
|
2017-04-02 10:01:33 +00:00
|
|
|
|
eputs ("\n");
|
2017-03-10 06:01:51 +00:00
|
|
|
|
|
2017-04-02 10:01:33 +00:00
|
|
|
|
#if !MES_MINI
|
|
|
|
|
gc (g_stack);
|
|
|
|
|
#endif
|
|
|
|
|
if (g_debug)
|
|
|
|
|
{
|
|
|
|
|
eputs ("\nstats: [");
|
|
|
|
|
eputs (itoa (g_free));
|
|
|
|
|
eputs ("]\n");
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
mescc: Beginning of expression and test template.
* scaffold/t.c: New file.
* GNUmakefile (mescc-check, t-check): New targets.
* module/language/c99/compiler.mes (write-any): Catch weirdness.
(make): Add <function> slot.
(.function): New accessor.
(clone): Handle it.
(function->info): Set it.
(ast->info): Make tests generic in if, for, while. Add goto, label,
!, ==, !=, -, &&.
* module/mes/elf-util.mes (lambda/label->list): New function.
(text->list): Use it.
(functions->text, function-prefix): New function.
(function-offset): Use it.
(label-offset): New function.
* module/mes/elf-util.scm (mes): Export them.
* module/mes/elf.mes (make-elf): Use text->list.
* module/mes/libc-i386.mes (eputs, puts): Remove.
(i386:byte-base-sub): Rename from sub-byte-base.
(i386:byte-jump-z): Rename from i386:Xjump-byte-z.
(i386:byte-mem->accu): Rename from i386:Xmem-byte->accu.
(i386:byte-mem->base): Rename from i386:Xmem-byte->base.
(i386:accu->local, i386:accu-non-zero?, i386:accu-zero?,
i386:base-sub, i386:byte-sub-base, i386:jump-c, i386:jump-cz,
i386:jump-nc, i386:jump-ncz, i386:byte-mem->base, i386:sub-base,
i386:test-accu, i386:test-base, i386:test-jump-z, i386:value->base,
i386:xor-zf): New functions.
2017-04-02 10:23:00 +00:00
|
|
|
|
#if __GNUC__
|
2017-04-02 10:29:09 +00:00
|
|
|
|
#include "mstart.c"
|
mescc: Beginning of expression and test template.
* scaffold/t.c: New file.
* GNUmakefile (mescc-check, t-check): New targets.
* module/language/c99/compiler.mes (write-any): Catch weirdness.
(make): Add <function> slot.
(.function): New accessor.
(clone): Handle it.
(function->info): Set it.
(ast->info): Make tests generic in if, for, while. Add goto, label,
!, ==, !=, -, &&.
* module/mes/elf-util.mes (lambda/label->list): New function.
(text->list): Use it.
(functions->text, function-prefix): New function.
(function-offset): Use it.
(label-offset): New function.
* module/mes/elf-util.scm (mes): Export them.
* module/mes/elf.mes (make-elf): Use text->list.
* module/mes/libc-i386.mes (eputs, puts): Remove.
(i386:byte-base-sub): Rename from sub-byte-base.
(i386:byte-jump-z): Rename from i386:Xjump-byte-z.
(i386:byte-mem->accu): Rename from i386:Xmem-byte->accu.
(i386:byte-mem->base): Rename from i386:Xmem-byte->base.
(i386:accu->local, i386:accu-non-zero?, i386:accu-zero?,
i386:base-sub, i386:byte-sub-base, i386:jump-c, i386:jump-cz,
i386:jump-nc, i386:jump-ncz, i386:byte-mem->base, i386:sub-base,
i386:test-accu, i386:test-base, i386:test-jump-z, i386:value->base,
i386:xor-zf): New functions.
2017-04-02 10:23:00 +00:00
|
|
|
|
#endif
|