feat(ast): 将AST上下文重构为模块并添加字符串池支持
- 将scc_ast_ctx重命名为scc_ast_module以更好地反映其功能 - 添加scc_strpool_t用于统一管理AST节点名称字符串的生命周期 - 实现scc_ast_module_intern函数用于字符串驻留 - 更新所有相关的初始化、销毁和访问函数命名 - 修改内存分配宏以使用新的模块结构 refactor(parser): 更新解析器以使用AST模块和字符串池 - 将解析器中的ast_ctx字段替换为ast_module - 在创建AST节点时使用新的ast_module参数 - 使用scc_ast_module_intern函数处理标识符和字符串字面量 - 确保所有字符串都被正确驻留到模块的字符串池中 refactor(sema): 更新语义分析器使用AST模块 - 将sema_ctx中的ast_ctx字段替换为ast_module - 更新语义分析器初始化函数参数 refactor(ast2ir): 更新AST到IR转换器使用AST模块 - 将ast_ctx字段替换为ast_module - 更新上下文初始化函数参数和实现 fix(cfg): 修复CFG模块中的符号查找错误 - 修正scc_cfg_module_unsafe_get_symbol函数中的边界检查条件 perf(ir): 完善各IR层模块的内存清理机制 - 为HIR模块添加函数和基本块元数据的释放逻辑 - 为MIR和LIR模块完善完整的资源清理和内存释放 - 确保所有分配的元数据结构都能被正确释放 chore(deps): 添加scc_utils依赖到AST库 - 在libs/ast/cbuild.toml中添加对scc_utils的依赖
This commit is contained in:
@@ -14,7 +14,7 @@ typedef struct scc_parser {
|
||||
scc_lexer_tok_ring_t *ring;
|
||||
usize checkpoint;
|
||||
|
||||
scc_ast_ctx_t *ast_ctx;
|
||||
scc_ast_module_t *ast_module;
|
||||
scc_sema_ctx_t *sema_ctx;
|
||||
int owned_sema;
|
||||
scc_ast_translation_unit_t *translation_unit;
|
||||
@@ -28,7 +28,7 @@ typedef struct scc_parser {
|
||||
* @param callbacks 语义分析回调(可为 nullptr)
|
||||
*/
|
||||
void scc_parser_init(scc_parser_t *parser, scc_lexer_tok_ring_t *tok_ring,
|
||||
scc_ast_ctx_t *ast_ctx, scc_sema_ctx_t *callbacks);
|
||||
scc_ast_module_t *ast_module, scc_sema_ctx_t *callbacks);
|
||||
|
||||
/**
|
||||
* @brief 销毁解析器
|
||||
|
||||
@@ -29,7 +29,7 @@ struct scc_sema_ctx {
|
||||
scc_sema_callback_t on_expr;
|
||||
scc_sema_callback_t on_type;
|
||||
scc_sema_got_type_t got_type;
|
||||
scc_ast_ctx_t *ast_ctx;
|
||||
scc_ast_module_t *ast_module;
|
||||
|
||||
scc_ast_stmt_vec_t break_stack;
|
||||
scc_ast_stmt_vec_t continue_stack;
|
||||
@@ -37,7 +37,7 @@ struct scc_sema_ctx {
|
||||
void *context;
|
||||
};
|
||||
|
||||
void scc_sema_init(scc_sema_ctx_t *sema_ctx, scc_ast_ctx_t *ast_ctx);
|
||||
void scc_sema_init(scc_sema_ctx_t *sema_ctx, scc_ast_module_t *ast_module);
|
||||
void scc_sema_drop(scc_sema_ctx_t *sema_ctx);
|
||||
|
||||
#endif /* __SCC_SEMA_H__ */
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
#define __SCC_SEMA_SYMTAB_H__
|
||||
|
||||
#include <scc_ast.h>
|
||||
#include <scc_strpool.h>
|
||||
#include <scc_utils.h>
|
||||
|
||||
typedef struct scc_parser_scope {
|
||||
@@ -12,6 +13,7 @@ typedef struct scc_parser_scope {
|
||||
typedef struct {
|
||||
scc_sema_scope_t root_scope;
|
||||
scc_sema_scope_t *current_scope;
|
||||
scc_strpool_t name_pool; /* 拥有符号名(生成的标签名等)的生命周期 */
|
||||
} scc_sema_symtab_t;
|
||||
|
||||
void scc_sema_symtab_init(scc_sema_symtab_t *symtab);
|
||||
|
||||
Reference in New Issue
Block a user