asm: reader: implement constpool reader interface

This commit is contained in:
2025-05-13 13:23:59 +01:00
parent 179d0dddaa
commit 197ba14a4d
3 changed files with 338 additions and 2 deletions

View File

@@ -15,4 +15,9 @@ struct ivy_asm_section_reader {
const struct ivy_asm_section_info *r_info;
};
struct ivy_asm_constpool_reader {
size_t r_nr_entries;
struct ivy_asm_section_reader *r_pool, *r_xdat;
};
#endif