aboutsummaryrefslogtreecommitdiff
path: root/tree.h
blob: 5506657a59ae945f025f17e9c38c126baa448a50 (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
#ifndef TREE_H
#define TREE_H

typedef struct parse_tree {
	int type;
	union {
		int ival; /* NUM */
		float rval; /* RNUM */
		char *sval; /* ID */
		node *nval;
		int opval; /* RELOP: LT LE GT GE EQ NE
			      ADDOP: PLUS MINUS OR
			      MULOP: MUL DIV
		*/
	} attr;
	struct parse_tree *l, *r;
} ptree;

void aux_tree_print(ptree*, int);
void print_tree(ptree*);

ptree* mktree(int, ptree*, ptree*);
ptree* mkid(char*);
ptree* mkinum(int);
ptree* mkrnum(float);
ptree* mkop(int, int, ptree*, ptree*);

void update_type_info(ptree*, int);

#endif