diff options
Diffstat (limited to 'src/arch/processor.h')
-rw-r--r-- | src/arch/processor.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/arch/processor.h b/src/arch/processor.h index f7d474a..45b9012 100644 --- a/src/arch/processor.h +++ b/src/arch/processor.h @@ -81,15 +81,25 @@ GArchInstruction *g_arch_processor_disassemble(const GArchProcessor *, GProcCont /* ------------------ MANIPULATIONS DES INSTRUCTIONS DESASSEMBLEES ------------------ */ +/* Couverture d'un groupe d'instructions */ +typedef struct _instr_coverage instr_coverage; + + /* Note les instructions désassemblées avec une architecture. */ void g_arch_processor_set_disassembled_instructions(GArchProcessor *, GArchInstruction *); /* Fournit les instructions désassemblées pour une architecture. */ GArchInstruction *g_arch_processor_get_disassembled_instructions(const GArchProcessor *); +/* Recherche un groupe d'instruction d'après son adresse. */ +const instr_coverage *g_arch_processor_find_coverage_by_address(const GArchProcessor *, const vmpa2t *); + /* Recherche une instruction d'après son adresse. */ GArchInstruction *g_arch_processor_find_instr_by_address(const GArchProcessor *, const vmpa2t *); +/* Recherche rapidement une instruction d'après son adresse. */ +GArchInstruction *g_arch_processor_find_covered_instr_by_address(const GArchProcessor *, const instr_coverage *, const vmpa2t *); + /* Fournit l'instruction qui en précède une autre. */ GArchInstruction *g_arch_processor_get_prev_instr(const GArchProcessor *, const GArchInstruction *); |