24 lines
653 B
C
24 lines
653 B
C
/****************************************************/
|
|
/* File: analyze.h */
|
|
/* Semantic analyzer interface for TINY compiler */
|
|
/* Compiler Construction: Principles and Practice */
|
|
/* Kenneth C. Louden */
|
|
/****************************************************/
|
|
|
|
#ifndef _ANALYZE_H_
|
|
#define _ANALYZE_H_
|
|
|
|
#include "globals.h"
|
|
|
|
/* Function buildSymtab constructs the symbol
|
|
* table by preorder traversal of the syntax tree
|
|
*/
|
|
void buildSymtab(TreeNode *);
|
|
|
|
/* Procedure typeCheck performs type checking
|
|
* by a postorder syntax tree traversal
|
|
*/
|
|
void typeCheck(TreeNode *);
|
|
|
|
#endif
|