2005-09-18 10:23:19 +00:00
|
|
|
/*
|
2006-10-25 13:42:31 +00:00
|
|
|
* $Id: prim.h,v 1.9 2006-10-25 13:42:31 bacon Exp $
|
2005-09-18 10:23:19 +00:00
|
|
|
*/
|
|
|
|
|
2006-10-24 04:22:40 +00:00
|
|
|
#ifndef _ASE_LSP_PRIM_H_
|
|
|
|
#define _ASE_LSP_PRIM_H_
|
2005-09-18 10:23:19 +00:00
|
|
|
|
2006-10-24 04:22:40 +00:00
|
|
|
#include <ase/lsp/lsp.h>
|
2005-09-18 10:23:19 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2006-10-24 04:22:40 +00:00
|
|
|
ase_lsp_obj_t* ase_lsp_prim_abort (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_eval (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_prog1 (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_progn (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_gc (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_cond (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_if (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_while (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
2005-09-18 10:23:19 +00:00
|
|
|
|
2006-10-24 04:22:40 +00:00
|
|
|
ase_lsp_obj_t* ase_lsp_prim_car (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_cdr (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_cons (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_set (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_setq (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_quote (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_defun (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_demac (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_let (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_letx (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
2005-09-18 10:23:19 +00:00
|
|
|
|
2005-09-20 12:06:51 +00:00
|
|
|
/*---------------------
|
|
|
|
prim_compar.c
|
|
|
|
---------------------*/
|
2006-10-24 04:22:40 +00:00
|
|
|
ase_lsp_obj_t* ase_lsp_prim_eq (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_ne (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_gt (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_lt (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_ge (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_le (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
2005-09-20 08:05:32 +00:00
|
|
|
|
2005-09-20 12:06:51 +00:00
|
|
|
/*---------------------
|
|
|
|
prim_math.c
|
|
|
|
---------------------*/
|
2006-10-24 04:22:40 +00:00
|
|
|
ase_lsp_obj_t* ase_lsp_prim_plus (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_minus (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_multiply (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_divide (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
|
|
|
ase_lsp_obj_t* ase_lsp_prim_modulus (ase_lsp_t* lsp, ase_lsp_obj_t* args);
|
2005-09-18 10:23:19 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-24 04:22:40 +00:00
|
|
|
#define ASE_LSP_PRIM_CHECK_ARG_COUNT(lsp,args,min,max) \
|
2005-09-18 10:23:19 +00:00
|
|
|
{ \
|
2006-10-24 04:22:40 +00:00
|
|
|
ase_size_t count; \
|
2006-10-25 13:42:31 +00:00
|
|
|
if (ase_lsp_probeargs(lsp->mem, args, &count) == -1) { \
|
2006-10-24 04:22:40 +00:00
|
|
|
lsp->errnum = ASE_LSP_ERR_BAD_ARG; \
|
|
|
|
return ASE_NULL; \
|
2005-09-18 10:23:19 +00:00
|
|
|
} \
|
|
|
|
if (count < min) { \
|
2006-10-24 04:22:40 +00:00
|
|
|
lsp->errnum = ASE_LSP_ERR_TOO_FEW_ARGS; \
|
|
|
|
return ASE_NULL; \
|
2005-09-18 10:23:19 +00:00
|
|
|
} \
|
|
|
|
if (count > max) { \
|
2006-10-24 04:22:40 +00:00
|
|
|
lsp->errnum = ASE_LSP_ERR_TOO_MANY_ARGS; \
|
|
|
|
return ASE_NULL; \
|
2005-09-18 10:23:19 +00:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2006-10-24 04:22:40 +00:00
|
|
|
#define ASE_LSP_PRIM_MAX_ARG_COUNT ((ase_size_t)~(ase_size_t)0)
|
2005-09-18 10:23:19 +00:00
|
|
|
|
|
|
|
#endif
|