1 /****************************************************************
2 Copyright (C) Lucent Technologies 1997
5 Permission to use, copy, modify, and distribute this software and
6 its documentation for any purpose and without fee is hereby
7 granted, provided that the above copyright notice appear in all
8 copies and that both that the copyright notice and this
9 permission notice and warranty disclaimer appear in supporting
10 documentation, and that the name Lucent Technologies or any of
11 its entities not be used in advertising or publicity pertaining
12 to distribution of the software without specific, written prior
15 LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
17 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
18 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
20 IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
21 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
23 ****************************************************************/
25 #if HAVE_NBTOOL_CONFIG_H
26 #include "nbtool_config.h"
36 Node
*nodealloc(int n
)
40 x
= (Node
*) malloc(sizeof(Node
) + (n
-1)*sizeof(Node
*));
42 FATAL("out of space in nodealloc");
48 Node
*exptostat(Node
*a
)
54 Node
*node1(int a
, Node
*b
)
64 Node
*node2(int a
, Node
*b
, Node
*c
)
75 Node
*node3(int a
, Node
*b
, Node
*c
, Node
*d
)
87 Node
*node4(int a
, Node
*b
, Node
*c
, Node
*d
, Node
*e
)
100 Node
*node5(int a
, Node
*b
, Node
*c
, Node
*d
, Node
*e
, Node
*f
)
114 Node
*stat1(int a
, Node
*b
)
123 Node
*stat2(int a
, Node
*b
, Node
*c
)
132 Node
*stat3(int a
, Node
*b
, Node
*c
, Node
*d
)
141 Node
*stat4(int a
, Node
*b
, Node
*c
, Node
*d
, Node
*e
)
145 x
= node4(a
,b
,c
,d
,e
);
150 Node
*op1(int a
, Node
*b
)
159 Node
*op2(int a
, Node
*b
, Node
*c
)
168 Node
*op3(int a
, Node
*b
, Node
*c
, Node
*d
)
177 Node
*op4(int a
, Node
*b
, Node
*c
, Node
*d
, Node
*e
)
181 x
= node4(a
,b
,c
,d
,e
);
186 Node
*op5(int a
, Node
*b
, Node
*c
, Node
*d
, Node
*e
, Node
*f
)
190 x
= node5(a
,b
,c
,d
,e
, f
);
195 Node
*celltonode(Cell
*a
, int b
)
201 x
= node1(0, (Node
*) a
);
206 Node
*rectonode(void) /* make $0 into a Node */
208 extern Cell
*literal0
;
209 return op1(INDIRECT
, celltonode(literal0
, CUNK
));
212 Node
*makearr(Node
*p
)
217 cp
= (Cell
*) (p
->narg
[0]);
219 SYNTAX( "%s is a function, not an array", cp
->nval
);
220 else if (!isarr(cp
)) {
222 cp
->sval
= (char *) makesymtab(NSYMTAB
);
229 #define PA2NUM 50 /* max number of pat,pat patterns allowed */
230 int paircnt
; /* number of them in use */
231 int pairstack
[PA2NUM
]; /* state of each pat,pat */
233 Node
*pa2stat(Node
*a
, Node
*b
, Node
*c
) /* pat, pat {...} */
237 x
= node4(PASTAT2
, a
, b
, c
, itonp(paircnt
));
238 if (paircnt
++ >= PA2NUM
)
239 SYNTAX( "limited to %d pat,pat statements", PA2NUM
);
244 Node
*linkum(Node
*a
, Node
*b
)
248 if (errorflag
) /* don't link things that are wrong */
254 for (c
= a
; c
->nnext
!= NULL
; c
= c
->nnext
)
260 void defn(Cell
*v
, Node
*vl
, Node
*st
) /* turn on FCN bit in definition, */
261 { /* body of function, arglist */
266 SYNTAX( "`%s' is an array name and a function name", v
->nval
);
269 if (isarg(v
->nval
) != -1) {
270 SYNTAX( "`%s' is both function name and argument name", v
->nval
);
275 v
->sval
= (char *) st
;
276 n
= 0; /* count arguments */
277 for (p
= vl
; p
; p
= p
->nnext
)
280 dprintf( ("defining func %s (%d args)\n", v
->nval
, n
) );
283 int isarg(const char *s
) /* is s in argument list for current function? */
284 { /* return -1 if not, otherwise arg # */
285 extern Node
*arglist
;
289 for (n
= 0; p
!= 0; p
= p
->nnext
, n
++)
290 if (strcmp(((Cell
*)(p
->narg
[0]))->nval
, s
) == 0)
295 int ptoi(void *p
) /* convert pointer to integer */
297 return (int) (long) p
; /* swearing that p fits, of course */
300 Node
*itonp(int i
) /* and vice versa */
302 return (Node
*) (long) i
;