summaryrefslogtreecommitdiff
path: root/usr/src/cmd/awk/parse.c
blob: 2afcf1e78fab53af09177c284c21a862c32c3f09 (plain)
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/*
 * Copyright (C) Lucent Technologies 1997
 * All Rights Reserved
 *
 * Permission to use, copy, modify, and distribute this software and
 * its documentation for any purpose and without fee is hereby
 * granted, provided that the above copyright notice appear in all
 * copies and that both that the copyright notice and this
 * permission notice and warranty disclaimer appear in supporting
 * documentation, and that the name Lucent Technologies or any of
 * its entities not be used in advertising or publicity pertaining
 * to distribution of the software without specific, written prior
 * permission.
 *
 * LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
 * IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
 * THIS SOFTWARE.
 */

/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */

/*
 * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

/*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
/*	  All Rights Reserved  	*/

#define	DEBUG
#include "awk.h"
#include "y.tab.h"

Node *
nodealloc(int n)
{
	Node *x;

	x = (Node *)malloc(sizeof (Node) + (n - 1) * sizeof (Node *));
	if (x == NULL)
		FATAL("out of space in nodealloc");
	x->nnext = NULL;
	x->lineno = lineno;
	return (x);
}

Node *
exptostat(Node *a)
{
	a->ntype = NSTAT;
	return (a);
}

Node *
node1(int a, Node *b)
{
	Node *x;

	x = nodealloc(1);
	x->nobj = a;
	x->narg[0] = b;
	return (x);
}

Node *
node2(int a, Node *b, Node *c)
{
	Node *x;

	x = nodealloc(2);
	x->nobj = a;
	x->narg[0] = b;
	x->narg[1] = c;
	return (x);
}

Node *
node3(int a, Node *b, Node *c, Node *d)
{
	Node *x;

	x = nodealloc(3);
	x->nobj = a;
	x->narg[0] = b;
	x->narg[1] = c;
	x->narg[2] = d;
	return (x);
}

Node *
node4(int a, Node *b, Node *c, Node *d, Node *e)
{
	Node *x;

	x = nodealloc(4);
	x->nobj = a;
	x->narg[0] = b;
	x->narg[1] = c;
	x->narg[2] = d;
	x->narg[3] = e;
	return (x);
}

Node *
stat1(int a, Node *b)
{
	Node *x;

	x = node1(a, b);
	x->ntype = NSTAT;
	return (x);
}

Node *
stat2(int a, Node *b, Node *c)
{
	Node *x;

	x = node2(a, b, c);
	x->ntype = NSTAT;
	return (x);
}

Node *
stat3(int a, Node *b, Node *c, Node *d)
{
	Node *x;

	x = node3(a, b, c, d);
	x->ntype = NSTAT;
	return (x);
}

Node *
stat4(int a, Node *b, Node *c, Node *d, Node *e)
{
	Node *x;

	x = node4(a, b, c, d, e);
	x->ntype = NSTAT;
	return (x);
}

Node *
op1(int a, Node *b)
{
	Node *x;

	x = node1(a, b);
	x->ntype = NEXPR;
	return (x);
}

Node *
op2(int a, Node *b, Node *c)
{
	Node *x;

	x = node2(a, b, c);
	x->ntype = NEXPR;
	return (x);
}

Node *
op3(int a, Node *b, Node *c, Node *d)
{
	Node *x;

	x = node3(a, b, c, d);
	x->ntype = NEXPR;
	return (x);
}

Node *
op4(int a, Node *b, Node *c, Node *d, Node *e)
{
	Node *x;

	x = node4(a, b, c, d, e);
	x->ntype = NEXPR;
	return (x);
}

Node *
celltonode(Cell *a, int b)
{
	Node *x;

	a->ctype = OCELL;
	a->csub = b;
	x = node1(0, (Node *)a);
	x->ntype = NVALUE;
	return (x);
}

Node *
rectonode(void)	/* make $0 into a Node */
{
	extern Cell *literal0;
	return (op1(INDIRECT, celltonode(literal0, CUNK)));
}

Node *
makearr(Node *p)
{
	Cell *cp;

	if (isvalue(p)) {
		cp = (Cell *)(p->narg[0]);
		if (isfcn(cp))
			SYNTAX("%s is a function, not an array", cp->nval);
		else if (!isarr(cp)) {
			xfree(cp->sval);
			cp->sval = (char *)makesymtab(NSYMTAB);
			cp->tval = ARR;
		}
	}
	return (p);
}

int	paircnt;	/* number of them in use */
int	*pairstack;	/* state of each pat,pat */

Node *
pa2stat(Node *a, Node *b, Node *c)	/* pat, pat {...} */
{
	Node *x;

	x = node4(PASTAT2, a, b, c, itonp(paircnt));
	paircnt++;
	x->ntype = NSTAT;
	return (x);
}

Node *
linkum(Node *a, Node *b)
{
	Node *c;

	if (errorflag)	/* don't link things that are wrong */
		return (a);
	if (a == NULL)
		return (b);
	else if (b == NULL)
		return (a);
	for (c = a; c->nnext != NULL; c = c->nnext)
		;
	c->nnext = b;
	return (a);
}

/* turn on FCN bit in definition, */
/* body of function, arglist */
void
defn(Cell *v, Node *vl, Node *st)
{
	Node *p;
	int n;

	if (isarr(v)) {
		SYNTAX("`%s' is an array name and a function name", v->nval);
		return;
	}
	if (isarg(v->nval) != -1) {
		SYNTAX("`%s' is both function name and argument name", v->nval);
		return;
	}

	v->tval = FCN;
	v->sval = (char *)st;
	n = 0;	/* count arguments */
	for (p = vl; p != NULL; p = p->nnext)
		n++;
	v->fval = n;
	dprintf(("defining func %s (%d args)\n", v->nval, n));
}

/* is s in argument list for current function? */
/* return -1 if not, otherwise arg # */
int
isarg(const char *s)
{
	extern Node *arglist;
	Node *p = arglist;
	int n;

	for (n = 0; p != NULL; p = p->nnext, n++)
		if (strcmp(((Cell *)(p->narg[0]))->nval, s) == 0)
			return (n);
	return (-1);
}

int
ptoi(void *p)	/* convert pointer to integer */
{
	return ((int)(long)p);	/* swearing that p fits, of course */
}

Node *
itonp(int i)	/* and vice versa */
{
	return ((Node *)(long)i);
}