/* N O D E O F A N A B S T R A C T P A R S E T R E E */ #ifndef NORCSID static char *RcsId = "$Header$"; #endif #include "debug.h" #include #include #include #include #include "def.h" #include "type.h" #include "LLlex.h" #include "node.h" struct node *h_node; /* header of free list */ struct node * MkNode(class, left, right, token) struct node *left, *right; struct token *token; { /* Create a node and initialize it with the given parameters */ register struct node *nd = new_node(); nd->nd_left = left; nd->nd_right = right; nd->nd_token = *token; nd->nd_class = class; nd->nd_type = NULLTYPE; DO_DEBUG(4,(debug("Create node:"), PrNode(nd))); return nd; } FreeNode(nd) register struct node *nd; { /* Put nodes that are no longer needed back onto the free list */ if (!nd) return; FreeNode(nd->nd_left); FreeNode(nd->nd_right); free_node(nd); } #ifdef DEBUG extern char *symbol2str(); static printnode(nd) register struct node *nd; { fprint(STDERR, "("); if (nd) { printnode(nd->nd_left); fprint(STDERR, " %s ", symbol2str(nd->nd_symb)); printnode(nd->nd_right); } fprint(STDERR, ")"); } PrNode(nd) struct node *nd; { printnode(nd); fprint(STDERR, "\n"); } #endif DEBUG