initial commit
This commit is contained in:
23
src/analyze.h
Normal file
23
src/analyze.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/****************************************************/
|
||||
/* 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
|
||||
Reference in New Issue
Block a user