diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/dwarf/symbols.c | 2 | ||||
-rw-r--r-- | src/format/format-int.h | 16 | ||||
-rw-r--r-- | src/format/format.c | 71 |
3 files changed, 86 insertions, 3 deletions
diff --git a/src/format/dwarf/symbols.c b/src/format/dwarf/symbols.c index f0a7300..3ddfb96 100644 --- a/src/format/dwarf/symbols.c +++ b/src/format/dwarf/symbols.c @@ -110,7 +110,7 @@ static bool load_routine_as_symbol_from_dwarf(GDwarfFormat *format, const dw_die /* Intégration en bonne et due forme */ - routine = try_to_demangle_routine(name); + routine = g_binary_format_decode_routine(G_BIN_FORMAT(format), name); symbol = G_BIN_SYMBOL(routine); g_binary_symbol_set_range(symbol, &range); diff --git a/src/format/format-int.h b/src/format/format-int.h index 354e616..6c83590 100644 --- a/src/format/format-int.h +++ b/src/format/format-int.h @@ -78,8 +78,6 @@ struct _GBinFormat GBinContent *content; /* Contenu binaire à étudier */ - GCompDemangler *demangler; /* Décodage de noms privilégié */ - virt_t *entry_points; /* Points d'entrée du code */ size_t ep_count; /* Nombre de ces points */ @@ -91,6 +89,8 @@ struct _GBinFormat GPreloadInfo *info; /* Préchargements du format */ + GCompDemangler *demangler; /* Décodage de noms privilégié */ + GBinSymbol **symbols; /* Liste des symboles trouvés */ size_t sym_count; /* Quantité de ces symboles */ unsigned int sym_stamp; /* Marque de suivi des modifs */ @@ -138,4 +138,16 @@ void g_binary_format_set_content(GBinFormat *, GBinContent *); + +/* ------------------------------ DECODAGE DE SYMBOLES ------------------------------ */ + + +/* Décode une chaîne de caractères donnée en type. */ +GDataType *g_binary_format_decode_type(const GBinFormat *, const char *); + +/* Décode une chaîne de caractères donnée en routine. */ +GBinRoutine *g_binary_format_decode_routine(const GBinFormat *, const char *); + + + #endif /* _FORMAT_FORMAT_INT_H */ diff --git a/src/format/format.c b/src/format/format.c index 439bd3e..5ff08e6 100644 --- a/src/format/format.c +++ b/src/format/format.c @@ -477,6 +477,77 @@ void g_binary_format_complete_analysis(GBinFormat *format, wgroup_id_t gid, GtkS /* ---------------------------------------------------------------------------------- */ +/* DECODAGE DE SYMBOLES */ +/* ---------------------------------------------------------------------------------- */ + + +/****************************************************************************** +* * +* Paramètres : format = format binaire à consulter pour l'opération. * +* desc = chaîne de caractères à décoder. * +* * +* Description : Décode une chaîne de caractères donnée en type. * +* * +* Retour : Instance obtenue ou NULL en cas d'échec. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GDataType *g_binary_format_decode_type(const GBinFormat *format, const char *desc) +{ + GDataType *result; /* Construction à remonter */ + GCompDemangler *demangler; /* Accès plus lisible */ + + demangler = G_BIN_FORMAT(format)->demangler; + + if (demangler != NULL) + result = g_compiler_demangler_decode_type(demangler, desc); + else + result = NULL; + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : format = format binaire à consulter pour l'opération. * +* desc = chaîne de caractères à décoder. * +* * +* Description : Décode une chaîne de caractères donnée en routine. * +* * +* Retour : Instance obtenue ou NULL en cas d'échec. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GBinRoutine *g_binary_format_decode_routine(const GBinFormat *format, const char *desc) +{ + GBinRoutine *result; /* Construction à remonter */ + GCompDemangler *demangler; /* Accès plus lisible */ + + demangler = G_BIN_FORMAT(format)->demangler; + + if (demangler != NULL) + result = g_compiler_demangler_decode_routine(demangler, desc); + else + result = NULL; + + if (result == NULL) + { + result = g_binary_routine_new(); + g_binary_routine_set_name(result, strdup(desc)); + } + + return result; + +} + + +/* ---------------------------------------------------------------------------------- */ /* RASSEMBLEMENT ET GESTION DE SYMBOLES */ /* ---------------------------------------------------------------------------------- */ |