- 统一包名格式化,添加空格对齐 - 将依赖项从ir和lir重命名为hir,移除lir注释 - 为ast2ir模块添加正确的包名称"scc_ast2ir" - 更新依赖引用路径指向新的HIR库结构 - 移除注释掉的ir2mcode和sccf2target依赖项 refactor(ast2ir): 迁移到HIR中间表示替换IR表示 - 更新头文件包含,使用hir_builder.h替代ir_builder.h - 修改上下文结构体,将scc_ir_builder_t替换为scc_hir_builder_t - 更新函数签名,将参数类型从scc_ir_*转换为scc_hir_* - 调整返回值类型,将scc_ir_value_ref_t和scc_ir_type_ref_t 分别替换为scc_hir_value_ref_t和scc_hir_type_ref_t - 重新排列头文件包含顺序以满足依赖关系
49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
#include <ap.h>
|
|
|
|
static void *scc_ap_alloc(size_t size) {
|
|
void *p = SCC_AP_MALLOC(size);
|
|
SCC_AP_ASSERT(p != NULL);
|
|
return p;
|
|
}
|
|
|
|
/* 重新分配内存 */
|
|
static void *scc_ap_realloc_data(void *old, size_t new_size) {
|
|
void *p = SCC_AP_REALLOC(old, new_size);
|
|
SCC_AP_ASSERT(p != NULL);
|
|
return p;
|
|
}
|
|
|
|
void scc_ap_drop(scc_ap_t *ap) {
|
|
SCC_AP_ASSERT(ap);
|
|
// SCC_AP_FREE(ap->data);
|
|
scc_ap_init(ap);
|
|
}
|
|
|
|
void scc_ap_with_bits(scc_ap_t *ap, int bits) {}
|
|
|
|
void scc_ap_from_string(scc_ap_t *ap, const char *str, int len, int base) {
|
|
SCC_AP_ASSERT(base == 10);
|
|
SCC_AP_ASSERT(ap && str);
|
|
if (len == 0) {
|
|
scc_ap_set_int(ap, 0);
|
|
}
|
|
// FIXME
|
|
int int_lit = 0;
|
|
for (int i = 0; i < len; i += 1) {
|
|
int_lit = int_lit * 10 + (str[i] - '0');
|
|
}
|
|
scc_ap_set_int(ap, int_lit);
|
|
}
|
|
|
|
void scc_ap_set_digit(scc_ap_t *ap, scc_ap_digit digit) {}
|
|
|
|
void scc_ap_add_impl(scc_ap_t *to, const scc_ap_t *from_a,
|
|
const scc_ap_t *from_b) {}
|
|
|
|
void scc_ap_add(scc_ap_t *to, const scc_ap_t *from_a, const scc_ap_t *from_b) {}
|
|
|
|
void scc_ap_sub(scc_ap_t *to, const scc_ap_t *from_a, const scc_ap_t *from_b) {}
|
|
|
|
typedef void (*ap_dump_fn)(const char ch, void *user_data);
|
|
int scc_ap_dump(scc_ap_t *ap, ap_dump_fn dump_fn, void *user_data) { return 0; }
|