2020-07-14 06:13:47 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
ptr_once='s,([^N])(MACRO|NAME|VALUE) \(([^()]*)\),\1\3->\L\2,'
|
|
|
|
ptr_once='s,([^N])(BYTES|CAR|CDR|CLOSURE|CONTINUATION|LENGTH|MACRO|NAME|PORT|REF|STRING|STRUCT|TYPE|VALUE|VARIABLE|VECTOR) \(([^()]*)\),\1\3->\L\2,'
|
|
|
|
n_once='s,N(TYPE|CAR|CDR|LENGTH|VALUE|VECTOR) \(([^()]*)\),\2->\L\1,'
|
|
|
|
ncbytes='s,NC(BYTES) \(([^()]*)\),news_\L\1 (\2),'
|
|
|
|
cbytes='s,([^N])C(BYTES) \(([^()]*)\),\1cell_\L\2 (\3),'
|
|
|
|
cstring='s,C(STRING) \(([^()]*)\),cell_bytes (STRING (\2)),'
|
|
|
|
struct='s,SCM,struct scm *,g'
|
|
|
|
struct_scm_p='s,struct scm\* ?,struct scm *,g'
|
|
|
|
|
|
|
|
sed -ri \
|
|
|
|
-e 's,POINTER_CELLS=0,POINTER_CELLS=1', \
|
|
|
|
-e 's,#define POINTER_CELLS 0,#define POINTER_CELLS 1', \
|
|
|
|
-e "$ncbytes" \
|
|
|
|
-e "$cbytes" \
|
|
|
|
-e "$cstring" \
|
|
|
|
\
|
|
|
|
-e "$ncbytes" \
|
|
|
|
-e "$cbytes" \
|
|
|
|
-e "$cstring" \
|
|
|
|
\
|
|
|
|
-e "$ptr_once" \
|
|
|
|
-e "$ptr_once" \
|
|
|
|
-e "$ptr_once" \
|
|
|
|
-e 's,->\<struct\>,->structure,g' \
|
|
|
|
-e "$struct" \
|
|
|
|
-e "$struct_scm_p" \
|
|
|
|
\
|
|
|
|
-e "$n_once" \
|
|
|
|
-e "$n_once" \
|
|
|
|
\
|
|
|
|
-e 's,CAR \(([^()]*)\),\1->cdr,' \
|
|
|
|
-e 's,CAAR \(([^()]*)\),\1->car->car,' \
|
|
|
|
-e 's,CADR \(([^()]*)\),\1->cdr->car,' \
|
|
|
|
-e 's,CDAR \(([^()]*)\),\1->car->cdr,' \
|
|
|
|
-e 's,CDDR \(([^()]*)\),\1->cdr->cdr,' \
|
|
|
|
-e 's,CADAR \(([^()]*)\),\1->car->cdr->car,' \
|
|
|
|
-e 's,CADDR \(([^()]*)\),\1->cdr->cdr->car,' \
|
2020-08-18 21:01:53 +00:00
|
|
|
-e 's,CDADR \(([^()]*)\),\1->cdr->car->cdr,' \
|
2020-07-14 06:13:47 +00:00
|
|
|
-e 's,CDDDR \(([^()]*)\),\1->cdr->cdr->cdr,' \
|
2020-08-18 21:01:53 +00:00
|
|
|
-e 's,CDDAR \(([^()]*)\),\1->car->cdr->cdr,' \
|
2020-07-14 06:13:47 +00:00
|
|
|
-e 's,CDADAR \(([^()]*)\),\1->cdr->car->cdr->car,' \
|
|
|
|
\
|
|
|
|
include/mes/builtins.h \
|
|
|
|
include/mes/mes.h \
|
|
|
|
include/mes/symbols.h \
|
|
|
|
include/mes/builtins.h \
|
2020-08-18 21:01:53 +00:00
|
|
|
include/m2/lib.h \
|
2020-07-14 06:13:47 +00:00
|
|
|
src/builtins.c \
|
2020-08-18 21:01:53 +00:00
|
|
|
src/cc.c \
|
core: Split-out core.c.
* src/mes.c (assoc_string, car, cdr, list, null_p, eq_p, values, acons,
length__, length, error, append2, append_reverse, reverse_x_, assq,
assoc): Move to ...
* src/core.c: New file.
* build-aux/configure-lib.sh (mes_SOURCES): Add it.
* simple.make (MES_SOURCES): Likewise.
* build-aux/snarf.sh: Likewise.
* include/mes/builtins.h: Update.
* src/builtins.c (mes_builtins): Update.
2020-07-19 06:49:23 +00:00
|
|
|
src/core.c \
|
2020-07-14 06:13:47 +00:00
|
|
|
src/display.c \
|
|
|
|
src/eval-apply.c \
|
|
|
|
src/gc.c \
|
|
|
|
src/hash.c \
|
|
|
|
src/lib.c \
|
2020-08-18 21:01:53 +00:00
|
|
|
src/m2.c \
|
2020-07-14 06:13:47 +00:00
|
|
|
src/math.c \
|
|
|
|
src/mes.c \
|
|
|
|
src/module.c \
|
|
|
|
src/posix.c \
|
|
|
|
src/reader.c \
|
2020-07-19 06:53:46 +00:00
|
|
|
src/stack.c \
|
2020-07-14 06:13:47 +00:00
|
|
|
src/string.c \
|
|
|
|
src/struct.c \
|
|
|
|
src/symbol.c \
|
|
|
|
src/vector.c \
|
2020-08-16 06:56:56 +00:00
|
|
|
src/test/gc.c \
|
|
|
|
simple.make \
|