aboutsummaryrefslogtreecommitdiff
path: root/proj2.c
blob: 4c1bc056f106f8ea848014e07f1e270f13869343 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/* %A% ********************************************************/
/* 
proj2.c

This file consists of 4 parts
	a. the data structure of a tree node
	b. the tree operation functions, from "CopyTree"
           to "SetRightChild"
	c. the tree printing function

The functions in this file are contributed by Chunmin Qiao and
Aggelos Varvitsiotis.
*/

/*	define syntax tree node and pointer type	*/
#include <stdio.h>
#include "proj2.h"

ILTree dummy = { DUMMYNode, 0, 0, 0, 0 };
 

/********************************************************
*	This function return a DUMMYNode to the caller  *
*	Note: All the dummy nodes are corresponding to  *
*	the save memory location.  So any attampt to    *
*	use it for the other purposes will cause        *
*	trouble                                         *
********************************************************/
tree NullExp()
{
	return (&dummy);
}

/***********************************************************
*	This function will create a leafnode with it	   *
*	NodeKind and IntVal to be Kind and N, respectively *
***********************************************************/
tree MakeLeaf(Kind, N)
int Kind, N;
{
tree 	p;

	p = (tree)malloc(sizeof(ILTree));
	p->NodeKind = Kind;     
	p->IntVal = N;
	return (p);
}
	
/***********************************************************
* 	This function create a interior node of NodeOptype *
*	with children to be Left and Right, respectively,  *
***********************************************************/
tree MakeTree(NodeOp, Left, Right)
int NodeOp;
tree Left, Right;
{
tree 	p;

	p = (tree)malloc(sizeof(ILTree));
	p->NodeKind = EXPRNode; 
	p->NodeOpType = NodeOp;
	p->LeftC = Left;
	p->RightC = Right;
	return (p);
}

/*********************************************************
*	This function returns leftchild of the treenode  *
*********************************************************/
tree LeftChild(T)
tree T;
{
	if (NodeKind(T) != EXPRNode)
		return (NullExp());
	return (T->LeftC);
}

/*********************************************************
*	This function returns rightchild of the treenode *
*********************************************************/
tree RightChild(T)
tree T;
{
	if (NodeKind(T) != EXPRNode)
		return (NullExp());
	return (T->RightC);
}

/********************************************************
*	This function makes subtree T1 to be the        *
*	leftmost child of the tree T2, return T2	*
********************************************************/	
tree MkLeftC(T1, T2)
tree T1, T2;
{
tree p,q;

        if (IsNull(T2)) return (T1);
	p = T2;
	q = LeftChild(p);
	/* replace the leftmost DUMMYNode */
	while ( !IsNull(q) )
	{
		p = q;
		q = LeftChild(p);
	}
	p->LeftC = T1;
	return(T2);
}

/********************************************************
*	This function makes subtree T1 to be the        *
*	rightmost child of the tree T2, return T2	*
********************************************************/	
tree MkRightC(T1, T2)
tree T1, T2;
{
tree p,q;

        if (IsNull(T2)) return (T1);
	p = T2;
	q = RightChild(p);
	/* replace the rightmost DUMMYNode */
	while ( !IsNull(q) )
	{
		p = q;
		q = RightChild(p);
	}
	p->RightC = T1;
	return(T2);
}

/********************************************************
*	This function returns NodeOpType of a node	*
********************************************************/
NodeOp(T)
tree T;
{
        if (NodeKind(T) != EXPRNode)
        {
          printf("NodeOP(): This node must be an EXPRNode!\n");
          return(0);
        }
	return (T->NodeOpType);
}

/********************************************************
*	This function returns NodeKind of a node 	*
********************************************************/
NodeKind(T)
tree T;
{
	return (T->NodeKind);
}


/********************************************************
*	This function returns IntVal of a leafnode	*
********************************************************/
IntVal(T)
tree T;
{
	if ( NodeKind(T) == EXPRNode )
        {
		printf("IntVal(): This node must be a leaf node!\n");
                return(-1);
        }
	return (T->IntVal);
}

/********************************************************
* 	This function return true if the node is 	*
*	DUMMYNode, false otherwise.			*
********************************************************/
IsNull(T)
tree T;
{
	return ( NodeKind(T) == DUMMYNode );
}

/********************************************************
*	This function sets the Target Node to be	*
*	Source Node (only for Non Dummy Target Node)	*
********************************************************/
void SetNode(Target, Source)
tree Target, Source;
{
    if ((Target->NodeKind = Source->NodeKind) != EXPRNode)
	{
	Target->IntVal = Source->IntVal;
	Target->LeftC = NullExp();
	Target->RightC = NullExp();
	}
    else
	{
	Target->NodeOpType = Source->NodeOpType;
	Target->LeftC = Source->LeftC;
	Target->RightC = Source->RightC;
	}
}

/********************************************************
*	This function sets the NodeOpType  to be	*
*	to be NewOp (only for Interior EXPRNode)	*
********************************************************/
void SetNodeOp(T, Op)
tree T;
int Op;
{
	if (NodeKind(T) != EXPRNode)
		printf("SetNodeOp(): This node must be an EXPRNode!\n");
	else
		T->NodeOpType = Op;
}

/********************************************************
*	This function sets the tree root and all its	*
*	left subtree root to be a NewOp node, used only *
*	in construct a Record Component subtree.	*
*	Name Changed by Hui-Jung Chang, Oct.30, 1992	*
********************************************************/	
void SetLeftTreeOp(T, Op)
tree T;
int Op;
{
tree 	p;

	p = T;
   	do
	  {
		SetNodeOp(p, Op);
		p = LeftChild(p);
	  }
	while ( !IsNull(p));
}


/********************************************************
*	This function sets the tree root and all its	*
*	right subtree root to be a NewOp node, used	*
*	only in construct a Procedure or function call	*
*	subtree with arguments				*
*	Added by Hui-Jung Chang	, Oct.30, 1992		*
********************************************************/	
void SetRightTreeOp(T, Op)
tree T;
int Op;
{
tree 	p;

	p = T;
   	do
	  {
		SetNodeOp(p, Op);
		p = RightChild(p);
	  }
	while ( !IsNull(p));
}


/****************************************************************
* 	This function sets the LeftChild of T to be NewC	*
****************************************************************/
void SetLeftChild(T, NewC)
tree T, NewC;
{
      if (NodeKind(T) != EXPRNode) 
		printf("SetLeftChild(): This node must be an EXPRNode!\n");
	else
		T->LeftC = NewC;
}
	
/****************************************************************
* 	This function sets the RightChild of T to be NewC	*
****************************************************************/
void SetRightChild(T, NewC)
tree T, NewC;
{
      if (NodeKind(T) != EXPRNode) 
		printf("SetRightChild(): This node must be an EXPRNode!\n");
	else
		T->RightC = NewC;
}

/*****************************************************************/
/*	This is syntax tree printer, "treelst" is the output file
	pointer.

   	call printtree with the root node pointer and the depth level
	(could be 0 if you do not want the root to be indent)

   	writing "getname()" and "getstring()" is your responsibility
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 */


extern FILE *treelst;

char *opnodenames [] =
   {
    "ProgramOp", "BodyOp", "DeclOp", "CommaOp", "ArrayTypeOp", "TypeIdOp",
    "BoundOp", "RecompOp",
    "ToOp", "DownToOp", "ConstantIdOp", "ProceOp", "FuncOp",
    "HeadOp", "RArgTypeOp", "VargTypeOp", "StmtOp", "IfElseOp",
    "LoopOp", "SpecOp", "RoutineCallOp", "AssignOp", "ReturnOp", 
    "AddOp", "SubOp", "MultOp", "DivOp",
    "LTOp", "GTOp", "EQOp", "NEOp", "LEOp", "GEOp", "AndOp", "OrOp", 
    "UnaryNegOp", "NotOp", "VarOp", "SelectOp", "IndexOp", "FieldOp",
    "SubrangeOp", "ExitOp", "ClassOp", "MethodOp", "ClassDefOp"
  };

static int crosses [162];

void indent (x)
 int x;
{
  register i; 

  for (i = 0; i < x; i++)
  {
    fprintf (treelst,"%s", crosses [i]? "| " : "  ");
  }
  fprintf (treelst,"%s", x ? "+-" : "R-");
  if (x)
    crosses [x] = (crosses [x] + 1) % 2;
}

void zerocrosses ()
{
  register i;
  for (i = 0; i < 162; i++)
    crosses [i] = 0;
}

extern char  strg_tbl[];

char* getname(int i)/*return ID name or String, i is the index of the string table, passed through yylval*/
{
  return( strg_tbl+i );/*return string table indexed at i*/
}

char* getstring(int i)
{
  return( strg_tbl+i );/*return string table indexed at i*/
}


void printtree (nd, depth)
  tree nd;
  int depth;
{
  int id, indx;

  if (!depth)
  {
    zerocrosses ();
    fprintf (treelst,"************* SYNTAX TREE PRINTOUT ***********\n\n");
  }
  if (IsNull (nd))
  {
    indent (depth);
    fprintf (treelst,"[DUMMYnode]\n");
    return;
  }
  if (NodeKind (nd) == EXPRNode)
    printtree (RightChild (nd), depth + 1);
  indent (depth); 
  switch (NodeKind (nd))
  {
    case IDNode:    
		    indx = IntVal(nd);
		    if (indx >= 0)
		    {
		      id = indx; /*GetAttr(indx, NAME_ATTR); */
		      fprintf (treelst,"[IDNode,%d,\"%s\"]\n", IntVal(nd),
                                                    getname(id));
		    }
		    else 
		      fprintf (treelst,"[IDNode,%d,\"%s\"]\n", indx, "err");
		    break;

    case STNode:
                    indx = IntVal(nd);
                    if (indx > 0)
                    {
                      id = indx; /* GetAttr(indx, NAME_ATTR); */
                      fprintf (treelst,"[STNode,%d,\"%s\"]\n", IntVal(nd),
                                                    getname(id));
                    }
                    else 
                      fprintf (treelst,"[IDNode,%d,\"%s\"]\n", indx, "err");
                    break;

    case INTEGERTNode:
                      fprintf (treelst,"[INTEGERTNode]\n");
                    break;

    case NUMNode:   fprintf (treelst,"[NUMNode,%d]\n", IntVal (nd));
		    break;

    case CHARNode:  if (isprint (IntVal (nd)))
		      fprintf (treelst,"[CHARNode,%d,\'%c\']\n",
					 IntVal (nd), IntVal (nd));
		    else
		      fprintf (treelst,"[CHARNode,%d,\'\\%o\']\n",
					 IntVal (nd), IntVal (nd));
		    break;

    case STRINGNode:fprintf (treelst,"[STRINGNode,%d,\"%s\"]\n", IntVal (nd),
							getstring(IntVal(nd)));
		    break;

    case EXPRNode:  fprintf (treelst,"[%s]\n", 
					opnodenames [NodeOp(nd) - ProgramOp]);
		    break;

    default:	    fprintf (treelst,"INVALID!!!\n");
		    break;
  }
  if (NodeKind (nd) == EXPRNode)
    printtree (LeftChild (nd), depth + 1);
}