7a8a2fc517
* module/mescc/as.scm: Support abstracted assembly. * module/mescc/i386/as.scm: Rewrite. * module/mescc/x86_64/as.scm: Implement. * module/mescc/compile.scm: Refactor to abstracted assembly. * module/mescc/M1.scm: Update for partial 64 bit support. * module/mescc/bytevectors.scm (bytevector-u64-native-set!): New procedure. * module/mescc/i386/info.scm (i386:type-alist): Use 4 byte type length also for faking double, long long, long double. * module/mescc/info.scm:modified: * module/mescc/x86_64/info.scm (x86_64:registers): New variable. * lib/x86-mes/x86.M1: Update for new register scheme. * lib/x86_64-mes/x86_64.M1: Implement. * lib/x86-mes/setjmp.c: Implement. * lib/x86_64-mes-gcc/setjmp.c: Implement. * build-aux/build-cc.sh: Update for x86_64. * build-aux/build-cc32.sh: Likewise. * build-aux/build-mes.sh: Likewise. * build-aux/build-x86_64-mes.sh: Likewise. * build-aux/check-mescc.sh: Likewise. * build-aux/test64.sh: Likewise. * include/libmes.h: Likewise. * include/setjmp.h: Likewise. * include/signal.h: Likewise. * include/stdarg.h: Likewise. * include/sys/stat.h: Likewise. * include/sys/types.h: Likewise. * include/sys/wait.h: Likewise. * include/unistd.h: Likewise. * lib/libc+gnu.c: Likewise. * lib/libc+tcc.c: Likewise. * lib/linux/gnu.c: Likewise. * lib/linux/libc-mini.c: Likewise. * lib/linux/libc.c: Likewise. * lib/linux/tcc.c: Likewise. * lib/linux/x86_64-mes-gcc/mes.c: Likewise. * lib/linux/x86_64-mes/crt1.c: Likewise. * lib/mes/abtol.c: Likewise. * lib/posix/mktemp.c: Likewise. * lib/posix/wait.c: Likewise. * lib/stdio/fopen.c: Likewise. * lib/stdio/fputc.c: Likewise. * lib/stdio/fseek.c: Likewise. * lib/stdio/printf.c: Likewise. * lib/stdio/sprintf.c: Likewise. * lib/stdio/vfprintf.c: Likewise. * lib/stdio/vsprintf.c: Likewise. * lib/stdio/vsscanf.c: Likewise. * lib/stdlib/qsort.c: Likewise. * lib/x86-mes-gcc/setjmp.c: Likewise. * scaffold/tests/11-if-1.c: Likewise. * scaffold/tests/15-if-!f.c: Likewise. * scaffold/tests/16-if-t.c: Likewise. * scaffold/tests/21-char[].c: Likewise. * scaffold/tests/23-pointer.c: Likewise. * scaffold/tests/32-compare.c: Likewise. * scaffold/tests/33-and-or.c: Likewise. * scaffold/tests/34-pre-post.c: Likewise. * scaffold/tests/35-compare-char.c: Likewise. * scaffold/tests/36-compare-arithmetic.c: Likewise. * scaffold/tests/37-compare-assign.c: Likewise. * scaffold/tests/38-compare-call.c: Likewise. * scaffold/tests/40-if-else.c: Likewise. * scaffold/tests/41-?.c: Likewise. * scaffold/tests/42-goto-label.c: Likewise. * scaffold/tests/43-for-do-while.c: Likewise. * scaffold/tests/44-switch.c: Likewise. * scaffold/tests/45-void-call.c: Likewise. * scaffold/tests/46-function-static.c: Likewise. * scaffold/tests/51-strcmp.c: Likewise. * scaffold/tests/51-strncmp.c: Likewise. * scaffold/tests/53-strcpy.c: Likewise. * scaffold/tests/54-argv.c: Likewise. * scaffold/tests/60-math.c: Likewise. * scaffold/tests/61-array.c: Likewise. * scaffold/tests/63-struct-cell.c: Likewise. * scaffold/tests/64-make-cell.c: Likewise. * scaffold/tests/65-read.c: Likewise. * scaffold/tests/70-printf.c: Likewise. * scaffold/tests/71-struct-array.c: Likewise. * scaffold/tests/72-typedef-struct-def.c: Likewise. * scaffold/tests/74-multi-line-string.c: Likewise. * scaffold/tests/76-pointer-arithmetic.c: Likewise. * scaffold/tests/79-int-array.c: Likewise. * scaffold/tests/7a-struct-char-array.c: Likewise. * scaffold/tests/7b-struct-int-array.c: Likewise. * scaffold/tests/7i-struct-struct.c: Likewise. * scaffold/tests/7k-for-each-elem.c: Likewise. * scaffold/tests/7l-struct-any-size-array.c: Likewise. * scaffold/tests/7o-struct-pre-post.c: Likewise. * scaffold/tests/7q-bit-field.c: Likewise. * scaffold/tests/7s-struct-short.c: Likewise. * scaffold/tests/80-setjmp.c: Likewise. * scaffold/tests/81-qsort.c: Likewise. * scaffold/tests/85-sizeof.c: Likewise. * scaffold/tests/87-sscanf.c: Likewise. * scaffold/tests/90-strpbrk.c: Likewise. * scaffold/tests/91-fseek.c: Likewise. * scaffold/tests/95-signal.c: Likewise. * scaffold/tests/97-fopen.c: Likewise. * scaffold/tests/99-readdir.c: Likewise. * scaffold/tests/t.c: Likewise. * lib/linux/x86_64-mes/mes.c: New file. * lib/linux/x86_64-mes/mini.c: New file. * lib/x86_64-mes/setjmp.c: New file. * scaffold/tests/06-!call-1.c: New file. * scaffold/tests/06-call-2.c: New file. * scaffold/tests/06-call-variable.c: New file. * scaffold/tests/08-assign-global.c: New file. * scaffold/tests/08-assign-negative.c: New file. * scaffold/tests/17-compare-and-or.c: New file. * scaffold/tests/17-compare-and.c: New file. * scaffold/tests/17-compare-ge.c: New file. * scaffold/tests/17-compare-gt.c: New file. * scaffold/tests/17-compare-le.c: New file. * scaffold/tests/17-compare-lt.c: New file. * scaffold/tests/17-compare-or.c: New file. * scaffold/tests/17-compare-unsigned-ge.c: New file. * scaffold/tests/17-compare-unsigned-gt.c: New file. * scaffold/tests/17-compare-unsigned-le.c: New file. * scaffold/tests/17-compare-unsigned-lt.c: New file. * scaffold/tests/21-char[]-simple.c: New file. * scaffold/tests/23-global-pointer-init-null.c: New file. * scaffold/tests/23-global-pointer-init.c: New file. * scaffold/tests/23-global-pointer-pointer-ref.c: New file. * scaffold/tests/23-global-pointer-ref.c: New file. * scaffold/tests/23-pointer-sub.c: New file. * scaffold/tests/31-oputs.c: New file. * scaffold/tests/32-call-wrap.c: New file. * scaffold/tests/38-compare-call-2.c: New file. * scaffold/tests/38-compare-call-3.c: New file. * scaffold/tests/51-pointer-sub.c: New file. * scaffold/tests/54-argc.c: New file. * scaffold/tests/63-struct-array-assign.c: New file. * scaffold/tests/63-struct-array-compare.c: New file. * scaffold/tests/63-struct-array.c: New file. * scaffold/tests/63-struct-assign.c: New file. * scaffold/tests/63-struct-function.c: New file. * scaffold/tests/63-struct-local.c: New file. * scaffold/tests/63-struct-pointer.c: New file. * scaffold/tests/63-struct.c: New file. * scaffold/tests/70-printf-hello.c: New file. * scaffold/tests/70-printf-simple.c: New file. * scaffold/tests/70-stdarg.c: New file. * scaffold/tests/70-strchr.c: New file. * scaffold/tests/73-union-hello.c: New file. * scaffold/tests/76-pointer-arithmetic-pp.c: New file. * scaffold/tests/79-int-array-simple.c: New file. * scaffold/tests/7b-struct-int-array-hello.c: New file. * scaffold/tests/7b-struct-int-array-pointer.c: New file. * scaffold/tests/7i-struct-struct-simple.c: New file. * scaffold/tests/7k-for-each-elem-simple.c: New file. * scaffold/tests/7l-struct-any-size-array-simple.c: New file. * scaffold/tests/7o-struct-pre-post-simple.c: New file. * scaffold/tests/7q-bit-field-simple.c: New file. * scaffold/tests/90-strspn.c: New file. * scaffold/tests/06-call-string.c.: Rename from 31-eputs.c. * scaffold/tests/7t-function-destruct.c: Rename from 48-function-destruct.c. * scaffold/tests/48-global-static.c: Rename from 49-global-static.c. * scaffold/tests/55-char-array.c:renamed: Rename from 4a-char-array.c. * scaffold/tests/51-itoa.c:r Rename from 52-itoa.c. * include/signal.h:(struct sigaction):
298 lines
5.9 KiB
C
298 lines
5.9 KiB
C
/* -*-comment-start: "//";comment-end:""-*-
|
|
* GNU Mes --- Maxwell Equations of Software
|
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
*
|
|
* This file is part of GNU Mes.
|
|
*
|
|
* GNU 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.
|
|
*
|
|
* GNU 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 GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <libmes.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int
|
|
add (int a, int b)
|
|
{
|
|
return a + b;
|
|
}
|
|
|
|
int
|
|
inc (int i)
|
|
{
|
|
return i + 1;
|
|
}
|
|
|
|
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 () {oputs ("t: foo\n"); return 0;};
|
|
int bar (int i) {oputs ("t: bar\n"); return 0;};
|
|
struct function
|
|
{
|
|
int (*function) (void);
|
|
int arity;
|
|
//long 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;
|
|
|
|
|
|
int
|
|
main ()
|
|
{
|
|
oputs ("\n");
|
|
oputs ("t: g_cells[0] = g_cells[1]\n");
|
|
TYPE (1) = 1;
|
|
CAR (1) = 2;
|
|
CDR (1) = 3;
|
|
g_cells[0] = g_cells[1];
|
|
if (TYPE (0) != 1)
|
|
return 1;
|
|
if (CAR (0) != 2)
|
|
return 2;
|
|
if (CDR (0) != 3)
|
|
return 3;
|
|
|
|
oputs ("t: g_cells[i] = g_cells[j]\n");
|
|
int i = 0;
|
|
int j = 1;
|
|
TYPE (1) = 4;
|
|
CAR (1) = 5;
|
|
CDR (1) = 6;
|
|
g_cells[i] = g_cells[j];
|
|
if (TYPE (0) != 4)
|
|
return 4;
|
|
if (CAR (0) != 5)
|
|
return 5;
|
|
if (CDR (0) != 6)
|
|
return 6;
|
|
|
|
oputs ("t: g_cells[0+add(0,0] = g_cells[0+inc(0)]\n");
|
|
TYPE (1) = 1;
|
|
CAR (1) = 2;
|
|
CDR (1) = 3;
|
|
g_cells[0+add(0, 0)] = g_cells[0+inc(0)];
|
|
if (TYPE (0) != 1)
|
|
return 7;
|
|
if (CAR (0) != 2)
|
|
return 9;
|
|
if (CDR (0) != 3)
|
|
return 9;
|
|
|
|
g_cells[0].type = TNUMBER;
|
|
g_cells[0].car = 0;
|
|
g_cells[0].cdr = 0;
|
|
g_cells[1].type = TNUMBER;
|
|
g_cells[1].car = 0;
|
|
g_cells[1].cdr = 0;
|
|
|
|
oputs ("t: TYPE (0) == TYPE (1)\n");
|
|
if (TYPE (0) == TYPE (1))
|
|
goto ok;
|
|
return 10;
|
|
ok:
|
|
|
|
g_cells[0].car = 1;
|
|
g_cells[1].car = 2;
|
|
|
|
oputs ("t: int c = VALUE (0)\n");
|
|
int c = CAR (0);
|
|
if (c != 1)
|
|
return 11;
|
|
|
|
oputs ("t: CAAR (0) != 2\n");
|
|
if (CAAR (0) != 2)
|
|
return 12;
|
|
|
|
oputs ("t: 2 != CAAR (0)\n");
|
|
if (2 != CAAR (0))
|
|
return 13;
|
|
|
|
g_cells[3].type = 0x64;
|
|
if (g_cells[3].type != 0x64)
|
|
return g_cells[3].type;
|
|
|
|
TYPE (4) = 4;
|
|
if (TYPE (4) != 4)
|
|
return 14;
|
|
|
|
CDR (3) = 0x22;
|
|
CDR (4) = 0x23;
|
|
if (CDR (3) != 0x22)
|
|
return 15;
|
|
|
|
oputs ("t: g_fun.arity != 1;\n");
|
|
if (g_fun.arity != 1)
|
|
return 16;
|
|
|
|
oputs ("t: g_fun.function != exit;\n");
|
|
if (g_fun.function != &exit)
|
|
return 17;
|
|
|
|
oputs ("t: struct fun = {&exit,1,\"exit\"};\n");
|
|
struct function fun = {&exit,1,"exit"};
|
|
|
|
oputs ("t: fun.arity != 1;\n");
|
|
if (fun.arity != 1)
|
|
return 18;
|
|
|
|
oputs ("t: fun.function != exit;\n");
|
|
if (fun.function != &exit)
|
|
return 19;
|
|
|
|
oputs ("t: oputs (fun.name)\n");
|
|
if (strcmp (fun.name, "exit"))
|
|
return 20;
|
|
|
|
oputs ("t: oputs (g_fun.name)\n");
|
|
if (strcmp (g_fun.name, "fun"))
|
|
return 21;
|
|
|
|
oputs ("t: g_functions[g_function++] = g_foo;\n");
|
|
g_functions[g_function++] = g_foo;
|
|
|
|
oputs ("t: pbar->arity == 1\n");
|
|
struct function* barp = &g_bar;
|
|
if (barp->arity != 1)
|
|
return 22;
|
|
|
|
int fn = 0;
|
|
oputs ("t: g_functions[g_cells[fn].cdr].arity\n");
|
|
if (g_functions[g_cells[fn].cdr].arity)
|
|
return 23;
|
|
if (g_functions[g_cells[fn].cdr].arity != 0)
|
|
return 24;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int (*functionx) (void) = 0;
|
|
functionx = g_functions[0].function;
|
|
oputs ("t: functionx == foo\n");
|
|
if (functionx != foo)
|
|
return 25;
|
|
|
|
oputs ("t: g_functions[0].name\n");
|
|
if (strcmp (g_functions[0].name, "foo"))
|
|
return 26;
|
|
|
|
oputs ("t: (functionx) () == foo\n");
|
|
if ((functionx) () != 0)
|
|
return 27;
|
|
|
|
oputs ("t: g_functions[<foo>].arity\n");
|
|
if (g_functions[0].arity != 0)
|
|
return 28;
|
|
|
|
fn++;
|
|
g_functions[fn] = g_bar;
|
|
g_cells[fn].cdr = fn;
|
|
if (g_cells[fn].cdr != fn)
|
|
return 29;
|
|
|
|
oputs ("t: g_functions[g_cells[fn].cdr].function\n");
|
|
functionx = g_functions[g_cells[fn].cdr].function;
|
|
|
|
oputs ("t: g_functions[1].name\n");
|
|
if (strcmp (g_functions[1].name, "bar"))
|
|
return 30;
|
|
|
|
oputs ("t: functionx == bar\n");
|
|
if (functionx != bar)
|
|
return 31;
|
|
|
|
oputs ("t: (functiony) (1) == bar\n");
|
|
int (*functiony) (int) = 0;
|
|
functiony = g_functions[g_cells[fn].cdr].function;
|
|
if ((functiony) (1) != 0)
|
|
return 32;
|
|
|
|
oputs ("t: g_functions[<bar>].arity\n");
|
|
if (g_functions[fn].arity != 1)
|
|
return 33;
|
|
|
|
// fake name
|
|
scm_fun.car = 33;
|
|
scm_fun.cdr = g_function;
|
|
g_function++;
|
|
oputs ("fun");
|
|
g_functions[g_function] = g_fun;
|
|
|
|
cell_fun = g_free++;
|
|
g_cells[cell_fun] = scm_fun;
|
|
|
|
oputs ("t: TYPE (cell_fun)\n");
|
|
if (TYPE (cell_fun) != TFUNCTION)
|
|
return 34;
|
|
|
|
oputs ("t: CAR (cell_fun)\n");
|
|
if (CAR (cell_fun) != 33)
|
|
return 35;
|
|
|
|
// FIXME!
|
|
// oputs ("t: CDR (cell_fun)\n");
|
|
// if (CDR (cell_fun) != g_function)
|
|
// return 36;
|
|
|
|
return 0;
|
|
}
|