mirror of
https://github.com/janet-lang/janet
synced 2024-11-16 05:34:48 +00:00
78 lines
1.9 KiB
C
78 lines
1.9 KiB
C
#include "unit.h"
|
|
#include <dst/dst.h>
|
|
#include <dst/dststl.h>
|
|
|
|
int testprint(DstValue *argv, int32_t argn) {
|
|
int32_t i;
|
|
for (i = 0; i < argn; i++) {
|
|
dst_puts(dst_formatc("%v\n", argv[i]));
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
DstReg testreg[] = {
|
|
{"print", testprint},
|
|
{"+", dst_add},
|
|
{"-", dst_subtract},
|
|
{"*", dst_multiply},
|
|
{"/", dst_divide},
|
|
{"%", dst_modulo},
|
|
{"acos", dst_acos},
|
|
{"asin", dst_asin}
|
|
};
|
|
|
|
int main() {
|
|
DstParseResult pres;
|
|
DstCompileOptions opts;
|
|
DstCompileResult cres;
|
|
DstFunction *func;
|
|
|
|
FILE *f = fopen("./dsttest/basic.dst", "rb");
|
|
fseek(f, 0, SEEK_END);
|
|
long fsize = ftell(f);
|
|
fseek(f, 0, SEEK_SET); //same as rewind(f);
|
|
|
|
char *string = malloc(fsize + 1);
|
|
fread(string, fsize, 1, f);
|
|
fclose(f);
|
|
|
|
string[fsize] = 0;
|
|
|
|
dst_init();
|
|
|
|
pres = dst_parsec(string);
|
|
free(string);
|
|
|
|
if (pres.status == DST_PARSE_ERROR) {
|
|
dst_puts(dst_formatc("parse error at %d: %S\n", pres.bytes_read, pres.error));
|
|
return 1;
|
|
}
|
|
assert(pres.status == DST_PARSE_OK);
|
|
dst_puts(dst_formatc("\nparse result: %v\n\n", pres.value));
|
|
|
|
opts.flags = 0;
|
|
opts.source = pres.value;
|
|
opts.sourcemap = pres.map;
|
|
opts.env = dst_loadreg(testreg, sizeof(testreg)/sizeof(DstReg));
|
|
dst_puts(dst_formatc("initial compile env: %v\n", opts.env));
|
|
|
|
cres = dst_compile(opts);
|
|
if (cres.status == DST_COMPILE_ERROR) {
|
|
dst_puts(dst_formatc("compilation error: %S\n", cres.error));
|
|
dst_puts(dst_formatc("error location: %d, %d\n", cres.error_start, cres.error_end));
|
|
return 1;
|
|
}
|
|
assert(cres.status == DST_COMPILE_OK);
|
|
|
|
dst_puts(dst_formatc("\nfuncdef: %v\n\n", dst_disasm(cres.funcdef)));
|
|
|
|
func = dst_compile_func(cres);
|
|
|
|
dst_run(dst_wrap_function(func));
|
|
dst_puts(dst_formatc("result: %v\n", dst_vm_fiber->ret));
|
|
|
|
dst_deinit();
|
|
|
|
return 0;
|
|
}
|