do it right
[unix-history] / usr / src / usr.bin / pascal / pdx / tree.h
CommitLineData
f9e58c14
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 * @(#)tree.h 5.1 (Berkeley) %G%
7 */
ccc7210e
ML
8
9/*
10 * This file contains the declarations of the variables and routines
11 * within the "tree" subdirectory that are accessible from outside.
12 */
13
14#include "tree/opinfo.h"
15
16/*
17 * Evaluation stack manipulation macros. These are publically
18 * available because "eval" leaves it's result on the stack.
19 *
20 * These macros allow one to operate on stacks of arbitrary types
21 * (including a stack of different typed objects).
22 *
23 * Sadly, underflow and overflow are not checked for.
24 */
25
26typedef char STACK;
27
ccc7210e
ML
28#define WMASK (sizeof(int) - 1)
29
30#define push(type, value) ((type *) (sp += sizeof(type)))[-1] = (value)
31#define pop(type) (*((type *) (sp -= sizeof(type))))
32#define alignstack() sp = (char *) (( ((int) sp) + WMASK)&~WMASK)
33
df3ebce4 34STACK stack[];
ccc7210e
ML
35STACK *sp;
36
37NODE *build(); /* create a node in the parse tree */
38prtree(); /* print a tree in source form */
39eval(); /* evaluate a tree, leaving value on stack */
321d5d38 40long popsmall(); /* pop a small item from the stack given its type */
ccc7210e
ML
41tfree(); /* release storage for a tree */
42BOOLEAN tr_equal(); /* test if two trees are structurally equivalent */
43BOOLEAN cond(); /* evaluate a node for a conditional */
44ADDRESS lval(); /* return the object address of a node */
45BOOLEAN isredirected(); /* TRUE if output is being redirected */