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

Contents of /stack/stack.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.15 - (show annotations)
Sat Mar 16 19:09:54 2002 UTC (22 years, 1 month ago) by teddy
Branch: MAIN
Changes since 1.14: +6 -3 lines
File MIME type: text/plain
The empty list and the indicator of the end of a list is no longer a
value* which is NULL, but the "empty list" value, a type of its own.
All affected functions changed.

stack.h (value.type): New type, "empty".
(environment): Comments added.

stack.c (print_h): Print improper lists correctly.
(rev): Don't bother reversing an empty list value.
(forget): Eliminate unnecessary variable "stack_head".
(copying): Fixed centering of first line.

1 /*
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
23 #define HASHTBLSIZE 2048
24
25 /* First, define some types. */
26
27 struct cons_struct;
28 struct symbol_struct;
29
30 /* A value of some type */
31 typedef struct {
32 enum {
33 empty, /* The empty list */
34 integer,
35 tfloat,
36 string,
37 func, /* Function pointer */
38 symb, /* Symbol */
39 tcons /* A pair of two values */
40 } type:4; /* Type of stack element */
41
42 union {
43 struct {
44 unsigned int mark:1; /* Used internally in the GC */
45 unsigned int protect:1; /* Protect from GC */
46 } flag;
47 unsigned int no_gc:2; /* Both flags as one integer */
48 } gc; /* Garbage collector stuff */
49
50 union {
51 void *ptr; /* Pointer to the content */
52 struct cons_struct *c; /* ...or a pointer to a cons cell */
53 struct symbol_struct *sym; /* ...or a pointer to a symbol */
54 int i; /* ...or an integer */
55 float f; /* ...or a floating point number */
56 } content; /* Stores a pointer or an integer */
57
58 } value;
59
60 /* An item (value) on a stack */
61 typedef struct stackitem_struct
62 {
63 value *item; /* The value on the stack */
64 /* (This is never NULL) */
65 struct stackitem_struct *next; /* Next item */
66 } stackitem;
67
68 typedef struct cons_struct { /* A pair of two values */
69 value *car;
70 value *cdr;
71 } cons;
72
73 /* A symbol with a name and possible value */
74 /* (These do not need reference counters, they are kept unique by
75 hashing.) */
76 typedef struct symbol_struct {
77 char *id; /* Symbol name */
78 value *val; /* The value (if any) bound to it */
79 struct symbol_struct *next; /* In case of hashing conflicts, a */
80 } symbol; /* symbol is a kind of stack item. */
81
82 /* A type for a hash table for symbols */
83 typedef symbol *hashtbl[HASHTBLSIZE]; /* Hash table declaration */
84
85 /* An environment; gives access to the stack and a hash table of
86 defined symbols */
87 typedef struct {
88 value *head; /* Head of the stack */
89 hashtbl symbols; /* Hash table of all variable bindings */
90 int err; /* Error flag */
91 char *in_string; /* Input pending to be read */
92 char *free_string; /* Free this string when all input is
93 read from in_string */
94 FILE *inputstream; /* stdin or a file, most likely */
95 int interactive; /* print prompts, stack, etc */
96
97 /* Garbage Collector stuff*/
98 stackitem *gc_ref; /* Stack of all allocated values */
99 int gc_limit; /* Run GC when this much is allocated */
100 int gc_count; /* Amount currently allocated */
101 } environment;
102
103 /* A type for pointers to external functions */
104 typedef void (*funcp)(environment*); /* funcp is a pointer to a void
105 function (environment *) */
106
107 void init_env(environment*);
108 void printerr(const char*);
109 extern void toss(environment*);
110 symbol **hash(hashtbl, const char*);
111 value* new_val(environment*);
112 void gc_mark(value*);
113 void gc_maybe(environment *env);
114 extern void gc_init(environment*);
115 void push_val(environment*, value*);
116 void push_int(environment*, int);
117 void push_float(environment*, float);
118 void push_cstring(environment*, const char*);
119 char *mangle_str(const char*);
120 extern void mangle(environment*);
121 void push_sym(environment*, const char*);
122 extern void nl();
123 extern void type(environment*);
124 void print_h(value*, int);
125 extern void print_(environment*);
126 extern void print(environment*);
127 extern void princ_(environment*);
128 extern void princ(environment*);
129 void print_st(value*, long);
130 extern void printstack(environment*);
131 extern void swap(environment*);
132 extern void rot(environment*);
133 extern void rcl(environment*);
134 extern void eval(environment*);
135 extern void rev(environment*);
136 extern void pack(environment*);
137 extern void expand(environment*);
138 extern void eq(environment*);
139 extern void not(environment*);
140 extern void neq(environment*);
141 extern void def(environment*);
142 extern void quit(environment*);
143 extern void clear(environment*);
144 extern void words(environment*);
145 void forget_sym(symbol**);
146 extern void forget(environment*);
147 extern void errn(environment*);
148 extern void sx_2b(environment*);
149 extern void sx_2d(environment*);
150 extern void sx_3e(environment*);
151 value *copy_val(environment*, value*);
152 extern void sx_647570(environment*);
153 extern void sx_6966(environment*);
154 extern void ifelse(environment*);
155 extern void sx_7768696c65(environment*);
156 extern void sx_666f72(environment*);
157 extern void to(environment*);
158 extern void readline(environment*);
159 extern void sx_72656164(environment*);
160 extern void foreach(environment*);
161 void protect(value*);
162 void unprotect(value*);
163 extern void copying(environment*);
164 extern void warranty(environment*);
165 extern void sx_2a(environment*);
166 extern void sx_2f(environment*);
167 extern void mod(environment*);
168 extern void sx_3c(environment*);
169 extern void sx_3c3d(environment*);
170 extern void sx_3e3d(environment*);
171 extern void sx_646976(environment*);
172 extern void then(environment*);

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26