ack/lang/m2/comp/node.c

93 lines
1.5 KiB
C
Raw Normal View History

1986-04-06 17:42:56 +00:00
/* 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 */
1986-05-01 19:06:53 +00:00
#include "debug.h"
1986-04-06 17:42:56 +00:00
#include <em_label.h>
#include <em_arith.h>
#include <alloc.h>
1986-04-07 17:40:38 +00:00
#include <system.h>
1986-05-01 19:06:53 +00:00
1986-04-06 17:42:56 +00:00
#include "def.h"
#include "type.h"
#include "LLlex.h"
#include "node.h"
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;
1986-05-28 18:36:51 +00:00
nd->nd_type = error_type;
1986-04-06 17:42:56 +00:00
return nd;
}
1986-06-04 09:01:48 +00:00
struct node *
MkLeaf(class, token)
struct token *token;
{
register struct node *nd = new_node();
nd->nd_left = nd->nd_right = 0;
nd->nd_token = *token;
nd->nd_type = error_type;
nd->nd_class = class;
return nd;
}
1986-04-06 17:42:56 +00:00
FreeNode(nd)
register struct node *nd;
{
/* Put nodes that are no longer needed back onto the free
list
*/
1986-04-12 02:21:24 +00:00
if (!nd) return;
1986-05-23 19:25:21 +00:00
FreeNode(nd->nd_left);
FreeNode(nd->nd_right);
1986-04-06 17:42:56 +00:00
free_node(nd);
}
1986-04-07 17:40:38 +00:00
1986-06-17 12:04:05 +00:00
NodeCrash(expp)
struct node *expp;
{
crash("Illegal node %d", expp->nd_class);
}
1986-04-07 17:40:38 +00:00
#ifdef DEBUG
extern char *symbol2str();
1986-06-26 09:39:36 +00:00
indnt(lvl)
1986-04-07 17:40:38 +00:00
{
1986-06-26 09:39:36 +00:00
while (lvl--) {
print(" ");
1986-04-07 17:40:38 +00:00
}
}
1986-06-26 09:39:36 +00:00
printnode(nd, lvl)
register struct node *nd;
1986-04-07 17:40:38 +00:00
{
1986-06-26 09:39:36 +00:00
indnt(lvl);
print("C: %d; T: %s\n", nd->nd_class, symbol2str(nd->nd_symb));
}
PrNode(nd, lvl)
register struct node *nd;
{
if (! nd) {
indnt(lvl); print("<nilnode>\n");
return;
}
PrNode(nd->nd_left, lvl + 1);
printnode(nd, lvl);
PrNode(nd->nd_right, lvl + 1);
1986-04-07 17:40:38 +00:00
}
#endif DEBUG