2014-01-17 06:58:31 -05:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2012-2013 Yuichi Nishiwaki and other picrin contributors.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-10-10 03:15:41 -04:00
|
|
|
#ifndef PICRIN_H__
|
|
|
|
#define PICRIN_H__
|
|
|
|
|
2014-01-17 22:41:39 -05:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-10-10 04:54:35 -04:00
|
|
|
#include <stddef.h>
|
2013-10-11 04:36:51 -04:00
|
|
|
#include <stdbool.h>
|
2013-10-20 05:17:12 -04:00
|
|
|
#include <setjmp.h>
|
2013-10-27 05:38:41 -04:00
|
|
|
#include <stdio.h>
|
2014-02-27 08:17:18 -05:00
|
|
|
#include <stdint.h>
|
2014-02-11 09:25:25 -05:00
|
|
|
#include <assert.h>
|
2013-10-10 04:54:35 -04:00
|
|
|
|
2014-02-06 11:24:51 -05:00
|
|
|
#include "xhash/xhash.h"
|
2014-02-09 00:52:53 -05:00
|
|
|
#include "xfile/xfile.h"
|
2014-02-27 07:54:37 -05:00
|
|
|
#include "xrope/xrope.h"
|
2014-02-06 11:24:51 -05:00
|
|
|
|
2014-01-30 00:08:36 -05:00
|
|
|
#if __STDC_VERSION__ >= 201112L
|
|
|
|
# define NORETURN _Noreturn
|
|
|
|
#elif __GNUC__ || __clang__
|
|
|
|
# define NORETURN __attribute__((noreturn))
|
|
|
|
#endif
|
|
|
|
|
2014-01-30 00:13:01 -05:00
|
|
|
#define FALLTHROUGH ((void)0)
|
2014-01-30 04:11:41 -05:00
|
|
|
#define UNUSED(v) ((void)(v))
|
2014-01-30 00:13:01 -05:00
|
|
|
|
2014-02-01 01:40:43 -05:00
|
|
|
#define GENSYM2__(x,y) x##y
|
|
|
|
#define GENSYM1__(x,y) GENSYM2__(x,y)
|
|
|
|
#if defined(__COUNTER__)
|
|
|
|
# define GENSYM(x) GENSYM1__(x,__COUNTER__)
|
|
|
|
#else
|
|
|
|
# define GENSYM(x) GENSYM1__(x,__LINE__)
|
|
|
|
#endif
|
|
|
|
|
2013-11-15 02:48:02 -05:00
|
|
|
#include "config.h"
|
2013-10-10 03:34:24 -04:00
|
|
|
#include "picrin/value.h"
|
|
|
|
|
2013-10-16 02:30:52 -04:00
|
|
|
struct pic_code;
|
|
|
|
|
2013-11-04 16:07:36 -05:00
|
|
|
typedef struct {
|
2014-02-20 02:33:18 -05:00
|
|
|
int argc, retc;
|
2014-02-03 20:46:36 -05:00
|
|
|
struct pic_code *ip;
|
2013-10-23 02:55:42 -04:00
|
|
|
pic_value *fp;
|
2013-10-28 21:16:56 -04:00
|
|
|
struct pic_env *env;
|
2013-10-15 10:29:34 -04:00
|
|
|
} pic_callinfo;
|
|
|
|
|
2013-11-11 04:04:21 -05:00
|
|
|
struct pic_block {
|
|
|
|
struct pic_block *prev;
|
|
|
|
int depth;
|
|
|
|
struct pic_proc *in, *out;
|
2013-11-14 21:51:58 -05:00
|
|
|
unsigned refcnt;
|
2013-11-11 04:04:21 -05:00
|
|
|
};
|
|
|
|
|
2013-10-10 03:15:41 -04:00
|
|
|
typedef struct {
|
2013-10-20 22:51:02 -04:00
|
|
|
int argc;
|
|
|
|
char **argv, **envp;
|
|
|
|
|
2013-11-11 04:04:21 -05:00
|
|
|
struct pic_block *blk;
|
|
|
|
|
2013-10-11 11:16:19 -04:00
|
|
|
pic_value *sp;
|
2013-10-11 11:20:53 -04:00
|
|
|
pic_value *stbase, *stend;
|
|
|
|
|
2013-10-15 10:29:34 -04:00
|
|
|
pic_callinfo *ci;
|
|
|
|
pic_callinfo *cibase, *ciend;
|
|
|
|
|
2014-02-03 20:40:03 -05:00
|
|
|
struct pic_code *ip;
|
|
|
|
|
2013-11-17 02:02:58 -05:00
|
|
|
struct pic_proc **rescue;
|
|
|
|
size_t ridx, rlen;
|
|
|
|
|
2013-10-28 13:11:31 -04:00
|
|
|
pic_sym sDEFINE, sLAMBDA, sIF, sBEGIN, sQUOTE, sSETBANG;
|
|
|
|
pic_sym sQUASIQUOTE, sUNQUOTE, sUNQUOTE_SPLICING;
|
2013-10-30 03:37:43 -04:00
|
|
|
pic_sym sDEFINE_SYNTAX, sDEFINE_MACRO;
|
2013-12-07 05:31:04 -05:00
|
|
|
pic_sym sDEFINE_LIBRARY, sIMPORT, sEXPORT;
|
2014-01-18 14:47:32 -05:00
|
|
|
pic_sym sCONS, sCAR, sCDR, sNILP;
|
2014-01-18 23:20:28 -05:00
|
|
|
pic_sym sADD, sSUB, sMUL, sDIV, sMINUS;
|
2014-02-02 00:55:46 -05:00
|
|
|
pic_sym sEQ, sLT, sLE, sGT, sGE, sNOT;
|
2013-10-13 02:14:15 -04:00
|
|
|
|
2014-02-12 10:14:03 -05:00
|
|
|
xhash *syms; /* name to symbol */
|
|
|
|
xhash *sym_names; /* symbol to name */
|
|
|
|
int sym_cnt;
|
|
|
|
int uniq_sym_cnt;
|
2013-10-20 01:05:35 -04:00
|
|
|
|
2014-02-06 11:15:17 -05:00
|
|
|
xhash *global_tbl;
|
2013-10-17 11:15:15 -04:00
|
|
|
pic_value *globals;
|
|
|
|
size_t glen, gcapa;
|
2013-10-22 09:22:35 -04:00
|
|
|
|
2014-02-11 20:39:20 -05:00
|
|
|
xhash *macros;
|
|
|
|
|
2013-12-07 08:36:14 -05:00
|
|
|
pic_value lib_tbl;
|
|
|
|
struct pic_lib *lib;
|
2013-11-26 11:30:30 -05:00
|
|
|
|
2013-10-20 05:17:12 -04:00
|
|
|
jmp_buf *jmp;
|
2014-02-10 23:21:00 -05:00
|
|
|
struct pic_error *err;
|
2013-10-20 05:17:12 -04:00
|
|
|
|
2013-11-22 10:19:31 -05:00
|
|
|
struct pic_heap *heap;
|
2013-10-13 04:02:29 -04:00
|
|
|
struct pic_object *arena[PIC_ARENA_SIZE];
|
|
|
|
int arena_idx;
|
2013-11-09 00:14:25 -05:00
|
|
|
|
|
|
|
pic_value *native_stack_start;
|
2013-10-10 03:15:41 -04:00
|
|
|
} pic_state;
|
|
|
|
|
2013-10-15 06:19:34 -04:00
|
|
|
typedef pic_value (*pic_func_t)(pic_state *);
|
|
|
|
|
2014-02-26 23:55:19 -05:00
|
|
|
void *pic_malloc(pic_state *, size_t);
|
|
|
|
#define pic_alloc(pic,size) pic_malloc(pic,size) /* obsoleted */
|
2013-10-15 22:21:41 -04:00
|
|
|
void *pic_realloc(pic_state *, void *, size_t);
|
2013-11-30 22:44:43 -05:00
|
|
|
void *pic_calloc(pic_state *, size_t, size_t);
|
2013-10-13 03:55:07 -04:00
|
|
|
struct pic_object *pic_obj_alloc(pic_state *, size_t, enum pic_tt);
|
2013-11-15 05:30:53 -05:00
|
|
|
struct pic_object *pic_obj_alloc_unsafe(pic_state *, size_t, enum pic_tt);
|
2013-10-10 03:44:51 -04:00
|
|
|
void pic_free(pic_state *, void *);
|
|
|
|
|
2014-01-16 08:02:09 -05:00
|
|
|
void pic_gc_run(pic_state *);
|
2013-10-13 04:25:36 -04:00
|
|
|
void pic_gc_protect(pic_state *, pic_value);
|
|
|
|
int pic_gc_arena_preserve(pic_state *);
|
|
|
|
void pic_gc_arena_restore(pic_state *, int);
|
|
|
|
|
2013-10-20 22:51:02 -04:00
|
|
|
pic_state *pic_open(int argc, char *argv[], char **envp);
|
2013-10-10 03:19:10 -04:00
|
|
|
void pic_close(pic_state *);
|
2013-10-10 03:15:41 -04:00
|
|
|
|
2014-01-12 10:45:49 -05:00
|
|
|
void pic_define(pic_state *, const char *, pic_value); /* symbol is automatically exported */
|
|
|
|
pic_value pic_ref(pic_state *, const char *);
|
|
|
|
void pic_set(pic_state *, const char *, pic_value);
|
2014-01-12 02:06:57 -05:00
|
|
|
|
2013-11-09 00:12:59 -05:00
|
|
|
struct pic_proc *pic_get_proc(pic_state *);
|
2013-10-21 00:57:02 -04:00
|
|
|
int pic_get_args(pic_state *, const char *, ...);
|
2013-10-15 06:19:34 -04:00
|
|
|
void pic_defun(pic_state *, const char *, pic_func_t);
|
2013-11-26 12:09:15 -05:00
|
|
|
void pic_defmacro(pic_state *, const char *, struct pic_proc *);
|
2014-01-08 10:36:44 -05:00
|
|
|
void pic_defvar(pic_state *, const char *, pic_value);
|
2013-10-15 06:19:34 -04:00
|
|
|
|
2013-12-07 09:29:29 -05:00
|
|
|
bool pic_equal_p(pic_state *, pic_value, pic_value);
|
|
|
|
|
2014-02-28 10:13:11 -05:00
|
|
|
pic_sym pic_intern(pic_state *, const char *, size_t);
|
2013-10-28 13:11:31 -04:00
|
|
|
pic_sym pic_intern_cstr(pic_state *, const char *);
|
|
|
|
const char *pic_symbol_name(pic_state *, pic_sym);
|
2014-01-12 02:03:36 -05:00
|
|
|
pic_sym pic_gensym(pic_state *, pic_sym);
|
|
|
|
bool pic_interned_p(pic_state *, pic_sym);
|
2013-10-10 04:06:26 -04:00
|
|
|
|
2014-02-06 00:23:29 -05:00
|
|
|
char *pic_strdup(pic_state *, const char *);
|
|
|
|
char *pic_strndup(pic_state *, const char *, size_t);
|
2013-10-29 02:51:37 -04:00
|
|
|
|
2014-03-01 06:21:44 -05:00
|
|
|
pic_value pic_read(pic_state *, const char *);
|
2014-03-01 06:54:02 -05:00
|
|
|
pic_list pic_read_file(pic_state *, FILE *); /* When input string is incomplete, returns undef. */
|
|
|
|
pic_list pic_read_cstr(pic_state *, const char *);
|
2013-10-11 02:18:37 -04:00
|
|
|
|
2014-01-13 00:51:52 -05:00
|
|
|
pic_value pic_load(pic_state *, const char *);
|
|
|
|
|
2014-02-06 00:23:29 -05:00
|
|
|
pic_value pic_apply(pic_state *, struct pic_proc *, pic_value);
|
|
|
|
pic_value pic_apply_argv(pic_state *, struct pic_proc *, size_t, ...);
|
2014-02-06 00:22:29 -05:00
|
|
|
pic_value pic_trampoline(pic_state *, struct pic_proc *, pic_value);
|
2014-01-20 02:57:39 -05:00
|
|
|
struct pic_proc *pic_compile(pic_state *, pic_value);
|
2013-11-18 02:36:44 -05:00
|
|
|
pic_value pic_macroexpand(pic_state *, pic_value);
|
2013-10-11 04:36:51 -04:00
|
|
|
|
2013-12-07 21:27:08 -05:00
|
|
|
void pic_in_library(pic_state *, pic_value);
|
2013-12-07 21:44:14 -05:00
|
|
|
struct pic_lib *pic_make_library(pic_state *, pic_value);
|
2013-12-07 12:42:34 -05:00
|
|
|
struct pic_lib *pic_find_library(pic_state *, pic_value);
|
2013-12-07 10:05:06 -05:00
|
|
|
|
2014-02-01 01:41:30 -05:00
|
|
|
#define PIC_DEFLIBRARY_HELPER2(tmp1, tmp2, tmp3, spec) \
|
|
|
|
for (struct pic_lib *tmp1 = pic->lib, \
|
2014-03-01 06:21:44 -05:00
|
|
|
*tmp2 = (pic_make_library(pic, pic_read(pic, spec)), \
|
|
|
|
pic_in_library(pic, pic_read(pic, spec)), \
|
2014-02-01 01:41:30 -05:00
|
|
|
NULL); \
|
|
|
|
tmp3 < 1; \
|
|
|
|
(pic->lib = tmp1), ((void)tmp2), ++tmp3)
|
|
|
|
|
|
|
|
#define PIC_DEFLIBRARY_HELPER1(tmp1, tmp2, spec) \
|
|
|
|
for (int tmp1 = 0, tmp2 = 0; tmp1 < 1; ++tmp1) \
|
|
|
|
PIC_DEFLIBRARY_HELPER2(GENSYM(pic_deflib_tmp3__), \
|
|
|
|
GENSYM(pic_deflib_tmp4__), \
|
|
|
|
tmp2, spec)
|
|
|
|
|
|
|
|
#define pic_deflibrary(spec) \
|
|
|
|
PIC_DEFLIBRARY_HELPER1(GENSYM(pic_deflib_tmp1__), GENSYM(pic_deflib_tmp2__), spec)
|
2013-12-08 02:17:28 -05:00
|
|
|
|
2014-01-08 01:38:31 -05:00
|
|
|
void pic_import(pic_state *, pic_value);
|
2013-12-07 23:44:39 -05:00
|
|
|
void pic_export(pic_state *, pic_sym);
|
|
|
|
|
2014-01-30 00:08:36 -05:00
|
|
|
NORETURN void pic_abort(pic_state *, const char *);
|
2014-02-18 12:22:34 -05:00
|
|
|
NORETURN void pic_raise(pic_state *, struct pic_error *);
|
2014-01-30 00:08:36 -05:00
|
|
|
NORETURN void pic_error(pic_state *, const char *);
|
2014-02-10 23:47:11 -05:00
|
|
|
NORETURN void pic_errorf(pic_state *, const char *, ...);
|
2013-10-24 09:29:40 -04:00
|
|
|
void pic_warn(pic_state *, const char *);
|
2013-10-12 01:40:27 -04:00
|
|
|
|
2014-02-10 23:21:00 -05:00
|
|
|
const char *pic_errmsg(pic_state *);
|
|
|
|
|
2014-02-10 23:38:42 -05:00
|
|
|
pic_value pic_debug(pic_state *, pic_value);
|
2014-02-25 07:07:32 -05:00
|
|
|
pic_value pic_fdebug(pic_state *, pic_value, xFILE *);
|
2013-10-10 04:48:01 -04:00
|
|
|
|
2014-01-17 22:41:39 -05:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-10-10 03:15:41 -04:00
|
|
|
#endif
|