> compile NEMU

ysyx_22040000 李心杨
Linux calcite 6.6.19 #1-NixOS SMP PREEMPT_DYNAMIC Fri Mar  1 12:35:11 UTC 2024 x86_64 GNU/Linux
 14:57:04  up   2:03,  2 users,  load average: 0.46, 0.55, 0.63
This commit is contained in:
tracer-ysyx 2024-03-20 14:57:04 +08:00 committed by xinyangli
parent 3cc2e29178
commit a9e03f6461

View file

@ -61,8 +61,6 @@ void init_elf(const char *path) {
f->len = sym[j].st_size; f->len = sym[j].st_size;
f->name = func; f->name = func;
++func_table_len; ++func_table_len;
// puts(func);
printf("%s: 0x%x - 0x%x\n", f->name, f->start, f->start + f->len);
if(func_table_len >= func_table_size) { if(func_table_len >= func_table_size) {
Assert(func_table_size * 2 > func_table_size, "Function table exceed memory limit"); Assert(func_table_size * 2 > func_table_size, "Function table exceed memory limit");
func_table_size *= 2; func_table_size *= 2;
@ -71,6 +69,11 @@ void init_elf(const char *path) {
} }
} }
qsort(func_table, func_table_len, sizeof(func_t), cmp_func_t); qsort(func_table, func_table_len, sizeof(func_t), cmp_func_t);
for(int i = 0; i < func_table_len; i++) {
func_t *f = &func_table[func_table_len];
// puts(func);
printf("%s: 0x%x - 0x%x\n", f->name, f->start, f->start + f->len);
}
success = true; success = true;
failed: failed:
for(int i = 0; i < func_table_len; i++) { for(int i = 0; i < func_table_len; i++) {