⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 optimize.h

📁 PL/0源码
💻 H
字号:
//////////////////////////////////////////////////////////////////////////////////  optimize.[h,cc] -- procedures for AST optimization////  Optimization is minimal.  We detect leaf procedures and procedures with//  no local vars.  Also, constant expressions are evaluated and some loop//  elimination is done in the form of hard coding constant conditions.//#ifndef OPTIMIZE_H#define OPTIMIZE_Hextern bool evaluate_consts;syntax_tree_t *optimize_syntax_tree(syntax_tree_t *node);//  Optimize the abstract syntax tree#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -