source: abuse/trunk/src/lisp/lisp.h @ 524

Last change on this file since 524 was 504, checked in by Sam Hocevar, 12 years ago

lisp: always align the lisp allocator results, even on x86 or architectures
that have hardware realignment. Get rid of now useless bus_type.h.

  • Property svn:keywords set to Id
File size: 6.7 KB
RevLine 
[56]1/*
2 *  Abuse - dark 2D side-scrolling platform game
3 *  Copyright (c) 1995 Crack dot Com
[494]4 *  Copyright (c) 2005-2011 Sam Hocevar <sam@hocevar.net>
[56]5 *
6 *  This software was released into the Public Domain. As with most public
7 *  domain software, no warranty is made or implied by Crack dot Com or
8 *  Jonathan Clark.
9 */
10
[2]11#ifndef __LISP_HPP_
12#define __LISP_HPP_
13
[490]14#include <cstdlib>
[11]15#include <stdint.h>
16
[2]17#ifdef L_PROFILE
[481]18#include "timing.h"
[2]19#endif
20
21#define Cell void
22#define MAX_LISP_TOKEN_LEN 200
23enum { PERM_SPACE,
24       TMP_SPACE,
25       USER_SPACE,
26       GC_SPACE };
27
28#define FIXED_TRIG_SIZE 360               // 360 degrees stored in table
[43]29extern int32_t sin_table[FIXED_TRIG_SIZE];   // this should be filled in by external module
[2]30#define TBS 1662                          // atan table granularity
[43]31extern uint16_t atan_table[TBS];
[2]32#define NILP(x) (x==NULL)
33#define DEFINEDP(x) (x!=l_undefined)
34class bFILE;
35extern int current_space;
36extern bFILE *current_print_file;
37
38
39enum { L_BAD_CELL,   // error catching type
[124]40       L_CONS_CELL, L_NUMBER, L_SYMBOL,     L_SYS_FUNCTION, L_USER_FUNCTION,
[2]41       L_STRING, L_CHARACTER, L_C_FUNCTION, L_C_BOOL,       L_L_FUNCTION, L_POINTER,
42       L_OBJECT_VAR, L_1D_ARRAY,
43       L_FIXED_POINT, L_COLLECTED_OBJECT };
44
[482]45typedef uint32_t ltype;    // make sure structures aren't packed differently on various compiler
[19]46                       // and sure that word, etc are word aligned
[2]47
[492]48struct LObject
[124]49{
[496]50    /* Factories */
51    static LObject *Compile(char const *&s);
52
53    /* Methods */
54    LObject *Eval();
[493]55    void Print();
56
[496]57    /* Members */
[482]58    ltype type;
59};
[2]60
[492]61struct LObjectVar : LObject
[2]62{
[496]63    /* Factories */
[493]64    static LObjectVar *Create(int index);
65
[496]66    /* Members */
[493]67    int index;
[482]68};
[2]69
[492]70struct LList : LObject
[2]71{
[496]72    /* Factories */
[492]73    static LList *Create();
[491]74
[496]75    /* Methods */
[490]76    size_t GetLength();
77
[496]78    /* Members */
[492]79    LObject *cdr, *car;
[482]80};
[2]81
[492]82struct LNumber : LObject
[2]83{
[496]84    /* Factories */
[492]85    static LNumber *Create(long num);
[486]86
[496]87    /* Members */
[482]88    long num;
89};
[2]90
[492]91struct LRedirect : LObject
[2]92{
[496]93    /* Members */
[493]94    LObject *ref;
[482]95};
96
[492]97struct LString : LObject
[484]98{
[496]99    /* Factories */
[492]100    static LString *Create(char const *string);
101    static LString *Create(char const *string, int length);
102    static LString *Create(int length);
[488]103
[496]104    /* Methods */
[488]105    char *GetString();
106
[496]107    /* Members */
[493]108private:
109    char str[1]; /* Can be allocated much larger than 1 */
[484]110};
111
[492]112struct LSymbol : LObject
[482]113{
[493]114    /* Factories */
[492]115    static LSymbol *Find(char const *name);
116    static LSymbol *FindOrCreate(char const *name);
[484]117
[493]118    /* Methods */
[497]119    LObject *EvalFunction(void *arg_list);
[499]120    LObject *EvalUserFunction(LList *arg_list);
[497]121
[492]122    LString *GetName();
123    LObject *GetFunction();
124    LObject *GetValue();
[484]125
[492]126    void SetFunction(LObject *fun);
127    void SetValue(LObject *value);
[485]128    void SetNumber(long num);
[484]129
[493]130    /* Members */
[2]131#ifdef L_PROFILE
[482]132    float time_taken;
[2]133#endif
[492]134    LObject *value;
135    LObject *function;
136    LString *name;
137    LSymbol *left, *right; // tree structure
[493]138
139    /* Static members */
140    static LSymbol *root;
141    static size_t count;
[482]142};
[2]143
[492]144struct LSysFunction : LObject
[2]145{
[498]146    /* Methods */
147    LObject *EvalFunction(LList *arg_list);
148
149    /* Members */
[482]150    short min_args, max_args;
151    short fun_number;
152};
[2]153
[492]154struct LUserFunction : LObject
[2]155{
[501]156    LList *arg_list, *block_list;
[482]157};
[2]158
[492]159struct LArray : LObject
[2]160{
[493]161    /* Factories */
162    static LArray *Create(size_t len, void *rest);
[483]163
[493]164    /* Methods */
[492]165    inline LObject **GetData() { return data; }
[493]166    LObject *Get(int x);
[483]167
[493]168    /* Members */
169    size_t len;
[483]170
171private:
[493]172    LObject *data[1]; /* Can be allocated much larger than 1 */
[482]173};
[2]174
[492]175struct LChar : LObject
[2]176{
[496]177    /* Factories */
[493]178    static LChar *Create(uint16_t ch);
179
[496]180    /* Members */
[482]181    uint16_t ch;
182};
[2]183
[492]184struct LPointer : LObject
[2]185{
[496]186    /* Factories */
[493]187    static LPointer *Create(void *addr);
188
[496]189    /* Members */
[482]190    void *addr;
191};
[2]192
[492]193struct LFixedPoint : LObject
[2]194{
[496]195    /* Factories */
[493]196    static LFixedPoint *Create(int32_t x);
197
[496]198    /* Members */
[482]199    int32_t x;
200};
[2]201
[492]202static inline LObject *&CAR(void *x) { return ((LList *)x)->car; }
203static inline LObject *&CDR(void *x) { return ((LList *)x)->cdr; }
[489]204static inline ltype item_type(void *x) { if (x) return *(ltype *)x; return L_CONS_CELL; }
[2]205
206void perm_space();
207void tmp_space();
208void use_user_space(void *addr, long size);
209void *lpointer_value(void *lpointer);
[16]210int32_t lnumber_value(void *lnumber);
[2]211unsigned short lcharacter_value(void *c);
212long lfixed_point_value(void *c);
213void *lisp_atom(void *i);
[496]214LObject *lcdr(void *c);
215LObject *lcar(void *c);
[2]216void *lisp_eq(void *n1, void *n2);
217void *lisp_equal(void *n1, void *n2);
218void *eval_block(void *list);
219void *assoc(void *item, void *list);
[504]220void resize_tmp(size_t new_size);
221void resize_perm(size_t new_size);
[2]222
223void push_onto_list(void *object, void *&list);
[493]224LSymbol *add_c_object(void *symbol, int index);
[492]225LSymbol *add_c_function(char const *name, short min_args, short max_args, short number);
226LSymbol *add_c_bool_fun(char const *name, short min_args, short max_args, short number);
227LSymbol *add_lisp_function(char const *name, short min_args, short max_args, short number);
[2]228int read_ltoken(char *&s, char *buffer);
229void print_trace_stack(int max_levels);
230
231
[492]232LSysFunction *new_lisp_sys_function(int min_args, int max_args, int fun_number);
233LSysFunction *new_lisp_c_function(int min_args, int max_args, int fun_number);
234LSysFunction *new_lisp_c_bool(int min_args, int max_args, int fun_number);
[2]235
[501]236LUserFunction *new_lisp_user_function(LList *arg_list, LList *block_list);
[2]237
[492]238LSysFunction *new_user_lisp_function(int min_args, int max_args, int fun_number);
[2]239
240int end_of_program(char *s);
241void clear_tmp();
242void lisp_init(long perm_size, long tmp_size);
243void lisp_uninit();
244
[480]245extern uint8_t *space[4], *free_space[4];
[504]246extern size_t space_size[4];
[2]247void *nth(int num, void *list);
[43]248int32_t lisp_atan2(int32_t dy, int32_t dx);
249int32_t lisp_sin(int32_t x);
250int32_t lisp_cos(int32_t x);
[2]251void restore_heap(void *val, int heap);
252void *mark_heap(int heap);
253
254extern "C" {
255void lbreak(const char *format, ...);
256} ;
257
258extern void clisp_init();                      // external initalizer call by lisp_init()
259extern long c_caller(long number, void *arg);  // exten c function switches on number
260extern void *l_caller(long number, void *arg);  // exten lisp function switches on number
261
262extern void *l_obj_get(long number);  // exten lisp function switches on number
263extern void l_obj_set(long number, void *arg);  // exten lisp function switches on number
264extern void l_obj_print(long number);  // exten lisp function switches on number
265
[484]266// FIXME: get rid of this later
[492]267static inline void *symbol_value(void *sym) { return ((LSymbol *)sym)->GetValue(); }
268static inline char *lstring_value(void *str) { return ((LString *)str)->GetString(); }
[2]269
[489]270#include "lisp_opt.h"
[2]271
272#endif
Note: See TracBrowser for help on using the repository browser.