2017-12-21 04:03:34 +00:00
|
|
|
/*
|
2018-05-18 03:41:20 +00:00
|
|
|
* Copyright (c) 2018 Calvin Rose
|
2017-12-21 04:03:34 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#include <janet/janet.h>
|
2018-07-04 03:07:35 +00:00
|
|
|
#include "compile.h"
|
2018-03-31 20:40:36 +00:00
|
|
|
#include "state.h"
|
2018-08-20 00:21:27 +00:00
|
|
|
#include "util.h"
|
2017-12-30 21:46:59 +00:00
|
|
|
|
2018-07-04 03:07:35 +00:00
|
|
|
/* Generated header */
|
2018-07-04 04:17:34 +00:00
|
|
|
#include <generated/core.h>
|
2018-07-04 03:07:35 +00:00
|
|
|
|
|
|
|
/* Use LoadLibrary on windows or dlopen on posix to load dynamic libaries
|
|
|
|
* with native code. */
|
2018-10-17 03:08:26 +00:00
|
|
|
#if defined(JANET_NO_DYNAMIC_MODULES)
|
|
|
|
typedef int Clib;
|
|
|
|
#define load_clib(name) ((void) name, 0)
|
|
|
|
#define symbol_clib(lib, sym) ((void) lib, (void) sym, 0)
|
|
|
|
#define error_clib() "dynamic libraries not supported"
|
|
|
|
#elif defined(JANET_WINDOWS)
|
2018-07-04 03:07:35 +00:00
|
|
|
#include <windows.h>
|
|
|
|
typedef HINSTANCE Clib;
|
|
|
|
#define load_clib(name) LoadLibrary((name))
|
|
|
|
#define symbol_clib(lib, sym) GetProcAddress((lib), (sym))
|
|
|
|
#define error_clib() "could not load dynamic library"
|
|
|
|
#else
|
|
|
|
#include <dlfcn.h>
|
|
|
|
typedef void *Clib;
|
|
|
|
#define load_clib(name) dlopen((name), RTLD_NOW)
|
|
|
|
#define symbol_clib(lib, sym) dlsym((lib), (sym))
|
|
|
|
#define error_clib() dlerror()
|
|
|
|
#endif
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetCFunction janet_native(const char *name, const uint8_t **error) {
|
2018-07-04 03:07:35 +00:00
|
|
|
Clib lib = load_clib(name);
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetCFunction init;
|
2018-07-04 03:07:35 +00:00
|
|
|
if (!lib) {
|
2018-09-06 02:18:42 +00:00
|
|
|
*error = janet_cstring(error_clib());
|
2018-07-04 03:07:35 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
init = (JanetCFunction) symbol_clib(lib, "_janet_init");
|
2018-07-04 03:07:35 +00:00
|
|
|
if (!init) {
|
2018-09-06 02:18:42 +00:00
|
|
|
*error = janet_cstring("could not find _janet_init symbol");
|
2018-07-04 03:07:35 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return init;
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_native(JanetArgs args) {
|
|
|
|
JanetCFunction init;
|
2018-07-04 03:07:35 +00:00
|
|
|
const uint8_t *error = NULL;
|
|
|
|
const uint8_t *path = NULL;
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_FIXARITY(args, 1);
|
|
|
|
JANET_ARG_STRING(path, args, 0);
|
|
|
|
init = janet_native((const char *)path, &error);
|
2018-07-04 03:07:35 +00:00
|
|
|
if (!init) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_THROWV(args, janet_wrap_string(error));
|
2018-07-04 03:07:35 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN_CFUNCTION(args, init);
|
2018-07-04 03:07:35 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_print(JanetArgs args) {
|
2017-12-30 21:46:59 +00:00
|
|
|
int32_t i;
|
2018-01-14 17:10:45 +00:00
|
|
|
for (i = 0; i < args.n; ++i) {
|
2017-12-30 21:46:59 +00:00
|
|
|
int32_t j, len;
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *vstr = janet_to_string(args.v[i]);
|
|
|
|
len = janet_string_length(vstr);
|
2017-12-30 21:46:59 +00:00
|
|
|
for (j = 0; j < len; ++j) {
|
|
|
|
putc(vstr[j], stdout);
|
|
|
|
}
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
2017-12-30 21:46:59 +00:00
|
|
|
putc('\n', stdout);
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN_NIL(args);
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_describe(JanetArgs args) {
|
2018-01-04 02:36:10 +00:00
|
|
|
int32_t i;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBuffer b;
|
|
|
|
janet_buffer_init(&b, 0);
|
2018-01-14 17:10:45 +00:00
|
|
|
for (i = 0; i < args.n; ++i) {
|
2018-03-14 22:57:26 +00:00
|
|
|
int32_t len;
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *str = janet_description(args.v[i]);
|
|
|
|
len = janet_string_length(str);
|
|
|
|
janet_buffer_push_bytes(&b, str, len);
|
2018-01-04 02:36:10 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
*args.ret = janet_stringv(b.data, b.count);
|
|
|
|
janet_buffer_deinit(&b);
|
2018-01-04 02:36:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_string(JanetArgs args) {
|
2018-01-12 15:41:27 +00:00
|
|
|
int32_t i;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBuffer b;
|
|
|
|
janet_buffer_init(&b, 0);
|
2018-01-14 17:10:45 +00:00
|
|
|
for (i = 0; i < args.n; ++i) {
|
2018-01-12 15:41:27 +00:00
|
|
|
int32_t len;
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *str = janet_to_string(args.v[i]);
|
|
|
|
len = janet_string_length(str);
|
|
|
|
janet_buffer_push_bytes(&b, str, len);
|
2018-01-12 15:41:27 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
*args.ret = janet_stringv(b.data, b.count);
|
|
|
|
janet_buffer_deinit(&b);
|
2018-01-12 15:41:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_symbol(JanetArgs args) {
|
2018-01-21 22:08:11 +00:00
|
|
|
int32_t i;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBuffer b;
|
|
|
|
janet_buffer_init(&b, 0);
|
2018-01-21 22:08:11 +00:00
|
|
|
for (i = 0; i < args.n; ++i) {
|
|
|
|
int32_t len;
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *str = janet_to_string(args.v[i]);
|
|
|
|
len = janet_string_length(str);
|
|
|
|
janet_buffer_push_bytes(&b, str, len);
|
2018-01-21 22:08:11 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
*args.ret = janet_symbolv(b.data, b.count);
|
|
|
|
janet_buffer_deinit(&b);
|
2018-01-21 22:08:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_buffer(JanetArgs args) {
|
2018-01-31 22:39:18 +00:00
|
|
|
int32_t i;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBuffer *b = janet_buffer(0);
|
2018-01-31 22:39:18 +00:00
|
|
|
for (i = 0; i < args.n; ++i) {
|
|
|
|
int32_t len;
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *str = janet_to_string(args.v[i]);
|
|
|
|
len = janet_string_length(str);
|
|
|
|
janet_buffer_push_bytes(b, str, len);
|
2018-01-31 22:39:18 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN_BUFFER(args, b);
|
2018-01-16 01:14:21 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_scannumber(JanetArgs args) {
|
2018-05-01 15:06:31 +00:00
|
|
|
const uint8_t *data;
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet x;
|
2018-05-01 15:06:31 +00:00
|
|
|
int32_t len;
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_FIXARITY(args, 1);
|
|
|
|
JANET_ARG_BYTES(data, len, args, 0);
|
|
|
|
x = janet_scan_number(data, len);
|
|
|
|
if (janet_checktype(x, JANET_NIL)) {
|
|
|
|
JANET_THROW(args, "error parsing number");
|
2018-05-01 15:06:31 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN(args, x);
|
2018-05-01 15:06:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_scaninteger(JanetArgs args) {
|
2018-05-01 15:06:31 +00:00
|
|
|
const uint8_t *data;
|
|
|
|
int32_t len, ret;
|
|
|
|
int err = 0;
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_FIXARITY(args, 1);
|
|
|
|
JANET_ARG_BYTES(data, len, args, 0);
|
|
|
|
ret = janet_scan_integer(data, len, &err);
|
2018-05-01 15:06:31 +00:00
|
|
|
if (err) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_THROW(args, "error parsing integer");
|
2018-05-01 15:06:31 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN_INTEGER(args, ret);
|
2018-05-01 15:06:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_scanreal(JanetArgs args) {
|
2018-05-01 15:06:31 +00:00
|
|
|
const uint8_t *data;
|
|
|
|
int32_t len;
|
|
|
|
double ret;
|
|
|
|
int err = 0;
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_FIXARITY(args, 1);
|
|
|
|
JANET_ARG_BYTES(data, len, args, 0);
|
|
|
|
ret = janet_scan_real(data, len, &err);
|
2018-05-01 15:06:31 +00:00
|
|
|
if (err) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_THROW(args, "error parsing real");
|
2018-05-01 15:06:31 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN_REAL(args, ret);
|
2018-05-01 15:06:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_tuple(JanetArgs args) {
|
|
|
|
JANET_RETURN_TUPLE(args, janet_tuple_n(args.v, args.n));
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_array(JanetArgs args) {
|
|
|
|
JanetArray *array = janet_array(args.n);
|
2018-01-14 17:10:45 +00:00
|
|
|
array->count = args.n;
|
2018-09-06 02:18:42 +00:00
|
|
|
memcpy(array->data, args.v, args.n * sizeof(Janet));
|
|
|
|
JANET_RETURN_ARRAY(args, array);
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_table(JanetArgs args) {
|
2017-12-30 21:46:59 +00:00
|
|
|
int32_t i;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetTable *table = janet_table(args.n >> 1);
|
2018-05-20 01:16:00 +00:00
|
|
|
if (args.n & 1)
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_THROW(args, "expected even number of arguments");
|
2018-01-14 17:10:45 +00:00
|
|
|
for (i = 0; i < args.n; i += 2) {
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_table_put(table, args.v[i], args.v[i + 1]);
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN_TABLE(args, table);
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_struct(JanetArgs args) {
|
2017-12-30 21:46:59 +00:00
|
|
|
int32_t i;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetKV *st = janet_struct_begin(args.n >> 1);
|
2018-05-13 00:31:28 +00:00
|
|
|
if (args.n & 1)
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_THROW(args, "expected even number of arguments");
|
2018-01-14 17:10:45 +00:00
|
|
|
for (i = 0; i < args.n; i += 2) {
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_struct_put(st, args.v[i], args.v[i + 1]);
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN_STRUCT(args, janet_struct_end(st));
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_gensym(JanetArgs args) {
|
|
|
|
JANET_FIXARITY(args, 0);
|
|
|
|
JANET_RETURN_SYMBOL(args, janet_symbol_gen());
|
2018-01-05 21:17:55 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_gccollect(JanetArgs args) {
|
2018-01-16 01:14:21 +00:00
|
|
|
(void) args;
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_collect();
|
2017-12-30 21:46:59 +00:00
|
|
|
return 0;
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_gcsetinterval(JanetArgs args) {
|
2018-04-28 22:10:57 +00:00
|
|
|
int32_t val;
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_FIXARITY(args, 1);
|
|
|
|
JANET_ARG_INTEGER(val, args, 0);
|
2018-04-28 22:10:57 +00:00
|
|
|
if (val < 0)
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_THROW(args, "expected non-negative integer");
|
|
|
|
janet_vm_gc_interval = val;
|
|
|
|
JANET_RETURN_NIL(args);
|
2018-02-07 05:44:51 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_gcinterval(JanetArgs args) {
|
|
|
|
JANET_FIXARITY(args, 0);
|
|
|
|
JANET_RETURN_INTEGER(args, janet_vm_gc_interval);
|
2018-02-07 05:44:51 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_type(JanetArgs args) {
|
|
|
|
JANET_FIXARITY(args, 1);
|
|
|
|
JanetType t = janet_type(args.v[0]);
|
|
|
|
if (t == JANET_ABSTRACT) {
|
|
|
|
JANET_RETURN(args, janet_csymbolv(janet_abstract_type(janet_unwrap_abstract(args.v[0]))->name));
|
2018-01-16 01:14:21 +00:00
|
|
|
} else {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN(args, janet_csymbolv(janet_type_names[t]));
|
2017-12-21 04:03:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_next(JanetArgs args) {
|
|
|
|
Janet ds;
|
|
|
|
const JanetKV *kv;
|
|
|
|
JANET_FIXARITY(args, 2);
|
|
|
|
JANET_CHECKMANY(args, 0, JANET_TFLAG_DICTIONARY);
|
2018-01-17 14:58:32 +00:00
|
|
|
ds = args.v[0];
|
2018-09-06 02:18:42 +00:00
|
|
|
if (janet_checktype(ds, JANET_TABLE)) {
|
|
|
|
JanetTable *t = janet_unwrap_table(ds);
|
|
|
|
kv = janet_checktype(args.v[1], JANET_NIL)
|
2018-02-03 23:12:07 +00:00
|
|
|
? NULL
|
2018-09-06 02:18:42 +00:00
|
|
|
: janet_table_find(t, args.v[1]);
|
|
|
|
kv = janet_table_next(t, kv);
|
2018-04-28 22:10:57 +00:00
|
|
|
} else {
|
2018-09-06 02:18:42 +00:00
|
|
|
const JanetKV *st = janet_unwrap_struct(ds);
|
|
|
|
kv = janet_checktype(args.v[1], JANET_NIL)
|
2018-02-03 23:12:07 +00:00
|
|
|
? NULL
|
2018-09-06 02:18:42 +00:00
|
|
|
: janet_struct_find(st, args.v[1]);
|
|
|
|
kv = janet_struct_next(st, kv);
|
2018-01-17 14:58:32 +00:00
|
|
|
}
|
2018-07-09 00:54:41 +00:00
|
|
|
if (kv)
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN(args, kv->key);
|
|
|
|
JANET_RETURN_NIL(args);
|
2018-01-17 14:58:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int janet_core_hash(JanetArgs args) {
|
|
|
|
JANET_FIXARITY(args, 1);
|
|
|
|
JANET_RETURN_INTEGER(args, janet_hash(args.v[0]));
|
2018-01-17 14:58:32 +00:00
|
|
|
}
|
2018-07-04 03:07:35 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static const JanetReg cfuns[] = {
|
2018-11-15 20:45:41 +00:00
|
|
|
{"native", janet_core_native, NULL},
|
|
|
|
{"print", janet_core_print, NULL},
|
|
|
|
{"describe", janet_core_describe, NULL},
|
|
|
|
{"string", janet_core_string, NULL},
|
|
|
|
{"symbol", janet_core_symbol, NULL},
|
|
|
|
{"buffer", janet_core_buffer, NULL},
|
|
|
|
{"table", janet_core_table, NULL},
|
|
|
|
{"array", janet_core_array, NULL},
|
|
|
|
{"scan-number", janet_core_scannumber, NULL},
|
|
|
|
{"scan-integer", janet_core_scaninteger, NULL},
|
|
|
|
{"scan-real", janet_core_scanreal, NULL},
|
|
|
|
{"tuple", janet_core_tuple, NULL},
|
|
|
|
{"struct", janet_core_struct, NULL},
|
|
|
|
{"buffer", janet_core_buffer, NULL},
|
|
|
|
{"gensym", janet_core_gensym, NULL},
|
|
|
|
{"gccollect", janet_core_gccollect, NULL},
|
|
|
|
{"gcsetinterval", janet_core_gcsetinterval, NULL},
|
|
|
|
{"gcinterval", janet_core_gcinterval, NULL},
|
|
|
|
{"type", janet_core_type, NULL},
|
|
|
|
{"next", janet_core_next, NULL},
|
|
|
|
{"hash", janet_core_hash, NULL},
|
|
|
|
{NULL, NULL, NULL}
|
2018-07-04 03:07:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Utility for inline assembly */
|
2018-09-06 02:18:42 +00:00
|
|
|
static void janet_quick_asm(
|
|
|
|
JanetTable *env,
|
2018-07-04 03:07:35 +00:00
|
|
|
int32_t flags,
|
|
|
|
const char *name,
|
|
|
|
int32_t arity,
|
|
|
|
int32_t slots,
|
|
|
|
const uint32_t *bytecode,
|
|
|
|
size_t bytecode_size) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncDef *def = janet_funcdef_alloc();
|
2018-07-04 03:07:35 +00:00
|
|
|
def->arity = arity;
|
|
|
|
def->flags = flags;
|
|
|
|
def->slotcount = slots;
|
|
|
|
def->bytecode = malloc(bytecode_size);
|
2018-08-06 01:32:32 +00:00
|
|
|
def->bytecode_length = (int32_t)(bytecode_size / sizeof(uint32_t));
|
2018-09-06 02:18:42 +00:00
|
|
|
def->name = janet_cstring(name);
|
2018-07-04 03:07:35 +00:00
|
|
|
if (!def->bytecode) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-07-04 03:07:35 +00:00
|
|
|
}
|
|
|
|
memcpy(def->bytecode, bytecode, bytecode_size);
|
2018-11-15 20:45:41 +00:00
|
|
|
janet_def(env, name, janet_wrap_function(janet_thunk(def)), NULL);
|
2018-07-04 03:07:35 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Macros for easier inline janet assembly */
|
2018-07-09 03:10:02 +00:00
|
|
|
#define SSS(op, a, b, c) ((op) | ((a) << 8) | ((b) << 16) | ((c) << 24))
|
|
|
|
#define SS(op, a, b) ((op) | ((a) << 8) | ((b) << 16))
|
|
|
|
#define SSI(op, a, b, I) ((op) | ((a) << 8) | ((b) << 16) | ((uint32_t)(I) << 24))
|
|
|
|
#define S(op, a) ((op) | ((a) << 8))
|
|
|
|
#define SI(op, a, I) ((op) | ((a) << 8) | ((uint32_t)(I) << 16))
|
2018-07-04 03:07:35 +00:00
|
|
|
|
|
|
|
/* Templatize a varop */
|
|
|
|
static void templatize_varop(
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetTable *env,
|
2018-07-04 03:07:35 +00:00
|
|
|
int32_t flags,
|
|
|
|
const char *name,
|
|
|
|
int32_t nullary,
|
|
|
|
int32_t unary,
|
|
|
|
uint32_t op) {
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Variadic operator assembly. Must be templatized for each different opcode. */
|
|
|
|
/* Reg 0: Argument tuple (args) */
|
|
|
|
/* Reg 1: Argument count (argn) */
|
|
|
|
/* Reg 2: Jump flag (jump?) */
|
|
|
|
/* Reg 3: Accumulator (accum) */
|
|
|
|
/* Reg 4: Next operand (operand) */
|
|
|
|
/* Reg 5: Loop iterator (i) */
|
|
|
|
uint32_t varop_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
SS(JOP_LENGTH, 1, 0), /* Put number of arguments in register 1 -> argn = count(args) */
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Check nullary */
|
2018-09-06 02:18:42 +00:00
|
|
|
SSS(JOP_EQUALS_IMMEDIATE, 2, 1, 0), /* Check if numargs equal to 0 */
|
|
|
|
SI(JOP_JUMP_IF_NOT, 2, 3), /* If not 0, jump to next check */
|
2018-07-09 03:10:02 +00:00
|
|
|
/* Nullary */
|
2018-09-06 02:18:42 +00:00
|
|
|
SI(JOP_LOAD_INTEGER, 3, nullary), /* accum = nullary value */
|
|
|
|
S(JOP_RETURN, 3), /* return accum */
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Check unary */
|
2018-09-06 02:18:42 +00:00
|
|
|
SSI(JOP_EQUALS_IMMEDIATE, 2, 1, 1), /* Check if numargs equal to 1 */
|
|
|
|
SI(JOP_JUMP_IF_NOT, 2, 5), /* If not 1, jump to next check */
|
2018-07-09 03:10:02 +00:00
|
|
|
/* Unary */
|
2018-09-06 02:18:42 +00:00
|
|
|
SI(JOP_LOAD_INTEGER, 3, unary), /* accum = unary value */
|
|
|
|
SSI(JOP_GET_INDEX, 4, 0, 0), /* operand = args[0] */
|
2018-07-09 03:10:02 +00:00
|
|
|
SSS(op, 3, 3, 4), /* accum = accum op operand */
|
2018-09-06 02:18:42 +00:00
|
|
|
S(JOP_RETURN, 3), /* return accum */
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Mutli (2 or more) arity */
|
|
|
|
/* Prime loop */
|
2018-09-06 02:18:42 +00:00
|
|
|
SSI(JOP_GET_INDEX, 3, 0, 0), /* accum = args[0] */
|
|
|
|
SI(JOP_LOAD_INTEGER, 5, 1), /* i = 1 */
|
2018-07-09 03:10:02 +00:00
|
|
|
/* Main loop */
|
2018-09-06 02:18:42 +00:00
|
|
|
SSS(JOP_GET, 4, 0, 5), /* operand = args[i] */
|
2018-07-09 03:10:02 +00:00
|
|
|
SSS(op, 3, 3, 4), /* accum = accum op operand */
|
2018-09-06 02:18:42 +00:00
|
|
|
SSI(JOP_ADD_IMMEDIATE, 5, 5, 1), /* i++ */
|
|
|
|
SSI(JOP_EQUALS_INTEGER, 2, 5, 1), /* jump? = (i == argn) */
|
|
|
|
SI(JOP_JUMP_IF_NOT, 2, -4), /* if not jump? go back 4 */
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Done, do last and return accumulator */
|
2018-09-06 02:18:42 +00:00
|
|
|
S(JOP_RETURN, 3) /* return accum */
|
2018-07-09 03:10:02 +00:00
|
|
|
};
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_quick_asm(
|
2018-07-04 03:07:35 +00:00
|
|
|
env,
|
2018-09-06 02:18:42 +00:00
|
|
|
flags | JANET_FUNCDEF_FLAG_VARARG,
|
2018-07-04 03:07:35 +00:00
|
|
|
name,
|
|
|
|
0,
|
|
|
|
6,
|
|
|
|
varop_asm,
|
|
|
|
sizeof(varop_asm));
|
|
|
|
}
|
|
|
|
|
2018-07-09 03:10:02 +00:00
|
|
|
/* Templatize variadic comparators */
|
|
|
|
static void templatize_comparator(
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetTable *env,
|
2018-07-09 03:10:02 +00:00
|
|
|
int32_t flags,
|
|
|
|
const char *name,
|
|
|
|
int invert,
|
|
|
|
uint32_t op) {
|
|
|
|
|
|
|
|
/* Reg 0: Argument tuple (args) */
|
|
|
|
/* Reg 1: Argument count (argn) */
|
|
|
|
/* Reg 2: Jump flag (jump?) */
|
|
|
|
/* Reg 3: Last value (last) */
|
|
|
|
/* Reg 4: Next operand (next) */
|
|
|
|
/* Reg 5: Loop iterator (i) */
|
|
|
|
uint32_t comparator_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
SS(JOP_LENGTH, 1, 0), /* Put number of arguments in register 1 -> argn = count(args) */
|
|
|
|
SSS(JOP_LESS_THAN_IMMEDIATE, 2, 1, 2), /* Check if numargs less than 2 */
|
|
|
|
SI(JOP_JUMP_IF, 2, 10), /* If numargs < 2, jump to done */
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Prime loop */
|
2018-09-06 02:18:42 +00:00
|
|
|
SSI(JOP_GET_INDEX, 3, 0, 0), /* last = args[0] */
|
|
|
|
SI(JOP_LOAD_INTEGER, 5, 1), /* i = 1 */
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Main loop */
|
2018-09-06 02:18:42 +00:00
|
|
|
SSS(JOP_GET, 4, 0, 5), /* next = args[i] */
|
2018-07-09 03:10:02 +00:00
|
|
|
SSS(op, 2, 3, 4), /* jump? = last compare next */
|
2018-09-06 02:18:42 +00:00
|
|
|
SI(JOP_JUMP_IF_NOT, 2, 7), /* if not jump? goto fail (return false) */
|
|
|
|
SSI(JOP_ADD_IMMEDIATE, 5, 5, 1), /* i++ */
|
|
|
|
SS(JOP_MOVE_NEAR, 3, 4), /* last = next */
|
|
|
|
SSI(JOP_EQUALS_INTEGER, 2, 5, 1), /* jump? = (i == argn) */
|
|
|
|
SI(JOP_JUMP_IF_NOT, 2, -6), /* if not jump? go back 6 */
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Done, return true */
|
2018-09-06 02:18:42 +00:00
|
|
|
S(invert ? JOP_LOAD_FALSE : JOP_LOAD_TRUE, 3),
|
|
|
|
S(JOP_RETURN, 3),
|
2018-07-09 03:10:02 +00:00
|
|
|
|
|
|
|
/* Failed, return false */
|
2018-09-06 02:18:42 +00:00
|
|
|
S(invert ? JOP_LOAD_TRUE : JOP_LOAD_FALSE, 3),
|
|
|
|
S(JOP_RETURN, 3)
|
2018-07-09 03:10:02 +00:00
|
|
|
};
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_quick_asm(
|
2018-07-09 03:10:02 +00:00
|
|
|
env,
|
2018-09-06 02:18:42 +00:00
|
|
|
flags | JANET_FUNCDEF_FLAG_VARARG,
|
2018-07-09 03:10:02 +00:00
|
|
|
name,
|
|
|
|
0,
|
|
|
|
6,
|
|
|
|
comparator_asm,
|
|
|
|
sizeof(comparator_asm));
|
|
|
|
}
|
|
|
|
|
2018-08-26 16:53:39 +00:00
|
|
|
/* Make the apply function */
|
2018-09-06 02:18:42 +00:00
|
|
|
static void make_apply(JanetTable *env) {
|
2018-08-26 16:53:39 +00:00
|
|
|
/* Reg 0: Function (fun) */
|
|
|
|
/* Reg 1: Argument tuple (args) */
|
|
|
|
/* Reg 2: Argument count (argn) */
|
|
|
|
/* Reg 3: Jump flag (jump?) */
|
|
|
|
/* Reg 4: Loop iterator (i) */
|
|
|
|
/* Reg 5: Loop values (x) */
|
|
|
|
uint32_t apply_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
SS(JOP_LENGTH, 2, 1),
|
|
|
|
SSS(JOP_EQUALS_IMMEDIATE, 3, 2, 0), /* Immediate tail call if no args */
|
|
|
|
SI(JOP_JUMP_IF, 3, 9),
|
2018-08-26 16:53:39 +00:00
|
|
|
|
|
|
|
/* Prime loop */
|
2018-09-06 02:18:42 +00:00
|
|
|
SI(JOP_LOAD_INTEGER, 4, 0), /* i = 0 */
|
2018-08-26 16:53:39 +00:00
|
|
|
|
|
|
|
/* Main loop */
|
2018-09-06 02:18:42 +00:00
|
|
|
SSS(JOP_GET, 5, 1, 4), /* x = args[i] */
|
|
|
|
SSI(JOP_ADD_IMMEDIATE, 4, 4, 1), /* i++ */
|
|
|
|
SSI(JOP_EQUALS_INTEGER, 3, 4, 2), /* jump? = (i == argn) */
|
|
|
|
SI(JOP_JUMP_IF, 3, 3), /* if jump? go forward 3 */
|
|
|
|
S(JOP_PUSH, 5),
|
|
|
|
(JOP_JUMP | ((uint32_t)(-5) << 8)),
|
2018-08-26 16:53:39 +00:00
|
|
|
|
|
|
|
/* Push the array */
|
2018-09-06 02:18:42 +00:00
|
|
|
S(JOP_PUSH_ARRAY, 5),
|
2018-08-26 16:53:39 +00:00
|
|
|
|
|
|
|
/* Call the funciton */
|
2018-09-06 02:18:42 +00:00
|
|
|
S(JOP_TAILCALL, 0)
|
2018-08-26 16:53:39 +00:00
|
|
|
};
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_quick_asm(env, JANET_FUN_APPLY | JANET_FUNCDEF_FLAG_VARARG,
|
2018-08-26 16:53:39 +00:00
|
|
|
"apply", 1, 6, apply_asm, sizeof(apply_asm));
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetTable *janet_core_env(void) {
|
2018-07-09 03:10:02 +00:00
|
|
|
static const uint32_t error_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_ERROR
|
2018-07-04 03:07:35 +00:00
|
|
|
};
|
2018-07-09 03:10:02 +00:00
|
|
|
static const uint32_t debug_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_SIGNAL | (2 << 24),
|
|
|
|
JOP_RETURN_NIL
|
2018-07-04 03:07:35 +00:00
|
|
|
};
|
2018-07-09 03:10:02 +00:00
|
|
|
static const uint32_t yield_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_SIGNAL | (3 << 24),
|
|
|
|
JOP_RETURN
|
2018-07-04 03:07:35 +00:00
|
|
|
};
|
2018-07-09 03:10:02 +00:00
|
|
|
static const uint32_t resume_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_RESUME | (1 << 24),
|
|
|
|
JOP_RETURN
|
2018-07-04 03:07:35 +00:00
|
|
|
};
|
2018-07-09 03:10:02 +00:00
|
|
|
static const uint32_t get_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_GET | (1 << 24),
|
|
|
|
JOP_RETURN
|
2018-07-04 03:07:35 +00:00
|
|
|
};
|
2018-07-09 03:10:02 +00:00
|
|
|
static const uint32_t put_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_PUT | (1 << 16) | (2 << 24),
|
|
|
|
JOP_RETURN
|
2018-07-04 03:07:35 +00:00
|
|
|
};
|
2018-07-09 03:10:02 +00:00
|
|
|
static const uint32_t length_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_LENGTH,
|
|
|
|
JOP_RETURN
|
2018-07-04 03:07:35 +00:00
|
|
|
};
|
2018-07-09 03:10:02 +00:00
|
|
|
static const uint32_t bnot_asm[] = {
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_BNOT,
|
|
|
|
JOP_RETURN
|
2018-07-09 03:10:02 +00:00
|
|
|
};
|
2018-07-04 03:07:35 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetTable *env = janet_table(0);
|
|
|
|
Janet ret = janet_wrap_table(env);
|
2018-07-04 03:07:35 +00:00
|
|
|
|
|
|
|
/* Load main functions */
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_cfuns(env, NULL, cfuns);
|
|
|
|
|
|
|
|
janet_quick_asm(env, JANET_FUN_YIELD, "debug", 0, 1, debug_asm, sizeof(debug_asm));
|
|
|
|
janet_quick_asm(env, JANET_FUN_ERROR, "error", 1, 1, error_asm, sizeof(error_asm));
|
|
|
|
janet_quick_asm(env, JANET_FUN_YIELD, "yield", 1, 2, yield_asm, sizeof(yield_asm));
|
|
|
|
janet_quick_asm(env, JANET_FUN_RESUME, "resume", 2, 2, resume_asm, sizeof(resume_asm));
|
|
|
|
janet_quick_asm(env, JANET_FUN_GET, "get", 2, 2, get_asm, sizeof(get_asm));
|
|
|
|
janet_quick_asm(env, JANET_FUN_PUT, "put", 3, 3, put_asm, sizeof(put_asm));
|
|
|
|
janet_quick_asm(env, JANET_FUN_LENGTH, "length", 1, 1, length_asm, sizeof(length_asm));
|
|
|
|
janet_quick_asm(env, JANET_FUN_BNOT, "~", 1, 1, bnot_asm, sizeof(bnot_asm));
|
2018-08-26 16:53:39 +00:00
|
|
|
make_apply(env);
|
2018-07-04 03:07:35 +00:00
|
|
|
|
|
|
|
/* Variadic ops */
|
2018-09-06 02:18:42 +00:00
|
|
|
templatize_varop(env, JANET_FUN_ADD, "+", 0, 0, JOP_ADD);
|
|
|
|
templatize_varop(env, JANET_FUN_SUBTRACT, "-", 0, 0, JOP_SUBTRACT);
|
|
|
|
templatize_varop(env, JANET_FUN_MULTIPLY, "*", 1, 1, JOP_MULTIPLY);
|
|
|
|
templatize_varop(env, JANET_FUN_DIVIDE, "/", 1, 1, JOP_DIVIDE);
|
|
|
|
templatize_varop(env, JANET_FUN_BAND, "&", -1, -1, JOP_BAND);
|
|
|
|
templatize_varop(env, JANET_FUN_BOR, "|", 0, 0, JOP_BOR);
|
|
|
|
templatize_varop(env, JANET_FUN_BXOR, "^", 0, 0, JOP_BXOR);
|
|
|
|
templatize_varop(env, JANET_FUN_LSHIFT, "<<", 1, 1, JOP_SHIFT_LEFT);
|
|
|
|
templatize_varop(env, JANET_FUN_RSHIFT, ">>", 1, 1, JOP_SHIFT_RIGHT);
|
|
|
|
templatize_varop(env, JANET_FUN_RSHIFTU, ">>>", 1, 1, JOP_SHIFT_RIGHT_UNSIGNED);
|
2018-07-04 03:07:35 +00:00
|
|
|
|
2018-07-09 03:10:02 +00:00
|
|
|
/* Variadic comparators */
|
2018-09-06 02:18:42 +00:00
|
|
|
templatize_comparator(env, JANET_FUN_ORDER_GT, "order>", 0, JOP_GREATER_THAN);
|
|
|
|
templatize_comparator(env, JANET_FUN_ORDER_LT, "order<", 0, JOP_LESS_THAN);
|
|
|
|
templatize_comparator(env, JANET_FUN_ORDER_GTE, "order>=", 1, JOP_LESS_THAN);
|
|
|
|
templatize_comparator(env, JANET_FUN_ORDER_LTE, "order<=", 1, JOP_GREATER_THAN);
|
|
|
|
templatize_comparator(env, JANET_FUN_ORDER_EQ, "=", 0, JOP_EQUALS);
|
|
|
|
templatize_comparator(env, JANET_FUN_ORDER_NEQ, "not=", 1, JOP_EQUALS);
|
|
|
|
templatize_comparator(env, JANET_FUN_GT, ">", 0, JOP_NUMERIC_GREATER_THAN);
|
|
|
|
templatize_comparator(env, JANET_FUN_LT, "<", 0, JOP_NUMERIC_LESS_THAN);
|
|
|
|
templatize_comparator(env, JANET_FUN_GTE, ">=", 0, JOP_NUMERIC_GREATER_THAN_EQUAL);
|
|
|
|
templatize_comparator(env, JANET_FUN_LTE, "<=", 0, JOP_NUMERIC_LESS_THAN_EQUAL);
|
|
|
|
templatize_comparator(env, JANET_FUN_EQ, "==", 0, JOP_NUMERIC_EQUAL);
|
|
|
|
templatize_comparator(env, JANET_FUN_NEQ, "not==", 1, JOP_NUMERIC_EQUAL);
|
2018-07-09 03:10:02 +00:00
|
|
|
|
2018-08-07 04:54:47 +00:00
|
|
|
/* Platform detection */
|
2018-11-15 20:45:41 +00:00
|
|
|
janet_def(env, "janet.version", janet_cstringv(JANET_VERSION), NULL);
|
2018-07-04 03:07:35 +00:00
|
|
|
|
|
|
|
/* Set as gc root */
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_gcroot(janet_wrap_table(env));
|
2018-07-04 03:07:35 +00:00
|
|
|
|
|
|
|
/* Load auxiliary envs */
|
|
|
|
{
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetArgs args;
|
2018-07-04 03:07:35 +00:00
|
|
|
args.n = 1;
|
|
|
|
args.v = &ret;
|
|
|
|
args.ret = &ret;
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_lib_io(args);
|
|
|
|
janet_lib_math(args);
|
|
|
|
janet_lib_array(args);
|
|
|
|
janet_lib_tuple(args);
|
|
|
|
janet_lib_buffer(args);
|
|
|
|
janet_lib_table(args);
|
|
|
|
janet_lib_fiber(args);
|
|
|
|
janet_lib_os(args);
|
|
|
|
janet_lib_parse(args);
|
|
|
|
janet_lib_compile(args);
|
|
|
|
janet_lib_string(args);
|
|
|
|
janet_lib_marsh(args);
|
2018-09-29 14:58:57 +00:00
|
|
|
#ifdef JANET_ASSEMBLER
|
|
|
|
janet_lib_asm(args);
|
|
|
|
#endif
|
2018-07-04 03:07:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Allow references to the environment */
|
2018-11-15 20:45:41 +00:00
|
|
|
janet_def(env, "_env", ret, NULL);
|
2018-07-04 03:07:35 +00:00
|
|
|
|
|
|
|
/* Run bootstrap source */
|
2018-10-17 03:08:26 +00:00
|
|
|
janet_dobytes(env, janet_gen_core, sizeof(janet_gen_core), "core.janet", NULL);
|
2018-07-04 03:07:35 +00:00
|
|
|
|
|
|
|
return env;
|
|
|
|
}
|