/[cvs]/stack/stack.h
ViewVC logotype

Annotation of /stack/stack.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.8 - (hide annotations)
Sun Mar 10 09:13:36 2002 UTC (22 years, 2 months ago) by masse
Branch: MAIN
Changes since 1.7: +3 -3 lines
File MIME type: text/plain
(protect, unprotect): Changed behaviour to mimic gc_mark. All callers changed.

1 teddy 1.4 /*
2     stack - an interactive interpreter for a stack-based language
3     Copyright (C) 2002 Mats Alritzson and Teddy Hogeborn
4    
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9    
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13     GNU General Public License for more details.
14    
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18    
19     Authors: Mats Alritzson <masse@fukt.bth.se>
20     Teddy Hogeborn <teddy@fukt.bth.se>
21     */
22 teddy 1.1
23     #define HASHTBLSIZE 2048
24    
25     /* First, define some types. */
26    
27     /* A value of some type */
28     typedef struct {
29     enum {
30     integer,
31 masse 1.5 tfloat,
32 teddy 1.1 string,
33     func, /* Function pointer */
34     symb,
35     list
36 masse 1.5 } type:4; /* Type of stack element */
37 masse 1.2
38     int gc_garb:1;
39 masse 1.8 int gc_protect:1;
40 teddy 1.1
41     union {
42     void *ptr; /* Pointer to the content */
43 masse 1.5 int i; /* ...or an integer */
44     float f;
45 teddy 1.1 } content; /* Stores a pointer or an integer */
46    
47     } value;
48    
49     /* A symbol with a name and possible value */
50     /* (These do not need reference counters, they are kept unique by
51     hashing.) */
52     typedef struct symbol_struct {
53     char *id; /* Symbol name */
54     value *val; /* The value (if any) bound to it */
55     struct symbol_struct *next; /* In case of hashing conflicts, a */
56     } symbol; /* symbol is a kind of stack item. */
57    
58     /* A type for a hash table for symbols */
59     typedef symbol *hashtbl[HASHTBLSIZE]; /* Hash table declaration */
60    
61     /* An item (value) on a stack */
62     typedef struct stackitem_struct
63     {
64     value *item; /* The value on the stack */
65     /* (This is never NULL) */
66     struct stackitem_struct *next; /* Next item */
67     } stackitem;
68    
69     /* An environment; gives access to the stack and a hash table of
70     defined symbols */
71     typedef struct {
72     stackitem *gc_ref;
73     int gc_limit, gc_count;
74    
75     stackitem *head; /* Head of the stack */
76     hashtbl symbols; /* Hash table of all variable bindings */
77     int err; /* Error flag */
78     char *in_string; /* Input pending to be read */
79     char *free_string; /* Free this string when all input is
80 teddy 1.4 read from in_string */
81 teddy 1.1 FILE *inputstream; /* stdin or a file, most likely */
82     int interactive; /* print prompts, stack, etc */
83     } environment;
84    
85     /* A type for pointers to external functions */
86 masse 1.2 typedef void (*funcp)(environment*); /* funcp is a pointer to a void
87 teddy 1.1 function (environment *) */
88    
89 masse 1.2 void init_env(environment*);
90     void printerr(const char*);
91     extern void toss(environment*);
92     symbol **hash(hashtbl, const char*);
93     value* new_val(environment*);
94     void gc_mark(value*);
95 teddy 1.7 void gc_maybe(environment *env);
96 masse 1.2 extern void gc_init(environment*);
97     void push_val(environment*, value*);
98     void push_int(environment*, int);
99 masse 1.5 void push_float(environment*, float);
100 masse 1.2 void push_cstring(environment*, const char*);
101     char *mangle_str(const char*);
102     extern void mangle(environment*);
103     void push_sym(environment*, const char*);
104 teddy 1.1 extern void nl();
105 masse 1.2 extern void type(environment*);
106     void print_h(stackitem*, int);
107     extern void print_(environment*);
108     extern void print(environment*);
109     extern void princ_(environment*);
110     extern void princ(environment*);
111     void print_st(stackitem*, long);
112     extern void printstack(environment*);
113     extern void swap(environment*);
114     extern void rot(environment*);
115     extern void rcl(environment*);
116     extern void eval(environment*);
117     extern void rev(environment*);
118     extern void pack(environment*);
119     extern void expand(environment*);
120     extern void eq(environment*);
121     extern void not(environment*);
122     extern void neq(environment*);
123     extern void def(environment*);
124     extern void quit(environment*);
125     extern void clear(environment*);
126     extern void words(environment*);
127     void forget_sym(symbol**);
128     extern void forget(environment*);
129     extern void errn(environment*);
130     extern void sx_2b(environment*);
131     extern void sx_2d(environment*);
132     extern void sx_3e(environment*);
133     value *copy_val(environment*, value*);
134     extern void sx_647570(environment*);
135     extern void sx_6966(environment*);
136     extern void ifelse(environment*);
137     extern void sx_7768696c65(environment*);
138     extern void sx_666f72(environment*);
139     extern void to(environment*);
140     extern void readline(environment*);
141     extern void sx_72656164(environment*);
142     extern void foreach(environment*);
143 masse 1.8 void protect(value*);
144     void unprotect(value*);
145 masse 1.5 extern void copying(environment*);
146     extern void warranty(environment*);
147     extern void sx_2a(environment*);
148     extern void sx_2f(environment*);
149     extern void mod(environment*);
150     extern void sx_3c(environment*);
151     extern void sx_3c3d(environment*);
152     extern void sx_3e3d(environment*);
153 masse 1.6 extern void sx_646976(environment*);

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26