qse/ase/lsp/primitive.c

687 lines
17 KiB
C
Raw Normal View History

2005-02-04 15:39:11 +00:00
/*
2005-02-04 16:00:37 +00:00
* $Id: primitive.c,v 1.2 2005-02-04 16:00:37 bacon Exp $
2005-02-04 15:39:11 +00:00
*/
#include "lisp.h"
#include "memory.h"
#include "primitive.h"
xp_lisp_obj_t* xp_lisp_prim_abort (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 0, 0);
lsp->error = XP_LISP_ERR_ABORT;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
xp_lisp_obj_t* xp_lisp_prim_eval (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* tmp;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, 1);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
tmp = xp_lisp_eval (lsp, tmp);
if (tmp == XP_NULL) return XP_NULL;
return tmp;
}
xp_lisp_obj_t* xp_lisp_prim_prog1 (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* res = XP_NULL, * tmp;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, XP_LISP_PRIM_MAX_ARG_COUNT);
2005-02-04 15:39:11 +00:00
//while (args != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
while (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS) {
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
if (res == XP_NULL) {
/*
xp_lisp_array_t* ta = lsp->mem->temp_array;
xp_lisp_array_insert (ta, ta->size, tmp);
*/
res = tmp;
}
2005-02-04 16:00:37 +00:00
args = XP_LISP_CDR(args);
2005-02-04 15:39:11 +00:00
}
return res;
}
xp_lisp_obj_t* xp_lisp_prim_progn (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* res, * tmp;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, XP_LISP_PRIM_MAX_ARG_COUNT);
2005-02-04 15:39:11 +00:00
res = lsp->mem->nil;
//while (args != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
while (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS) {
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
res = tmp;
2005-02-04 16:00:37 +00:00
args = XP_LISP_CDR(args);
2005-02-04 15:39:11 +00:00
}
return res;
}
xp_lisp_obj_t* xp_lisp_prim_gc (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 0, 0);
2005-02-04 15:39:11 +00:00
xp_lisp_garbage_collect (lsp->mem);
return lsp->mem->nil;
}
xp_lisp_obj_t* xp_lisp_prim_cond (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
/*
* (cond
* (condition1 result1)
* (consition2 result2)
* ...
* (t resultN))
*/
xp_lisp_obj_t* tmp, * ret;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 0, XP_LISP_PRIM_MAX_ARG_COUNT);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
while (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS) {
if (XP_LISP_TYPE(XP_LISP_CAR(args)) != XP_LISP_OBJ_CONS) {
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(XP_LISP_CAR(args)));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
if (tmp != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
tmp = XP_LISP_CDR(XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
ret = lsp->mem->nil;
2005-02-04 16:00:37 +00:00
while (XP_LISP_TYPE(tmp) == XP_LISP_OBJ_CONS) {
ret = xp_lisp_eval (lsp, XP_LISP_CAR(tmp));
2005-02-04 15:39:11 +00:00
if (ret == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
tmp = XP_LISP_CDR(tmp);
2005-02-04 15:39:11 +00:00
}
if (tmp != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return ret;
}
2005-02-04 16:00:37 +00:00
args = XP_LISP_CDR(args);
2005-02-04 15:39:11 +00:00
}
return lsp->mem->nil;
}
xp_lisp_obj_t* xp_lisp_prim_if (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* tmp;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 2, XP_LISP_PRIM_MAX_ARG_COUNT);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
if (tmp != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(XP_LISP_CDR(args)));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
return tmp;
}
else {
xp_lisp_obj_t* res = lsp->mem->nil;
2005-02-04 16:00:37 +00:00
tmp = XP_LISP_CDR(XP_LISP_CDR(args));
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
while (XP_LISP_TYPE(tmp) == XP_LISP_OBJ_CONS) {
res = xp_lisp_eval (lsp, XP_LISP_CAR(tmp));
2005-02-04 15:39:11 +00:00
if (res == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
tmp = XP_LISP_CDR(tmp);
2005-02-04 15:39:11 +00:00
}
if (tmp != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return res;
}
}
xp_lisp_obj_t* xp_lisp_prim_while (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
/*
* (setq a 1)
* (while (< a 100) (setq a (+ a 1)))
*/
xp_lisp_obj_t* tmp;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, XP_LISP_PRIM_MAX_ARG_COUNT);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
for (;;) {
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
if (tmp == lsp->mem->nil) break;
2005-02-04 16:00:37 +00:00
tmp = XP_LISP_CDR(args);
while (XP_LISP_TYPE(tmp) == XP_LISP_OBJ_CONS) {
if (xp_lisp_eval (lsp, XP_LISP_CAR(tmp)) == XP_NULL) return XP_NULL;
tmp = XP_LISP_CDR(tmp);
2005-02-04 15:39:11 +00:00
}
if (tmp != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
return lsp->mem->nil;
}
xp_lisp_obj_t* xp_lisp_prim_car (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* tmp;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, 1);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
if (tmp == lsp->mem->nil) return lsp->mem->nil;
2005-02-04 16:00:37 +00:00
if (XP_LISP_TYPE(tmp) != XP_LISP_OBJ_CONS) {
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
return XP_LISP_CAR(tmp);
2005-02-04 15:39:11 +00:00
}
xp_lisp_obj_t* xp_lisp_prim_cdr (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* tmp;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, 1);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
if (tmp == lsp->mem->nil) return lsp->mem->nil;
2005-02-04 16:00:37 +00:00
if (XP_LISP_TYPE(tmp) != XP_LISP_OBJ_CONS) {
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
return XP_LISP_CDR(tmp);
2005-02-04 15:39:11 +00:00
}
xp_lisp_obj_t* xp_lisp_prim_cons (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* car, * cdr, * cons;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 2, 2);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
car = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (car == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
cdr = xp_lisp_eval (lsp, XP_LISP_CAR(XP_LISP_CDR(args)));
2005-02-04 15:39:11 +00:00
if (cdr == XP_NULL) return XP_NULL;
cons = xp_lisp_make_cons (lsp->mem, car, cdr);
if (cons == XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return cons;
}
xp_lisp_obj_t* xp_lisp_prim_set (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* p1, * p2;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 2, 2);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
p1 = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (p1 == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
if (XP_LISP_TYPE(p1) != XP_LISP_OBJ_SYMBOL) {
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
p2 = xp_lisp_eval (lsp, XP_LISP_CAR(XP_LISP_CDR(args)));
2005-02-04 15:39:11 +00:00
if (p2 == XP_NULL) return XP_NULL;
if (xp_lisp_set (lsp->mem, p1, p2) == XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return p2;
}
xp_lisp_obj_t* xp_lisp_prim_setq (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* p = args, * p1, * p2 = lsp->mem->nil;
while (p != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
xp_lisp_assert (XP_LISP_TYPE(p) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
p1 = XP_LISP_CAR(p);
if (XP_LISP_TYPE(p1) != XP_LISP_OBJ_SYMBOL) {
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
if (XP_LISP_TYPE(XP_LISP_CDR(p)) != XP_LISP_OBJ_CONS) {
lsp->error = XP_LISP_ERR_TOO_FEW_ARGS;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
p2 = xp_lisp_eval (lsp, XP_LISP_CAR(XP_LISP_CDR(p)));
2005-02-04 15:39:11 +00:00
if (p2 == XP_NULL) return XP_NULL;
if (xp_lisp_set (lsp->mem, p1, p2) == XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
p = XP_LISP_CDR(XP_LISP_CDR(p));
2005-02-04 15:39:11 +00:00
}
return p2;
}
xp_lisp_obj_t* xp_lisp_prim_quote (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, 1);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
return XP_LISP_CAR(args);
2005-02-04 15:39:11 +00:00
}
xp_lisp_obj_t* xp_lisp_prim_defun (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
/*
* (defun x (abc) x y z)
* (setq x (lambda (abc) x y z))
*/
xp_lisp_obj_t* name, * fun;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 3, XP_LISP_PRIM_MAX_ARG_COUNT);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
name = XP_LISP_CAR(args);
if (XP_LISP_TYPE(name) != XP_LISP_OBJ_SYMBOL) {
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
fun = xp_lisp_make_func (lsp->mem,
2005-02-04 16:00:37 +00:00
XP_LISP_CAR(XP_LISP_CDR(args)), XP_LISP_CDR(XP_LISP_CDR(args)));
2005-02-04 15:39:11 +00:00
if (fun == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
if (xp_lisp_set (lsp->mem, XP_LISP_CAR(args), fun) == XP_NULL) {
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return fun;
}
xp_lisp_obj_t* xp_lisp_prim_demac (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
/*
* (demac x (abc) x y z)
*(setq x (macro (abc) x y z))
*/
xp_lisp_obj_t* name, * mac;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 3, XP_LISP_PRIM_MAX_ARG_COUNT);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
name = XP_LISP_CAR(args);
if (XP_LISP_TYPE(name) != XP_LISP_OBJ_SYMBOL) {
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
mac = xp_lisp_make_macro (lsp->mem,
2005-02-04 16:00:37 +00:00
XP_LISP_CAR(XP_LISP_CDR(args)), XP_LISP_CDR(XP_LISP_CDR(args)));
2005-02-04 15:39:11 +00:00
if (mac == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
if (xp_lisp_set (lsp->mem, XP_LISP_CAR(args), mac) == XP_NULL) {
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return mac;
}
static xp_lisp_obj_t* xp_lisp_prim_let_impl (
xp_lisp_t* lsp, xp_lisp_obj_t* args, int sequential)
{
xp_lisp_frame_t* frame;
xp_lisp_obj_t* assoc;
xp_lisp_obj_t* body;
xp_lisp_obj_t* value;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, XP_LISP_PRIM_MAX_ARG_COUNT);
2005-02-04 15:39:11 +00:00
// create a new frame
frame = xp_lisp_frame_new ();
if (frame == XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
//frame->link = lsp->mem->frame;
if (sequential) {
frame->link = lsp->mem->frame;
lsp->mem->frame = frame;
}
else {
frame->link = lsp->mem->brooding_frame;
lsp->mem->brooding_frame = frame;
}
2005-02-04 16:00:37 +00:00
assoc = XP_LISP_CAR(args);
2005-02-04 15:39:11 +00:00
//while (assoc != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
while (XP_LISP_TYPE(assoc) == XP_LISP_OBJ_CONS) {
xp_lisp_obj_t* ass = XP_LISP_CAR(assoc);
if (XP_LISP_TYPE(ass) == XP_LISP_OBJ_CONS) {
xp_lisp_obj_t* n = XP_LISP_CAR(ass);
xp_lisp_obj_t* v = XP_LISP_CDR(ass);
if (XP_LISP_TYPE(n) != XP_LISP_OBJ_SYMBOL) {
lsp->error = XP_LISP_ERR_BAD_ARG; // must be a symbol
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
if (v != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
if (XP_LISP_CDR(v) != lsp->mem->nil) {
lsp->error = XP_LISP_ERR_TOO_MANY_ARGS; // must be a symbol
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
if ((v = xp_lisp_eval(lsp, XP_LISP_CAR(v))) == XP_NULL) {
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
}
if (xp_lisp_frame_lookup (frame, n) != XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_DUP_FORMAL;
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
if (xp_lisp_frame_insert (frame, n, v) == XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(ass) == XP_LISP_OBJ_SYMBOL) {
2005-02-04 15:39:11 +00:00
if (xp_lisp_frame_lookup (frame, ass) != XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_DUP_FORMAL;
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
if (xp_lisp_frame_insert (frame, ass, lsp->mem->nil) == XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
assoc = XP_LISP_CDR(assoc);
2005-02-04 15:39:11 +00:00
}
if (assoc != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_ARG;
2005-02-04 15:39:11 +00:00
if (sequential) lsp->mem->frame = frame->link;
else lsp->mem->brooding_frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
// push the frame
if (!sequential) {
lsp->mem->brooding_frame = frame->link;
frame->link = lsp->mem->frame;
lsp->mem->frame = frame;
}
// evaluate forms in the body
value = lsp->mem->nil;
2005-02-04 16:00:37 +00:00
body = XP_LISP_CDR(args);
2005-02-04 15:39:11 +00:00
while (body != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
value = xp_lisp_eval (lsp, XP_LISP_CAR(body));
2005-02-04 15:39:11 +00:00
if (value == XP_NULL) {
lsp->mem->frame = frame->link;
xp_lisp_frame_free (frame);
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
body = XP_LISP_CDR(body);
2005-02-04 15:39:11 +00:00
}
// pop the frame
lsp->mem->frame = frame->link;
// destroy the frame
xp_lisp_frame_free (frame);
return value;
}
xp_lisp_obj_t* xp_lisp_prim_let (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
return xp_lisp_prim_let_impl (lsp, args, 0);
}
xp_lisp_obj_t* xp_lisp_prim_letx (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
return xp_lisp_prim_let_impl (lsp, args, 1);
}
xp_lisp_obj_t* xp_lisp_prim_plus (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* body, * tmp;
xp_lisp_int value = 0;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 1, XP_LISP_PRIM_MAX_ARG_COUNT);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
body = args;
//while (body != lsp->mem->nil) {
2005-02-04 16:00:37 +00:00
while (XP_LISP_TYPE(body) == XP_LISP_OBJ_CONS) {
tmp = xp_lisp_eval (lsp, XP_LISP_CAR(body));
2005-02-04 15:39:11 +00:00
if (tmp == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
if (XP_LISP_TYPE(tmp) != XP_LISP_OBJ_INT) {
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
2005-02-04 16:00:37 +00:00
value = value + XP_LISP_IVALUE(tmp);
body = XP_LISP_CDR(body);
2005-02-04 15:39:11 +00:00
}
tmp = xp_lisp_make_int (lsp->mem, value);
if (tmp == XP_NULL) {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_MEM;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return tmp;
}
xp_lisp_obj_t* xp_lisp_prim_gt (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* p1, * p2;
int res;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 2, 2);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
p1 = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (p1 == XP_NULL) return XP_NULL;
// TODO: lock p1....
2005-02-04 16:00:37 +00:00
p2 = xp_lisp_eval (lsp, XP_LISP_CAR(XP_LISP_CDR(args)));
2005-02-04 15:39:11 +00:00
if (p2 == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
if (XP_LISP_TYPE(p1) == XP_LISP_OBJ_INT) {
if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_INT) {
res = XP_LISP_IVALUE(p1) > XP_LISP_IVALUE(p2);
2005-02-04 15:39:11 +00:00
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_FLOAT) {
res = XP_LISP_IVALUE(p1) > XP_LISP_FVALUE(p2);
2005-02-04 15:39:11 +00:00
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p1) == XP_LISP_OBJ_FLOAT) {
if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_INT) {
res = XP_LISP_FVALUE(p1) > XP_LISP_IVALUE(p2);
2005-02-04 15:39:11 +00:00
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_FLOAT) {
res = XP_LISP_FVALUE(p1) > XP_LISP_FVALUE(p2);
2005-02-04 15:39:11 +00:00
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p1) == XP_LISP_OBJ_SYMBOL) {
if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_SYMBOL) {
2005-02-04 15:39:11 +00:00
res = xp_lisp_comp_symbol2 (
2005-02-04 16:00:37 +00:00
p1, XP_LISP_SYMVALUE(p2), XP_LISP_SYMLEN(p2)) > 0;
2005-02-04 15:39:11 +00:00
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p1) == XP_LISP_OBJ_STRING) {
if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_STRING) {
2005-02-04 15:39:11 +00:00
res = xp_lisp_comp_string2 (
2005-02-04 16:00:37 +00:00
p1, XP_LISP_STRVALUE(p2), XP_LISP_STRLEN(p2)) > 0;
2005-02-04 15:39:11 +00:00
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return (res)? lsp->mem->t: lsp->mem->nil;
}
xp_lisp_obj_t* xp_lisp_prim_lt (xp_lisp_t* lsp, xp_lisp_obj_t* args)
{
xp_lisp_obj_t* p1, * p2;
int res;
2005-02-04 16:00:37 +00:00
XP_LISP_PRIM_CHECK_ARG_COUNT (lsp, args, 2, 2);
xp_lisp_assert (XP_LISP_TYPE(args) == XP_LISP_OBJ_CONS);
2005-02-04 15:39:11 +00:00
2005-02-04 16:00:37 +00:00
p1 = xp_lisp_eval (lsp, XP_LISP_CAR(args));
2005-02-04 15:39:11 +00:00
if (p1 == XP_NULL) return XP_NULL;
// TODO: lock p1....
2005-02-04 16:00:37 +00:00
p2 = xp_lisp_eval (lsp, XP_LISP_CAR(XP_LISP_CDR(args)));
2005-02-04 15:39:11 +00:00
if (p2 == XP_NULL) return XP_NULL;
2005-02-04 16:00:37 +00:00
if (XP_LISP_TYPE(p1) == XP_LISP_OBJ_INT) {
if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_INT) {
res = XP_LISP_IVALUE(p1) < XP_LISP_IVALUE(p2);
2005-02-04 15:39:11 +00:00
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_FLOAT) {
res = XP_LISP_IVALUE(p1) < XP_LISP_FVALUE(p2);
2005-02-04 15:39:11 +00:00
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p1) == XP_LISP_OBJ_FLOAT) {
if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_INT) {
res = XP_LISP_FVALUE(p1) < XP_LISP_IVALUE(p2);
2005-02-04 15:39:11 +00:00
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_FLOAT) {
res = XP_LISP_FVALUE(p1) < XP_LISP_FVALUE(p2);
2005-02-04 15:39:11 +00:00
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p1) == XP_LISP_OBJ_SYMBOL) {
if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_SYMBOL) {
2005-02-04 15:39:11 +00:00
res = xp_lisp_comp_symbol2 (
2005-02-04 16:00:37 +00:00
p1, XP_LISP_SYMVALUE(p2), XP_LISP_SYMLEN(p2)) < 0;
2005-02-04 15:39:11 +00:00
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
2005-02-04 16:00:37 +00:00
else if (XP_LISP_TYPE(p1) == XP_LISP_OBJ_STRING) {
if (XP_LISP_TYPE(p2) == XP_LISP_OBJ_STRING) {
2005-02-04 15:39:11 +00:00
res = xp_lisp_comp_string2 (
2005-02-04 16:00:37 +00:00
p1, XP_LISP_STRVALUE(p2), XP_LISP_STRLEN(p2)) < 0;
2005-02-04 15:39:11 +00:00
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
}
else {
2005-02-04 16:00:37 +00:00
lsp->error = XP_LISP_ERR_BAD_VALUE;
2005-02-04 15:39:11 +00:00
return XP_NULL;
}
return (res)? lsp->mem->t: lsp->mem->nil;
}