diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/instruction-int.h | 8 | ||||
-rw-r--r-- | src/arch/instruction.c | 88 | ||||
-rw-r--r-- | src/arch/instruction.h | 14 |
3 files changed, 110 insertions, 0 deletions
diff --git a/src/arch/instruction-int.h b/src/arch/instruction-int.h index 4ecb173..45a8b2d 100644 --- a/src/arch/instruction-int.h +++ b/src/arch/instruction-int.h @@ -28,6 +28,7 @@ #include "archbase.h" #include "instruction.h" #include "../analysis/exporter-int.h" +#include "../common/dllist.h" @@ -46,6 +47,8 @@ struct _GArchInstruction { GContentExporter parent; /* A laisser en premier */ + DL_LIST_ITEM(flow); /* Maillon de liste chaînée */ + off_t offset; /* Position physique de départ */ off_t length; /* Taille de l'instruction */ @@ -69,5 +72,10 @@ struct _GArchInstructionClass }; +#define ainstr_list_next_iter(iter, head) dl_list_next_iter(iter, head, GArchInstruction, flow) +#define ainstr_list_add_tail(new, head) dl_list_add_tail(new, head, GArchInstruction, flow) +#define ainstr_list_for_each(pos, head) dl_list_for_each(pos, head, GArchInstruction, flow) + + #endif /* _ARCH_INSTRUCTION_INT_H */ diff --git a/src/arch/instruction.c b/src/arch/instruction.c index 3bbd15c..b642219 100644 --- a/src/arch/instruction.c +++ b/src/arch/instruction.c @@ -89,6 +89,8 @@ static void g_arch_instruction_init(GArchInstruction *instr) parent->add_text = (add_text_fc)g_arch_instruction_add_text; parent->export_buffer = (export_buffer_fc)g_arch_instruction_to_buffer; + DL_LIST_ITEM_INIT(&instr->flow); + } @@ -459,3 +461,89 @@ bool g_arch_instruction_is_return(const GArchInstruction *instr) return instr->is_return(instr); } + + + +/* ---------------------------------------------------------------------------------- */ +/* TRAITEMENT DES INSTRUCTIONS PAR ENSEMBLE */ +/* ---------------------------------------------------------------------------------- */ + + +/****************************************************************************** +* * +* Paramètres : list = liste d'instructions à compléter, ou NULL. * +* instr = nouvelle instruction à intégrer à l'ensemble. * +* * +* Description : Ajoute une instruction à un ensemble existant. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void g_arch_instruction_add_to_list(GArchInstruction **list, GArchInstruction *instr) +{ + ainstr_list_add_tail(instr, list); + +} + + +/****************************************************************************** +* * +* Paramètres : list = liste d'instructions à consulter. * +* : iter = position actuelle dans la liste. * +* max = adresse marquant la limite (exclue) du parcours. * +* * +* Description : Fournit l'élement suivant un autre pour un parcours. * +* * +* Retour : Elément suivant ou NULL si aucun. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GArchInstruction *g_arch_instruction_get_next_iter(GArchInstruction *list, const GArchInstruction *iter, vmpa_t max) +{ + GArchInstruction *result; /* Elément suivant à renvoyer */ + + result = ainstr_list_next_iter(iter, list); + + if (result != NULL && result->address >= max) + result = NULL; + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : list = liste de lignes à parcourir. * +* addr = position en mémoire ou physique à chercher. * +* strict = définit la considération à porter à l'adresse. * +* * +* Description : Recherche une instruction d'après son adresse. * +* * +* Retour : Instruction trouvée à l'adresse donnée, NULL si aucune. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GArchInstruction *g_arch_instruction_find_by_address(GArchInstruction *list, vmpa_t addr, bool strict) +{ + GArchInstruction *result; /* Trouvaille à retourner */ + + ainstr_list_for_each(result, list) + { + if (strict && result->offset == addr) break; + + else if (!strict && result->offset < addr + && addr < (result->offset + result->length)) break; + + } + + return result; + +} diff --git a/src/arch/instruction.h b/src/arch/instruction.h index 2314a56..a9e2bd2 100644 --- a/src/arch/instruction.h +++ b/src/arch/instruction.h @@ -96,4 +96,18 @@ bool g_arch_instruction_is_return(const GArchInstruction *instr); +/* -------------------- TRAITEMENT DES INSTRUCTIONS PAR ENSEMBLE -------------------- */ + + +/* Ajoute une instruction à un ensemble existant. */ +void g_arch_instruction_add_to_list(GArchInstruction **, GArchInstruction *); + +/* Fournit l'élement suivant un autre pour un parcours. */ +GArchInstruction *g_arch_instruction_get_next_iter(GArchInstruction *, const GArchInstruction *, vmpa_t); + +/* Recherche une instruction d'après son adresse. */ +GArchInstruction *g_arch_instruction_find_by_address(GArchInstruction *, vmpa_t, bool); + + + #endif /* _ARCH_INSTRUCTION_H */ |