134 lines
2.7 KiB
C
134 lines
2.7 KiB
C
|
/* -*-comment-start: "//";comment-end:""-*-
|
||
|
* Mes --- Maxwell Equations of Software
|
||
|
* Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
||
|
*
|
||
|
* This file is part of Mes.
|
||
|
*
|
||
|
* Mes is free software; you can redistribute it and/or modify it
|
||
|
* under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 3 of the License, or (at
|
||
|
* your option) any later version.
|
||
|
*
|
||
|
* Mes is distributed in the hope that it will be useful, but
|
||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#include "30-test.i"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
struct scm {
|
||
|
int type;
|
||
|
int car;
|
||
|
int cdr;
|
||
|
};
|
||
|
|
||
|
int bla = 1234;
|
||
|
char g_arena[84];
|
||
|
#if __MESC__
|
||
|
struct scm *g_cells = g_arena;
|
||
|
#else
|
||
|
struct scm *g_cells = (struct scm*)g_arena;
|
||
|
#endif
|
||
|
char *g_chars = g_arena;
|
||
|
|
||
|
int foo () {puts ("t: foo\n"); return 0;};
|
||
|
int bar (int i) {puts ("t: bar\n"); return 0;};
|
||
|
struct function {
|
||
|
int (*function) (void);
|
||
|
int arity;
|
||
|
char *name;
|
||
|
};
|
||
|
struct function g_fun = {&exit,1,"fun"};
|
||
|
struct function g_foo = {&foo,0,"foo"};
|
||
|
struct function g_bar = {&bar,1,"bar"};
|
||
|
|
||
|
//void *functions[2];
|
||
|
int functions[2];
|
||
|
|
||
|
struct function g_functions[2];
|
||
|
int g_function = 0;
|
||
|
|
||
|
enum type_t {TCHAR, TCLOSURE, TCONTINUATION, TFUNCTION, TKEYWORD, TMACRO, TNUMBER, TPAIR, TREF, TSPECIAL, TSTRING, TSYMBOL, TVALUES, TVECTOR, TBROKEN_HEART};
|
||
|
|
||
|
typedef int SCM;
|
||
|
int g_free = 3;
|
||
|
SCM tmp;
|
||
|
SCM tmp_num;
|
||
|
|
||
|
int ARENA_SIZE = 200;
|
||
|
#define TYPE(x) g_cells[x].type
|
||
|
#define CAR(x) g_cells[x].car
|
||
|
#define CDR(x) g_cells[x].cdr
|
||
|
#define VALUE(x) g_cells[x].cdr
|
||
|
|
||
|
#define CAAR(x) CAR (CAR (x))
|
||
|
|
||
|
struct scm scm_fun = {TFUNCTION,0,0};
|
||
|
SCM cell_fun;
|
||
|
|
||
|
SCM
|
||
|
alloc (int n)
|
||
|
{
|
||
|
SCM x = g_free;
|
||
|
g_free += n;
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
SCM
|
||
|
make_cell (SCM type, SCM car, SCM cdr)
|
||
|
{
|
||
|
SCM x = alloc (1);
|
||
|
TYPE (x) = VALUE (type);
|
||
|
if (VALUE (type) == TCHAR || VALUE (type) == TNUMBER) {
|
||
|
if (car) CAR (x) = CAR (car);
|
||
|
if (cdr) CDR(x) = CDR(cdr);
|
||
|
}
|
||
|
else if (VALUE (type) == TFUNCTION) {
|
||
|
if (car) CAR (x) = car;
|
||
|
if (cdr) CDR(x) = CDR(cdr);
|
||
|
}
|
||
|
else {
|
||
|
CAR (x) = car;
|
||
|
CDR(x) = cdr;
|
||
|
}
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
SCM
|
||
|
make_cell_test ()
|
||
|
{
|
||
|
VALUE (tmp_num) = TPAIR;
|
||
|
make_cell (tmp_num, 0, 1);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
SCM
|
||
|
make_tmps_test (struct scm* cells)
|
||
|
{
|
||
|
puts ("t: tmp = g_free++\n");
|
||
|
tmp = g_free++;
|
||
|
puts ("t: cells[tmp].type = CHAR\n");
|
||
|
cells[tmp].type = TCHAR;
|
||
|
tmp_num = g_free++;
|
||
|
cells[tmp_num].type = TNUMBER;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
test ()
|
||
|
{
|
||
|
puts ("\n");
|
||
|
make_tmps_test (g_cells);
|
||
|
make_cell_test ();
|
||
|
return 0;
|
||
|
}
|