1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2009 AT&T Intellectual Property *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* http://www.opensource.org/licenses/cpl1.0.txt *
* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* pointer stack routines
*/
static const char id_stack[] = "\n@(#)$Id: stack (AT&T Bell Laboratories) 1984-05-01 $\0\n";
#include <ast.h>
#include <stack.h>
/*
* create a new stack
*/
STACK
stackalloc(register int size, void* error)
{
register STACK stack;
register struct stackblock *b;
if (size <= 0) size = 100;
if (!(stack = newof(0, struct stacktable, 1, 0))) return(0);
if (!(b = newof(0, struct stackblock, 1, 0)))
{
free(stack);
return(0);
}
if (!(b->stack = newof(0, void*, size, 0)))
{
free(b);
free(stack);
return(0);
}
stack->blocks = b;
stack->size = size;
stack->error = error;
stack->position.block = b;
stack->position.index = -1;
b->next = 0;
b->prev = 0;
return(stack);
}
/*
* remove a stack
*/
void
stackfree(register STACK stack)
{
register struct stackblock* b;
register struct stackblock* p;
b = stack->blocks;
while (p = b)
{
b = p->next;
free(p->stack);
free(p);
}
free(stack);
}
/*
* clear stack
*/
void
stackclear(register STACK stack)
{
stack->position.block = stack->blocks;
stack->position.index = -1;
}
/*
* get value on top of stack
*/
void*
stackget(register STACK stack)
{
if (stack->position.index < 0) return(stack->error);
else return(stack->position.block->stack[stack->position.index]);
}
/*
* push value on to stack
*/
int
stackpush(register STACK stack, void* value)
{
register struct stackblock *b;
if (++stack->position.index >= stack->size)
{
b = stack->position.block;
if (b->next) b = b->next;
else
{
if (!(b->next = newof(0, struct stackblock, 1, 0)))
return(-1);
b = b->next;
if (!(b->stack = newof(0, void*, stack->size, 0)))
return(-1);
b->prev = stack->position.block;
b->next = 0;
}
stack->position.block = b;
stack->position.index = 0;
}
stack->position.block->stack[stack->position.index] = value;
return(0);
}
/*
* pop value off stack
*/
int
stackpop(register STACK stack)
{
/*
* return:
*
* -1 if stack empty before pop
* 0 if stack empty after pop
* 1 if stack not empty before & after pop
*/
if (stack->position.index < 0) return(-1);
else if (--stack->position.index < 0)
{
if (!stack->position.block->prev) return(0);
stack->position.block = stack->position.block->prev;
stack->position.index = stack->size - 1;
return(1);
}
else return(1);
}
/*
* set|get stack position
*/
void
stacktell(register STACK stack, int set, STACKPOS* position)
{
if (set) stack->position = *position;
else *position = stack->position;
}
|