Jan Nieuwenhuizen [Sun, 26 Mar 2017 20:12:24 +0000 (22:12 +0200)]
mini-mes: Debugging to stderr.
* scaffold/mini-mes.c (error, bload_env, main): Send debug info to
stderr.
throw/catch dinges: URG
Jan Nieuwenhuizen [Sun, 26 Mar 2017 20:09:24 +0000 (22:09 +0200)]
scripts: Allow running with any mes.
* scripts/mescc.mes: Run $MES if set, default to ../scripts/mes.
* scripts/repl.mes: Likewise.
Jan Nieuwenhuizen [Sun, 26 Mar 2017 14:03:41 +0000 (16:03 +0200)]
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.
Jan Nieuwenhuizen [Sat, 1 Apr 2017 21:30:45 +0000 (23:30 +0200)]
mini-mes: Workarounds for gc.c.
* gc.c (gc_copy)[!__GNUC__]: Avoid by value assignment from array-of
struct entry.
* scaffold/mini-mes.c (gc_init_cells): Workarounds.
Jan Nieuwenhuizen [Sun, 26 Mar 2017 13:55:12 +0000 (15:55 +0200)]
core: Prepare gc.c for mescc, non-POSIX_SOURCE.
* mes.c (NLENGTH, NVALUE, NVECTOR): New macros.
(mes_builtins): Add comment on .i include order.
* module/language/c99/compiler.mes (mescc): Add define _POSIX_SOURCE=0.
* gc.c (gc_up_arena, gc_flip, gc_loop, gc)[!_POSIX_SOURCE]: Use eputs
rather than fprintf.
(gc_loop): Use CAR, TYPE, NVECTOR rather than .car, .type, .vector.
* gc.c (gc_up_arena)[!_POSIX_SOURCE]: Add non-POSIX mlib.c
implementation.
Jan Nieuwenhuizen [Sun, 26 Mar 2017 13:49:45 +0000 (15:49 +0200)]
mescc: Bugfix for realloc.
* module/mes/libc.mes (realloc): Thinko.
Jan Nieuwenhuizen [Sat, 25 Mar 2017 18:03:03 +0000 (19:03 +0100)]
mescc: Bugfix for neg.
* module/language/c99/compiler.mes (expr->accu): Fix neg.
* scaffold/t.c (math_test): Test it.
* scaffold/mini-mes.c (ash): Remove workaround.
Jan Nieuwenhuizen [Sat, 25 Mar 2017 17:48:40 +0000 (18:48 +0100)]
mescc: Support rshift, have guile-mini-mes pass math test.
* module/mes/as-i386.mes (i386:accu>>base): New function.
* module/mes/as-i386.scm (mes): Export it.
* module/language/c99/compiler.mes (expr->accu): Support rshift.
* scaffold/t.c (math_test): Test it.
* scaffold/mini-mes.c (ash): Use it.
Jan Nieuwenhuizen [Sun, 26 Mar 2017 14:47:18 +0000 (16:47 +0200)]
test: Enable vector read test.
* tests/read.test: Enable vector read test.
Jan Nieuwenhuizen [Sat, 25 Mar 2017 13:05:17 +0000 (14:05 +0100)]
mini-mes: Support vectors.
* scaffold/mini-mes.c (REF, MAKE_REF): New macro.
Include vector.h, vector.c.
(mes_builtins): Include vector.i, vector.environment.i.
Jan Nieuwenhuizen [Sat, 25 Mar 2017 16:15:07 +0000 (17:15 +0100)]
mini-mes: Workarounds for vector.c.
* vector.c (make_vector, vector_set_x, list_to_vector)[!__GNUC__]: Avoid
by value assignment from array-of struct entry.
Jan Nieuwenhuizen [Sat, 25 Mar 2017 13:04:48 +0000 (14:04 +0100)]
core: prepare vector.c for mescc.
* vector.c (make_vector, vector_set_x, vector_to_list): Use REF, VALUE
rather than .ref, .value.
Jan Nieuwenhuizen [Sat, 25 Mar 2017 14:58:44 +0000 (15:58 +0100)]
mini-mes: Fully remove reader from core.
* scaffold/mini-mes.c (lookup_): Remove.
* mes.c: Likewise.
* reader.c (lookup_): Enable.
* mlib.c (putc): New function.
* module/mes/libc.mes (putc): New function.
Jan Nieuwenhuizen [Fri, 24 Mar 2017 22:15:01 +0000 (23:15 +0100)]
mescc: Support bitwise or.
* module/mes/as-i386.mes (i386:accu-or-base): New function.
* module/mes/as-i386.scm: Export it.
* module/language/c99/compiler.mes (expr->accu): Use it; support bitwise or.
* scaffold/t.c (math_test): Test it.
* scaffold/mini-mes.c (logior): Use it.
Jan Nieuwenhuizen [Fri, 24 Mar 2017 21:32:02 +0000 (22:32 +0100)]
mescc: Lshift support non-fixed shift value.
* module/mes/as-i386.mes (i386:accu<<base): New function.
* module/mes/as-i386.scm: Export it.
* module/language/c99/compiler.mes (expr->accu): Use it.
* scaffold/t.c (math_test): Test it.
Jan Nieuwenhuizen [Fri, 24 Mar 2017 20:45:19 +0000 (21:45 +0100)]
mescc: Use signed integer comparison.
* module/language/c99/compiler.mes (test->jump->info):
* module/mes/as-i386.mes (i386:Xjump-le, i386:Xjump-g, i386:Xjump-l,
i386:Xjump-ge): New functions.
* module/mes/as-i386.scm: Export them.
* scaffold/t.c (math_test): Test them.
* tests/scm.test ("iota -1"): Enable for mesc.
Jan Nieuwenhuizen [Sun, 26 Mar 2017 19:13:01 +0000 (21:13 +0200)]
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.
Jan Nieuwenhuizen [Sun, 26 Mar 2017 19:06:19 +0000 (21:06 +0200)]
test: Allow running with any mes.
* test/base.test: Run $MES if set, default to ../scripts/mes.
* tests/base.test: Likewise.
* tests/catch.test: Likewise.
* tests/closure.test: Likewise.
* tests/cwv.test: Likewise.
* tests/display.test: Likewise.
* tests/fluids.test: Likewise.
* tests/gc-0.test: Likewise.
* tests/gc-1.test: Likewise.
* tests/gc-2.test: Likewise.
* tests/gc-2a.test: Likewise.
* tests/gc-3.test: Likewise.
* tests/gc-4.test: Likewise.
* tests/gc-5.test: Likewise.
* tests/gc-6.test: Likewise.
* tests/gc.test: Likewise.
* tests/let-syntax.test: Likewise.
* tests/let.test: Likewise.
* tests/match.test: Likewise.
* tests/math.test: Likewise.
* tests/module.test: Likewise.
* tests/optargs.test: Likewise.
* tests/peg.test: Likewise.
* tests/psyntax.test: Likewise.
* tests/quasiquote.test: Likewise.
* tests/read.test: Likewise.
* tests/record.test: Likewise.
* tests/scm.test: Likewise.
* tests/srfi-1.test: Likewise.
* tests/srfi-13.test: Likewise.
* tests/srfi-14.test: Likewise.
* tests/vector.test: Likewise.
Jan Nieuwenhuizen [Sun, 2 Apr 2017 09:34:40 +0000 (11:34 +0200)]
scm+test: Factor-out math and vector.
* module/mes/base-0.mes (quotient): Remove.
* module/mes/scm.mes (quotient): Add.
* tests/scm.test: Remove arithmetic/math tests.
* tests/math.test: New file.
* GNUmakefile (TESTS): Add it
Jan Nieuwenhuizen [Thu, 23 Mar 2017 17:57:06 +0000 (18:57 +0100)]
mescc: Have ungetc remember 2 positions.
* doc/examples/t.c (read_test): Test it.
* doc/examples/mini-mes.c:
* mlibc.c (getchar, ungetc): Support 2 ungetc positions.
* module/mes/libc.mes (getchar, ungetc): Likewise.
Jan Nieuwenhuizen [Sun, 2 Apr 2017 10:31:15 +0000 (12:31 +0200)]
mescc: Add brk, naive malloc.
* scaffold/mini-mes.c (gc_init_cells): Use malloc to init g_cells.
* scaffold/malloc.c: New file.
* GNUmakefile (malloc, guile-malloc): New targets.
* module/mes/libc-i386.mes (i386:brk): New function.
(i386:libc): Add it.
* mlibc.c (brk): New function.
(malloc): Use it.
(realloc): New function.
* module/mes/libc.mes (malloc, realloc): New functions.
Jan Nieuwenhuizen [Thu, 23 Mar 2017 17:48:19 +0000 (18:48 +0100)]
mescc: Struct fixes.
* module/language/c99/compiler.mes (expr->arg, expr->accu, ast->info):
Fixes for struct assignment.
Jan Nieuwenhuizen [Wed, 22 Mar 2017 06:54:45 +0000 (07:54 +0100)]
mescc: Add missing defines.
* module/language/c99/compiler.mes (mescc): Set STDIN, STDOUT, STDERR,
INT_MIN, INT_MAX.
Jan Nieuwenhuizen [Wed, 22 Mar 2017 06:09:58 +0000 (07:09 +0100)]
mini-mes: Update display_.
* doc/examples/mini-mes.c (display_): Add separator, nicer recursion.
* mes.c (display_): Update.
Jan Nieuwenhuizen [Wed, 22 Mar 2017 06:13:34 +0000 (07:13 +0100)]
mescc: Struct by value assignment fixes.
* module/language/c99/compiler.mes (ast->info): Remove g_function
hardcoding, fix struct assignment.
* doc/examples/t.c (struct_test): Test it.
Jan Nieuwenhuizen [Wed, 22 Mar 2017 06:10:54 +0000 (07:10 +0100)]
mescc: Fix struct field comparison.
* module/language/c99/compiler.mes (expr->accu, ast->info): Some
push/pop fixes, fixes struct field comparisons.
* doc/examples/t.c (struct_test): Test it.
Jan Nieuwenhuizen [Wed, 22 Mar 2017 05:59:50 +0000 (06:59 +0100)]
mescc: Run full scheme reader read-0.mes.
* lib.c (load_env)[MINI_MES]: Load full reader, module/mes/read-0.mes.
* GNUmakefile (module/mes/read-0-32.mo): Update dependency.
* module/mes/mini-0.mes: Remove.
* doc/examples/t.c (struct_test):
* module/mes/read-0-32.mo: New file: bootstrap binary reader.
Jan Nieuwenhuizen [Wed, 22 Mar 2017 05:39:24 +0000 (06:39 +0100)]
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.
Jan Nieuwenhuizen [Sun, 19 Mar 2017 12:41:56 +0000 (13:41 +0100)]
mescc: Cleanup mini-mes build and test.
* GNUmakefile (guile-cons-mes guile-m guile-main guile-micro-mes
guile-mini-mes guile-t guile-tiny-mes): New targets.
(clean): Clean them.
* .gitignore: Ignore them.
* HACKING: Update.
* scaffold/tiny-mes.c (bload_env): Read module/mes/tiny-0-32.mo.
* scaffold/cons-mes.c (simple_bload_env): Likewise.
* lib.c (dump)[MES_TINY]: Write crafted dump: module/mes/tiny-0-32.mo.
(load_env): Read module/mes/mini-0.mes.
(bload_env): Read module/mes/read-0-32.mo.
* module/mes/mini-0.mes: New file.
* module/mes/tiny-0.mes : New file.
Jan Nieuwenhuizen [Sun, 2 Apr 2017 10:29:09 +0000 (12:29 +0200)]
mescc: Refactor libc.
* GNUmakefile (mini-mes): Add include.
* mlibc.c: New file: libc bits for GNUC -nostdlib.
* mstart.c: New file: _start for GNUC -nostdlib.
* scaffold/cons-mes.c: Remove GNUC libc bits.
* scaffold/m.c: Likewise.
* scaffold/mini-mes.c: Likewise.
* scaffold/t.c: Likewise.
* scaffold/tiny-mes.c: Litkewise.
* module/language/c99/compiler.mes (libc, i386:libc): Remove.
* module/language/c99/compiler.scm
* module/mes/libc-i386.mes: Remove assembly bits.
(_start): New function.
* module/mes/libc-i386.scm: Export it, remove assembly exports.
* module/mes/as-i386.mes: New file: assembly bits from libc-i386.mes.
* module/mes/as-i386.scm: New file: export them.
* module/mes/libc.mes (libc,_start): New functions from compiler.mes.
* module/mes/libc.scm: Export them.
Jan Nieuwenhuizen [Sun, 19 Mar 2017 09:27:18 +0000 (10:27 +0100)]
mescc: Refactor ret.
* module/mes/libc-i386.mes (i386:ret): Refactor.
* module/language/c99/compiler.mes (ast->info): Use it.
Jan Nieuwenhuizen [Sat, 18 Mar 2017 22:00:04 +0000 (23:00 +0100)]
mescc: Cache text generation.
* module/mes/elf-util.mes (functions->text): Add cache.
Jan Nieuwenhuizen [Sat, 18 Mar 2017 18:12:25 +0000 (19:12 +0100)]
mescc: Refactor function-offset.
* module/mes/elf-util.mes (function-offset): Recurse down. Factor 5
speedup on mini-mes.c.
Jan Nieuwenhuizen [Sat, 18 Mar 2017 07:58:15 +0000 (08:58 +0100)]
mescc: Cache data-offset too.
* module/mes/elf-util.mes (data-offset): Add cache.
Jan Nieuwenhuizen [Sat, 18 Mar 2017 07:25:15 +0000 (08:25 +0100)]
mescc: Support assignment with comparison.
* module/language/c99/compiler.mes (expr->accu): Handle assignment -> accu.
* doc/examples/t.c (test): Test it.
* doc/examples/mini-mes.c (eval_apply): Use it.
Jan Nieuwenhuizen [Sat, 18 Mar 2017 07:17:18 +0000 (08:17 +0100)]
mescc: Support assignment test.
* module/language/c99/compiler.mes (test->jump->info): Handle assignment.
* doc/examples/t.c (test): Test it.
Jan Nieuwenhuizen [Fri, 17 Mar 2017 22:49:29 +0000 (23:49 +0100)]
mescc: Fix simple value tests.
* module/language/c99/compiler.mes (test->jump->info): Test accu
before jumping. Fixes simple value tests.
Jan Nieuwenhuizen [Fri, 17 Mar 2017 21:45:48 +0000 (22:45 +0100)]
mescc: Struct by value.
* build-aux/mes-snarf.scm (symbol->names, function->header,
function->environment): Remove struct by value assignment
workarounds.
* module/language/c99/compiler.mes (ast->info): Remove struct by value
assignment debug printing.
Jan Nieuwenhuizen [Fri, 17 Mar 2017 16:54:37 +0000 (17:54 +0100)]
mescc: Support generic initializer.
* module/language/c99/compiler.mes (ast->info): Support generic
declaration using initializer. Supports struct field initializer.
* doc/examples/t.c (struct_test): Test it.
* doc/examples/mini-mes.c (call_lambda, eval_apply, write_byte,
display_): Use it. (call_lambda): (eval_apply,
list_of_char_equal_p): Use it.
Jan Nieuwenhuizen [Fri, 17 Mar 2017 16:32:23 +0000 (17:32 +0100)]
mescc: Remove last hardcodings for identifiers.
* module/language/c99/compiler.mes (ident->accu, ident->base):
Use local:ptr, type->size to remove hard coding of functionx, c1.
(expr->accu): Use type->size to remove hard coding of size byte.
(decl->type): Also handle typename, bail out if type not found.
(type->size): Print identifier and and bail out if type not found.
(formal:ptr): New function.
(formals->locals): Use it to set pointer value of parameter. WAS: 0.
(ast->info): Remove functionx hardcoding.
(getchar): Rename c1 to c.
* doc/examples/t.c: Test it.
Jan Nieuwenhuizen [Fri, 17 Mar 2017 07:37:45 +0000 (08:37 +0100)]
mescc: Support function call with enum value.
* doc/examples/mini-mes.c: Remove debug printing.
* module/language/c99/compiler.mes (push-global, push-local,
push-global-address, push-local-address, push-local-de-ref): Return
list of lambda.
(push-ident): Support push constant. Fixes mini-mes,
cstring_to_list.
* doc/examples/t.c (test): Test it.
Jan Nieuwenhuizen [Mon, 13 Mar 2017 23:15:13 +0000 (00:15 +0100)]
mescc: Fix d-sel comparisons.
* module/language/c99/compiler.mes (ast->info): Save base while
computing accu. Fix comparison using d-sel in second argument.
* doc/examples/t.c: Test it.
* doc/examples/mini-mes.c (assq): Use it.
Jan Nieuwenhuizen [Mon, 13 Mar 2017 18:38:38 +0000 (19:38 +0100)]
mescc: Fix for character array s[0].
* module/language/c99/compiler.mes (expr->arg, expr->accu, ast->info):
Use type size to calculate index.
* doc/examples/t.c: Test it.
* doc/examples/mini-mes.c (cstring_to_list): Simplify.
Jan Nieuwenhuizen [Sun, 12 Mar 2017 11:02:12 +0000 (12:02 +0100)]
mescc: Support mini-mes running scheme program with builtins.
Mini-mes, compiled with either gcc or mescc, now runs a memory dump of
this mini-0.mes program
(begin
(write-byte (make-cell 0 0 65))
(write-byte (make-cell 0 0 66))
(write-byte (make-cell 0 0 67))
(write-byte (make-cell 0 0 10))
#f)
when read and dumped by (gcc-compiled) mes-32.
* build-aux/mes-snarf.scm: FIXES ..collapse?
* module/language/c99/compiler.mes (ast->info): Bail out on unhandled
declarations. Was: verbosely skip.
Jan Nieuwenhuizen [Sun, 12 Mar 2017 10:05:20 +0000 (11:05 +0100)]
mescc: Support [for] itoa.
* module/mes/libc-i386.mes (i386:accu%base): New function.
* module/mes/libc-i386.scm: Export it.
* module/language/c99/compiler.mes (expr->accu): Use it to support mod.
* doc/examples/t.c (itoa): New function.
(test): Test it.
* doc/examples/mini-mes.c (itoa)[!__GNUC__]: New function.
Jan Nieuwenhuizen [Sun, 12 Mar 2017 10:05:00 +0000 (11:05 +0100)]
mescc: Support do .. while.
* module/language/c99/compiler.mes (ast->info): Support do-while.
* doc/examples/t.c (test): Test it.
Jan Nieuwenhuizen [Fri, 10 Mar 2017 19:56:18 +0000 (20:56 +0100)]
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.
Matt Wette [Sun, 5 Mar 2017 21:22:51 +0000 (13:22 -0800)]
nyacc: removed start from lalr-spec -- not needed
Matt Wette [Sat, 4 Mar 2017 01:07:29 +0000 (17:07 -0800)]
nyacc: working javascript interpreter in guile
Matt Wette [Fri, 3 Mar 2017 00:23:44 +0000 (16:23 -0800)]
nyacc: lex fixes for char-lit
Matt Wette [Thu, 2 Mar 2017 02:11:40 +0000 (18:11 -0800)]
nyacc: cleaned up documentation
Matt Wette [Wed, 1 Mar 2017 01:19:48 +0000 (17:19 -0800)]
nyacc: working on C99 UG as a memo
Matt Wette [Tue, 28 Feb 2017 17:57:49 +0000 (09:57 -0800)]
nyacc: new release 0.76.5
Matt Wette [Tue, 28 Feb 2017 17:53:41 +0000 (09:53 -0800)]
nyacc: fixed bug in pretty-print-c99 wrt i-sel
Matt Wette [Sat, 25 Feb 2017 15:36:57 +0000 (07:36 -0800)]
nyacc: merge from 0.76.4
Matt Wette [Fri, 24 Feb 2017 01:31:24 +0000 (17:31 -0800)]
nyacc: new release 0.76.4
Matt Wette [Thu, 23 Feb 2017 13:38:49 +0000 (05:38 -0800)]
nyacc: new release 0.76.3
Matt Wette [Thu, 23 Feb 2017 13:37:25 +0000 (05:37 -0800)]
nyacc: more bugs in cpp tokl->string
Matt Wette [Thu, 23 Feb 2017 01:14:07 +0000 (17:14 -0800)]
nyacc: new release 0.76.2
Matt Wette [Thu, 23 Feb 2017 01:12:32 +0000 (17:12 -0800)]
nyacc: fixed more CPP issues
Matt Wette [Wed, 22 Feb 2017 16:26:40 +0000 (08:26 -0800)]
nyacc: new release 0.76.1
Matt Wette [Wed, 22 Feb 2017 16:23:27 +0000 (08:23 -0800)]
nyacc: fixed C99 CPP to deal with numbers correctly
Matt Wette [Mon, 20 Feb 2017 21:45:45 +0000 (13:45 -0800)]
nyacc: merge master 0.76.0
Matt Wette [Sun, 19 Feb 2017 16:28:25 +0000 (08:28 -0800)]
nyacc: new release 0.76.0
Matt Wette [Sun, 19 Feb 2017 16:26:30 +0000 (08:26 -0800)]
nyacc: worked c99/util2.scm udecl->mspec
Matt Wette [Sun, 19 Feb 2017 01:11:12 +0000 (17:11 -0800)]
nyacc: new release 0.75.6
Matt Wette [Sun, 19 Feb 2017 01:06:50 +0000 (17:06 -0800)]
nyacc: fixed some c99/util2 items
Matt Wette [Fri, 17 Feb 2017 18:21:52 +0000 (10:21 -0800)]
nyacc: merged in 0.75.5 from master and inc version
Matt Wette [Fri, 17 Feb 2017 16:30:20 +0000 (08:30 -0800)]
nyacc: new release 0.75.5
Matt Wette [Fri, 17 Feb 2017 00:14:42 +0000 (16:14 -0800)]
nyacc: new release 0.74.4
Matt Wette [Fri, 17 Feb 2017 00:12:40 +0000 (16:12 -0800)]
nyacc: minor cpp fixes
Matt Wette [Thu, 16 Feb 2017 19:03:11 +0000 (11:03 -0800)]
nyacc: merge from 0.75.3
Matt Wette [Thu, 16 Feb 2017 14:26:10 +0000 (06:26 -0800)]
nyacc: new release 0.75.3
Matt Wette [Thu, 16 Feb 2017 14:24:56 +0000 (06:24 -0800)]
nyacc: new release 0.75.2
Matt Wette [Thu, 16 Feb 2017 14:12:32 +0000 (06:12 -0800)]
nyacc: new release 0.75.1
Matt Wette [Thu, 16 Feb 2017 04:49:07 +0000 (20:49 -0800)]
nyacc: new release 0.74.0
Matt Wette [Thu, 16 Feb 2017 03:58:29 +0000 (19:58 -0800)]
nyacc: I think cpp is working now
Matt Wette [Wed, 15 Feb 2017 03:24:59 +0000 (19:24 -0800)]
nyacc: working cpp now, I hope
Matt Wette [Sun, 12 Feb 2017 22:29:18 +0000 (14:29 -0800)]
nyacc: CPP not yet working for file mode
Matt Wette [Sat, 11 Feb 2017 21:04:38 +0000 (13:04 -0800)]
nyacc: working on cpp issues
Matt Wette [Sun, 5 Feb 2017 15:52:44 +0000 (07:52 -0800)]
nyacc: C99 CPP for code is better
Matt Wette [Fri, 20 Jan 2017 22:51:55 +0000 (14:51 -0800)]
nyacc: starting to work on reframing
Matt Wette [Thu, 19 Jan 2017 01:26:41 +0000 (17:26 -0800)]
nyacc: more CPP fixes
Matt Wette [Tue, 17 Jan 2017 13:50:45 +0000 (05:50 -0800)]
nyacc: redesign lang/c99/cppbocy.scm:scan-cpp-input
Jan Nieuwenhuizen [Fri, 10 Mar 2017 06:01:51 +0000 (07:01 +0100)]
mescc: Support goto in while body.
* module/language/c99/compiler.mes (ast->info): Support goto in while
body.
* doc/examples/t.c (test): Test it.
Jan Nieuwenhuizen [Thu, 9 Mar 2017 22:27:12 +0000 (23:27 +0100)]
core+mini-mes: Move function name to struct function.
* module/language/c99/compiler.mes (expr->arg): Handle char arguments.
* doc/examples/cons-mes.c (struct function): Add name field.
* doc/examples/mini-mes.c: Likewise.
(mes_builtins): Update.
* mes.c: Likewise.
* build-aux/mes-snarf.scm: Update.
Jan Nieuwenhuizen [Thu, 9 Mar 2017 07:14:27 +0000 (08:14 +0100)]
mescc: Support strings in struct initialization.
* module/mes/elf-util.mes (add-s:-prefix, drop-s:-prefix): New functions.
* module/mes/elf-util.scm: Export them.
* module/language/c99/compiler.mes (string->global): Add `s:' prefix
to global strings. Update users.
(expr->arg): Update.
(expr->accu): Handle string expressions.
(initzer->global): New function.
(struct-field): Handle string field.
* doc/examples/t.c: Test it.
* doc/examples/mini-mes.c: Use it.
dun!
Jan Nieuwenhuizen [Tue, 7 Mar 2017 21:33:59 +0000 (22:33 +0100)]
mescc: Display sexps better.
* module/mes/elf.mes (make-elf): Only display data sections smaller
than 200 bytes.
* doc/examples/mini-mes.c (simple_bload_env): Read mini-0-32.mes.
* doc/examples/cons-mes.c (display_): Support symbols and specials.
* doc/examples/tiny-mes.c: Likewise.
* lib.c:
* mes.c:
Jan Nieuwenhuizen [Mon, 6 Mar 2017 06:14:15 +0000 (07:14 +0100)]
mescc: Compile all of mini-mes.
* module/language/c99/compiler.mes (case->jump-info): Support single statement.
* module/mes/elf-util.mes (function-prefix): Workaround for reversed
functions. FIXME!
* module/mes/elf.mes:
* scaffold/mini-mes.c (type_t): Rename FUNCTION to TFUNCTION for Nyacc.
Add missing symbols.
(eval_apply): Uncomment most.
* scaffold/tiny-mes.c:
* scaffold/cons-mes.c: Remove cruft.
Jan Nieuwenhuizen [Thu, 2 Mar 2017 19:26:13 +0000 (20:26 +0100)]
mescc: Support struct assignment.
* module/mes/libc-i386.mes (i386:base-address->accu-address,
i386:accu+n, i386:base+n): New functions.
* module/mes/libc-i386.scm: Export them.
* module/language/c99/compiler.mes (ast->info): Use them.
* doc/examples/t.c: Test them.
* doc/examples/cons-mes.c: Drop workarounds.
* doc/examples/mini-mes.c: Likewise.
* mes.c:
Jan Nieuwenhuizen [Thu, 2 Mar 2017 19:19:53 +0000 (20:19 +0100)]
mescc: Fix add, sub, lshift.
* module/language/c99/compiler.mes (expr->accu): Fix add, sub, lshift.
* doc/examples/t.c: Test them.
* doc/examples/cons-mes.c:
* doc/examples/mini-mes.c:
Jan Nieuwenhuizen [Mon, 27 Feb 2017 06:50:33 +0000 (07:50 +0100)]
mescc: Support any expression as arg.
* module/language/c99/compiler.mes (expr->arg): Also push parameter,
always return info.
(ast->info): Loop over args. Fixes using function calls in arguments.
* module/mes/libc-i386.mes (i386:push-arg): Remove.
(i386:call, i386:call-accu): Remove arguments parameter.
* doc/examples/t.c: Test it.
Jan Nieuwenhuizen [Thu, 2 Mar 2017 05:41:19 +0000 (06:41 +0100)]
mescc: Rename expr->accu*.
* module/language/c99/compiler.mes (expr->accu*): Rename from expr->accuX.
Jan Nieuwenhuizen [Sun, 2 Apr 2017 10:13:04 +0000 (12:13 +0200)]
mescc: Fixes for goto.
* module/mes/libc-i386.mes (XXjump): New function.
* module/mes/libc-i386.scm: Export it.
* module/language/c99/compiler.mes (case->jump-info, ast->info): Use it.
* scaffold/t.c: Test it.
* GNUmakefile (cons-mes): New target.
* scaffold/cons-mes.c: New file.
* scaffold/mini-mes.c:
Jan Nieuwenhuizen [Fri, 24 Feb 2017 12:27:39 +0000 (13:27 +0100)]
mescc: Mini-mes runs (cons 0 1) dump.
* module/mes/libc-i386.mes (i386:Xjump-z, i386:Xjump-c,
i386:Xjump-nc): New functions.
* module/mes/libc-i386.scm: Export them.
* module/language/c99/compiler.mes (case->jump-info, test-jump->info,
ast->info): Use them.
* doc/examples/t.c: Test it.
* doc/examples/mini-mes.c: Run it.
Jan Nieuwenhuizen [Sun, 29 Jan 2017 14:22:39 +0000 (15:22 +0100)]
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.
Jan Nieuwenhuizen [Sun, 22 Jan 2017 13:16:22 +0000 (14:16 +0100)]
doc: Add gdb assembly debugging info.
* HACKING: Add gdb assembly debugging info.
Jan Nieuwenhuizen [Sat, 21 Jan 2017 15:15:34 +0000 (16:15 +0100)]
doc: Add fosdem talk.
* .gitignore: Ignore beamer/tex stuff.
* doc/fosdem/fosdem.org: New file.
* doc/fosdem/GuixSD.png: New file.
* doc/fosdem/LISP-1-5-page-13-bottom.png: New file.
* doc/fosdem/LISP-1.5-page-13-bottom.png: New file.
* doc/fosdem/LISP-1.5-page-13.pdf: New file.
* doc/fosdem/LISP-1.5-page-13.png: New file.
* doc/fosdem/beamercolorthemeX.sty: New file.
* doc/fosdem/beamerthemeX.sty: New file.
* doc/fosdem/bootstrap-graph.png: New file.
* doc/fosdem/egg.jpeg: New file.
* doc/fosdem/egg.png: New file.
* doc/fosdem/egg.xcf: New file.
* doc/fosdem/fosdem.pdf: New file.
* doc/fosdem/fsb-logo-guile-guix-gnu.png: New file.
* doc/fosdem/fsb-logo-guile-guix-gnu.xcf: New file.
* doc/fosdem/fsb-logo-guile-guix-mes.png: New file.
* doc/fosdem/fsb-logo-guile-guix-mes.xcf: New file.
* doc/fosdem/fsb-logo.png: New file.
* doc/fosdem/guix-build-bootstrap-tarballs.log: New file.
* doc/fosdem/html.sty: New file.
* doc/fosdem/mes.png: New file.
* doc/fosdem/mes.xcf: New file.
Jan Nieuwenhuizen [Sat, 21 Jan 2017 12:17:24 +0000 (13:17 +0100)]
mescc: bugfix: arg as function call.
* module/language/c99/compiler.mes (expr->arg):
Jan Nieuwenhuizen [Wed, 18 Jan 2017 06:38:45 +0000 (07:38 +0100)]
mini-mes: gcc: run (cons 0 1).