2017-12-15 00:33:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Calvin Rose
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DST_COMPILE_H
|
|
|
|
#define DST_COMPILE_H
|
|
|
|
|
|
|
|
#include <dst/dst.h>
|
2017-12-16 06:17:53 +00:00
|
|
|
#include <setjmp.h>
|
|
|
|
#include "opcodes.h"
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/* Compiler typedefs */
|
|
|
|
typedef struct DstCompiler DstCompiler;
|
|
|
|
typedef struct FormOptions FormOptions;
|
|
|
|
typedef struct SlotTracker SlotTracker;
|
|
|
|
typedef struct DstScope DstScope;
|
2017-12-16 06:17:53 +00:00
|
|
|
typedef struct DstSlot DstSlot;
|
|
|
|
typedef struct DstFormOptions DstFormOptions;
|
2017-12-15 00:33:45 +00:00
|
|
|
typedef struct DstCFunctionOptimizer DstCFunctionOptimizer;
|
|
|
|
|
|
|
|
#define DST_SLOT_CONSTANT 0x10000
|
2017-12-16 06:17:53 +00:00
|
|
|
#define DST_SLOT_NAMED 0x20000
|
2017-12-15 00:33:45 +00:00
|
|
|
#define DST_SLOT_RETURNED 0x40000
|
|
|
|
#define DST_SLOT_NIL 0x80000
|
|
|
|
#define DST_SLOT_MUTABLE 0x100000
|
2017-12-16 06:17:53 +00:00
|
|
|
#define DST_SLOT_NOTEMPTY 0x200000
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
#define DST_SLOTTYPE_ANY 0xFFFF
|
|
|
|
|
|
|
|
/* A stack slot */
|
|
|
|
struct DstSlot {
|
|
|
|
int32_t index;
|
|
|
|
int32_t envindex; /* 0 is local, positive number is an upvalue */
|
|
|
|
uint32_t flags;
|
|
|
|
DstValue constant; /* If the slot has a constant value */
|
2017-12-16 06:17:53 +00:00
|
|
|
};
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/* Most forms that return a constant will not generate any bytecode */
|
|
|
|
|
|
|
|
/* Special forms that need support */
|
|
|
|
/* cond
|
|
|
|
* while (continue, break)
|
|
|
|
* quote
|
|
|
|
* fn
|
|
|
|
* def
|
|
|
|
* var
|
|
|
|
* varset
|
|
|
|
* do
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DST_SCOPE_FUNCTION 1
|
|
|
|
#define DST_SCOPE_LASTSLOT 2
|
|
|
|
#define DST_SCOPE_FIRSTSLOT 4
|
2017-12-16 06:17:53 +00:00
|
|
|
#define DST_SCOPE_ENV 8
|
|
|
|
|
|
|
|
/* Hold a bunch of slots together */
|
|
|
|
typedef struct DstSlotPool DstSlotPool;
|
|
|
|
struct DstSlotPool {
|
|
|
|
DstSlot *s;
|
|
|
|
int32_t count;
|
|
|
|
int32_t cap;
|
|
|
|
int32_t free;
|
|
|
|
};
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/* A lexical scope during compilation */
|
|
|
|
struct DstScope {
|
2017-12-16 06:17:53 +00:00
|
|
|
int32_t level;
|
2017-12-15 00:33:45 +00:00
|
|
|
DstArray constants; /* Constants for the funcdef */
|
2017-12-16 06:17:53 +00:00
|
|
|
DstTable constantrev; /* Map constants -> constant inidices */
|
|
|
|
DstTable symbols; /* Map symbols -> Slot pointers */
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/* Hold all slots in use. Data structures that store
|
|
|
|
* slots should link them to this datatstructure */
|
2017-12-16 06:17:53 +00:00
|
|
|
DstSlotPool slots;
|
|
|
|
DstSlotPool unorderedslots;
|
2017-12-15 00:33:45 +00:00
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
/* Referenced closure environents. The values at each index correspond
|
2017-12-15 00:33:45 +00:00
|
|
|
* to which index to get the environment from in the parent. The enironment
|
|
|
|
* that corresponds to the direct parent's stack will always have value 0. */
|
|
|
|
int32_t *envs;
|
|
|
|
int32_t envcount;
|
|
|
|
int32_t envcap;
|
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
int32_t bytecode_start;
|
2017-12-15 00:33:45 +00:00
|
|
|
uint32_t flags;
|
2017-12-16 06:17:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define dst_compile_topscope(c) ((c)->scopes + (c)->scopecount - 1)
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/* Compilation state */
|
|
|
|
struct DstCompiler {
|
2017-12-16 06:17:53 +00:00
|
|
|
jmp_buf on_error;
|
|
|
|
int recursion_guard;
|
2017-12-15 00:33:45 +00:00
|
|
|
int32_t scopecount;
|
|
|
|
int32_t scopecap;
|
|
|
|
DstScope *scopes;
|
2017-12-16 06:17:53 +00:00
|
|
|
|
|
|
|
int32_t buffercap;
|
|
|
|
int32_t buffercount;
|
|
|
|
uint32_t *buffer;
|
|
|
|
int32_t (*mapbuffer)[2];
|
|
|
|
|
|
|
|
DstCompileResults results;
|
2017-12-15 00:33:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define DST_FOPTS_TAIL 0x10000
|
|
|
|
#define DST_FOPTS_FORCESLOT 0x20000
|
|
|
|
|
|
|
|
/* Compiler state */
|
|
|
|
struct DstFormOptions {
|
|
|
|
DstCompiler *compiler;
|
|
|
|
DstValue x;
|
|
|
|
const DstValue *sourcemap;
|
|
|
|
uint32_t flags; /* bit set of accepted primitive types */
|
|
|
|
};
|
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
/* A grouping of optimizations on a cfunction given certain conditions
|
|
|
|
* on the arguments (such as all constants, or some known types). The appropriate
|
|
|
|
* optimizations should be tried before compiling a normal function call. */
|
|
|
|
struct DstCFunctionOptimizer {
|
|
|
|
DstCFunction cfun;
|
|
|
|
DstSlot (*optimize)(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
2017-12-15 00:33:45 +00:00
|
|
|
};
|
2017-12-16 06:17:53 +00:00
|
|
|
typedef struct DstSpecial {
|
|
|
|
const char *name;
|
|
|
|
DstSlot (*compile)(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
|
|
|
} DstSpecial;
|
2017-12-15 00:33:45 +00:00
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
/* An array of optimizers sorted by key */
|
|
|
|
extern DstCFunctionOptimizer dst_compiler_optimizers[255];
|
2017-12-15 00:33:45 +00:00
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
/* An array of special forms */
|
|
|
|
extern DstSpecial dst_compiler_specials[16];
|
2017-12-15 00:33:45 +00:00
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
void dst_compile_slotpool_init(DstSlotPool *pool);
|
|
|
|
void dst_compile_slotpool_deinit(DstSlotPool *pool);
|
|
|
|
DstSlot *dst_compile_slotpool_alloc(DstSlotPool *pool);
|
|
|
|
void dst_compile_slotpool_extend(DstSlotPool *pool, int32_t extra);
|
|
|
|
void dst_compile_slotpool_free(DstSlotPool *pool, DstSlot *s);
|
|
|
|
void dst_compile_slotpool_freeindex(DstSlotPool *pool, int32_t index);
|
2017-12-15 00:33:45 +00:00
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
/* Dispatch to correct form compiler */
|
|
|
|
DstSlot *dst_compile_value(DstFormOptions opts);
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/* Compile special forms */
|
2017-12-16 06:17:53 +00:00
|
|
|
DstSlot *dst_compile_do(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
|
|
|
DstSlot *dst_compile_fn(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
|
|
|
DstSlot *dst_compile_cond(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
|
|
|
DstSlot *dst_compile_while(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
|
|
|
DstSlot *dst_compile_quote(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
|
|
|
DstSlot *dst_compile_def(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
|
|
|
DstSlot *dst_compile_var(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
|
|
|
DstSlot *dst_compile_varset(DstFormOptions opts, int32_t argn, const DstValue *argv);
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/****************************************************/
|
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
void dst_compile_error(DstCompiler *c, const DstValue *sourcemap, const uint8_t *m);
|
|
|
|
void dst_compile_cerror(DstCompiler *c, const DstValue *sourcemap, const char *m);
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/* Use these to get sub options. They will traverse the source map so
|
|
|
|
* compiler errors make sense. Then modify the returned options. */
|
|
|
|
DstFormOptions dst_compile_getopts_index(DstFormOptions opts, int32_t index);
|
|
|
|
DstFormOptions dst_compile_getopts_key(DstFormOptions opts, DstValue key);
|
|
|
|
DstFormOptions dst_compile_getopts_value(DstFormOptions opts, DstValue key);
|
|
|
|
|
|
|
|
void dst_compile_scope(DstCompiler *c, int newfn);
|
2017-12-16 06:17:53 +00:00
|
|
|
void dst_compile_popscope(DstCompiler *c);
|
2017-12-15 00:33:45 +00:00
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
DstSlot *dst_compile_constantslot(DstCompiler *c, DstValue x);
|
|
|
|
void dst_compile_freeslot(DstCompiler *c, DstSlot *slot);
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
/* Search for a symbol */
|
2017-12-16 06:17:53 +00:00
|
|
|
DstSlot *dst_compile_resolve(DstCompiler *c, const DstValue *sourcemap, const uint8_t *sym);
|
2017-12-15 00:33:45 +00:00
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
/* Emit instructions. */
|
2017-12-15 00:33:45 +00:00
|
|
|
|
2017-12-16 06:17:53 +00:00
|
|
|
void dst_compile_emit(DstCompiler *c, const DstValue *sourcemap, uint32_t instr);
|
2017-12-15 00:33:45 +00:00
|
|
|
|
|
|
|
#endif
|