Historical internal name "uncommonlisp" retired in favor of the
public name "lumbda" ahead of lumbda.com going live. Scope of
this commit:
Source files renamed:
uncommonlisp.py -> lumbda.py
asm/uncommonlisp.s -> asm/lumbda.s
c/uncommonlisp.h -> c/lumbda.h
whitepaper/uncommonlisp-whitepaper -> whitepaper/lumbda-whitepaper (.rst + .pdf)
Binaries renamed (tracked ones; c/ was always gitignored):
asm/uncommonlisp, asm/uncommonlisp-gc, asm/uncommonlisp.o,
asm/uncommonlisp-gc.o -> asm/lumbda(-gc)(.o)
c/.gitignore -> ignores lumbda
Internal string updates (sed pass ordered longest-first):
asm/uncommonlisp -> asm/lumbda
c/uncommonlisp -> c/lumbda
uncommonlisp.py -> lumbda.py
UNCOMMONLISP_BIN -> LUMBDA_BIN (asm/test.sh env var)
"uncommonlisp> " -> "lumbda> " (asm REPL prompt baked into binary)
UNCOMMONLISP -> LUMBDA (macros, comments)
uncommonlisp -> lumbda (prose)
Binary portal magic updated:
"ULPORTAL" -> "LUMBDAB1" # "Lumbda Binary v1"
Old portal files are not backward-compatible — this is a deliberate
break since it's the rename moment. S-expression portals already
carry their own ";; lumbda-portal v1" header and remain cleanly
versioned.
WHITEPAPER.pdf / WHITEPAPER.rst symlinks repointed to the renamed
files. Makefile's whitepaper target targets lumbda-whitepaper.pdf.
Not changed (intentional, separate phases):
- Filesystem directory /home/fox/git/uncommonlisp itself
(fox renames locally and the gitlab repo URL in a follow-up)
- tests.py hardcoded cwd=/home/fox/git/uncommonlisp
(matches the current on-disk location; will flip when the
directory rename ships)
- Git history (immutable; old commits still say uncommonlisp,
which is correct — that's what they were)
Verified:
137 asm no-GC + 137 asm GC + 571 Python + 83 C + 189 shared
functional tests all pass under the new names.
bench-gc-http (2000 req): all 4 cells behave as expected
(cells 1/2 flat, 3 leaks, 4 bounded at 1 chunk).
Python REPL, C REPL, asm REPL all start cleanly.
252 lines
8.8 KiB
C
252 lines
8.8 KiB
C
/*
|
|
* main.c — REPL, script mode, -e mode
|
|
*/
|
|
#include "lumbda.h"
|
|
#include "jit.h"
|
|
|
|
/* ═══════════════════════════════════════════════════════════════════════════
|
|
* Find stdlib.lsp relative to the executable
|
|
* ═══════════════════════════════════════════════════════════════════════════ */
|
|
|
|
static char *find_stdlib(const char *argv0) {
|
|
/* Try relative to executable: ../stdlib.lsp */
|
|
char path[4096];
|
|
|
|
/* Try via /proc/self/exe on Linux */
|
|
ssize_t n = readlink("/proc/self/exe", path, sizeof(path) - 1);
|
|
if (n > 0) {
|
|
path[n] = '\0';
|
|
/* Go up one directory (from c/lumbda to lumbda/) */
|
|
char *slash = strrchr(path, '/');
|
|
if (slash) {
|
|
*slash = '\0';
|
|
slash = strrchr(path, '/');
|
|
if (slash) {
|
|
slash[1] = '\0';
|
|
strcat(path, "stdlib.lsp");
|
|
if (access(path, R_OK) == 0) return ul_strdup(path);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Try current directory */
|
|
if (access("stdlib.lsp", R_OK) == 0) return ul_strdup("stdlib.lsp");
|
|
|
|
/* Try relative to argv0 */
|
|
if (argv0) {
|
|
const char *slash = strrchr(argv0, '/');
|
|
if (slash) {
|
|
size_t dir_len = slash - argv0;
|
|
snprintf(path, sizeof(path), "%.*s/../stdlib.lsp", (int)dir_len, argv0);
|
|
if (access(path, R_OK) == 0) return ul_strdup(path);
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/* ═══════════════════════════════════════════════════════════════════════════
|
|
* REPL
|
|
* ═══════════════════════════════════════════════════════════════════════════ */
|
|
|
|
static void repl(Env *env) {
|
|
char *version_str = show(env_lookup(env, intern("*version*")), true);
|
|
printf("lumbda %s (C) — (exit) to quit, (load \"file.lsp\") to load\n", version_str);
|
|
ul_free(version_str);
|
|
|
|
char buf[16384];
|
|
buf[0] = '\0';
|
|
size_t buf_len = 0;
|
|
|
|
while (1) {
|
|
printf(buf_len > 0 ? " " : "λ> ");
|
|
fflush(stdout);
|
|
|
|
char line[4096];
|
|
if (!fgets(line, sizeof(line), stdin)) {
|
|
if (buf_len > 0) { buf[0] = '\0'; buf_len = 0; printf("\n"); continue; }
|
|
printf("\n");
|
|
break;
|
|
}
|
|
|
|
size_t line_len = strlen(line);
|
|
if (buf_len + line_len >= sizeof(buf) - 1) {
|
|
buf[0] = '\0'; buf_len = 0; continue;
|
|
}
|
|
memcpy(buf + buf_len, line, line_len);
|
|
buf_len += line_len;
|
|
buf[buf_len] = '\0';
|
|
|
|
/* Check for balanced parens */
|
|
int depth = 0;
|
|
for (size_t i = 0; i < buf_len; i++) {
|
|
if (buf[i] == '(') depth++;
|
|
else if (buf[i] == ')') depth--;
|
|
}
|
|
if (depth > 0) continue;
|
|
|
|
/* Try to parse */
|
|
int count;
|
|
Value *exprs;
|
|
TRY(ctx) {
|
|
exprs = read_all(buf, &count, false);
|
|
} CATCH {
|
|
if (depth > 0) continue;
|
|
buf[0] = '\0'; buf_len = 0;
|
|
continue;
|
|
} ENDTRY;
|
|
|
|
if (count == 0) { buf[0] = '\0'; buf_len = 0; continue; }
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
TRY(ctx) {
|
|
Value result = leval(exprs[i], env);
|
|
if (!IS_VOID(result)) {
|
|
print_value(result, false, stdout);
|
|
printf("\n");
|
|
}
|
|
} CATCH {
|
|
fprintf(stderr, "error: %s\n", ctx.message);
|
|
} ENDTRY;
|
|
}
|
|
ul_free(exprs);
|
|
buf[0] = '\0'; buf_len = 0;
|
|
}
|
|
}
|
|
|
|
/* ═══════════════════════════════════════════════════════════════════════════
|
|
* Main
|
|
* ═══════════════════════════════════════════════════════════════════════════ */
|
|
|
|
int main(int argc, char **argv) {
|
|
init_symbols();
|
|
Env *g = make_global_env();
|
|
|
|
/* Load prelude */
|
|
{
|
|
int count;
|
|
Value *exprs = read_all(PRELUDE, &count, false);
|
|
for (int i = 0; i < count; i++) leval(exprs[i], g);
|
|
ul_free(exprs);
|
|
}
|
|
|
|
/* Parse args */
|
|
int argi = 1;
|
|
/* Default stays tree-walker for now. Flipping to --fast as default
|
|
* exposed a cumulative-state buffer overflow in the bytecode
|
|
* compiler that only triggers across the full 189-test functional
|
|
* suite, not in isolated scripts. Tracked as a TODO. For deeply
|
|
* recursive workloads (e.g. ackermann(3,8)) pass --fast explicitly
|
|
* or `ulimit -s unlimited` before invoking the tree-walker. */
|
|
bool fast = false;
|
|
bool help = false;
|
|
bool version = false;
|
|
bool jit = false;
|
|
const char *eval_expr = NULL;
|
|
|
|
while (argi < argc) {
|
|
if (strcmp(argv[argi], "--jit") == 0 || strcmp(argv[argi], "-j") == 0) {
|
|
jit = true; argi++;
|
|
} else if (strcmp(argv[argi], "--fast") == 0 || strcmp(argv[argi], "-f") == 0) {
|
|
fast = true; argi++;
|
|
} else if (strcmp(argv[argi], "--help") == 0 || strcmp(argv[argi], "-h") == 0) {
|
|
help = true; argi++;
|
|
} else if (strcmp(argv[argi], "--version") == 0 || strcmp(argv[argi], "-v") == 0) {
|
|
version = true; argi++;
|
|
} else if (strcmp(argv[argi], "-e") == 0 && argi + 1 < argc) {
|
|
eval_expr = argv[argi + 1]; argi += 2;
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (help) {
|
|
printf("lumbda — a Scheme interpreter in C\n\n"
|
|
"Usage: lumbda [options] [script.lsp] [args...]\n"
|
|
" lumbda -e '(+ 1 2)'\n"
|
|
" lumbda (interactive REPL)\n\n"
|
|
"Options:\n"
|
|
" -e EXPR evaluate expression and print result\n"
|
|
" -f, --fast auto-compile all defines (bytecode VM;\n"
|
|
" required for deep recursion, e.g. ackermann(3,8))\n"
|
|
" -j, --jit enable x86_64 JIT compiler for eligible functions\n"
|
|
" -h, --help show this help\n"
|
|
" -v, --version show version\n\n"
|
|
"Features: R7RS core, bytecode compiler, macros, syntax-rules,\n"
|
|
" modules, rationals, string ports, x86_64 JIT.\n");
|
|
return 0;
|
|
}
|
|
|
|
if (version) {
|
|
printf("lumbda 1.0.0 (C)\n");
|
|
return 0;
|
|
}
|
|
|
|
if (fast) g_auto_compile = true;
|
|
if (jit) g_jit_enabled = true;
|
|
|
|
/* Load stdlib.lsp if it exists */
|
|
char *stdlib_path = find_stdlib(argv[0]);
|
|
if (stdlib_path) {
|
|
TRY(ctx) {
|
|
load_file(stdlib_path, g);
|
|
} CATCH {
|
|
/* Ignore stdlib load errors — it's optional */
|
|
} ENDTRY;
|
|
ul_free(stdlib_path);
|
|
}
|
|
|
|
/* -e mode */
|
|
if (eval_expr) {
|
|
TRY(ctx) {
|
|
int count;
|
|
Value *exprs = read_all(eval_expr, &count, false);
|
|
for (int i = 0; i < count; i++) {
|
|
Value result = leval(exprs[i], g);
|
|
if (!IS_VOID(result)) {
|
|
print_value(result, false, stdout);
|
|
printf("\n");
|
|
}
|
|
}
|
|
ul_free(exprs);
|
|
} CATCH {
|
|
fprintf(stderr, "error: %s\n", g_error_ctx ? g_error_ctx->message : "unknown");
|
|
return 1;
|
|
} ENDTRY;
|
|
return 0;
|
|
}
|
|
|
|
/* Script mode */
|
|
if (argi < argc) {
|
|
const char *path = argv[argi];
|
|
/* Set *argv* */
|
|
int script_argc = argc - argi - 1;
|
|
Value *script_argv = (Value *)ul_malloc(sizeof(Value) * script_argc);
|
|
for (int i = 0; i < script_argc; i++) {
|
|
script_argv[i] = make_string_from_cstr(argv[argi + 1 + i]);
|
|
}
|
|
env_define(g, intern("*argv*"), list_to_value(script_argv, script_argc));
|
|
ul_free(script_argv);
|
|
|
|
TRY(ctx) {
|
|
load_file(path, g);
|
|
} CATCH {
|
|
fprintf(stderr, "error: %s\n", ctx.message);
|
|
return 1;
|
|
} ENDTRY;
|
|
return 0;
|
|
}
|
|
|
|
/* REPL mode */
|
|
ErrorContext root_ctx;
|
|
root_ctx.call_stack_depth = 0;
|
|
root_ctx.error_obj = VAL_NIL;
|
|
root_ctx.source_line = 0;
|
|
g_error_ctx = &root_ctx;
|
|
if (setjmp(root_ctx.jmp) != 0) {
|
|
fprintf(stderr, "fatal error: %s\n", root_ctx.message);
|
|
return 1;
|
|
}
|
|
repl(g);
|
|
return 0;
|
|
}
|