summaryrefslogtreecommitdiff
path: root/src/format/executable-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/executable-int.h')
-rw-r--r--src/format/executable-int.h48
1 files changed, 10 insertions, 38 deletions
diff --git a/src/format/executable-int.h b/src/format/executable-int.h
index 73b647c..1ca1bdb 100644
--- a/src/format/executable-int.h
+++ b/src/format/executable-int.h
@@ -35,12 +35,11 @@
/* Indique le type d'architecture visée par le format. */
typedef char * (* get_target_machine_fc) (const GExecutableFormat *);
-#if 0
/* Fournit l'adresse principale associée à un format. */
typedef bool (* get_main_addr_fc) (GExecutableFormat *, vmpa2t *);
/* Etend la définition des portions au sein d'un binaire. */
-typedef void (* refine_portions_fc) (GExecutableFormat *);
+typedef bool (* refine_portions_fc) (GExecutableFormat *);
/* Fournit l'emplacement correspondant à une position physique. */
typedef bool (* translate_phys_fc) (GExecutableFormat *, phys_t, vmpa2t *);
@@ -48,28 +47,13 @@ typedef bool (* translate_phys_fc) (GExecutableFormat *, phys_t, vmpa2t *);
/* Fournit l'emplacement correspondant à une adresse virtuelle. */
typedef bool (* translate_virt_fc) (GExecutableFormat *, virt_t, vmpa2t *);
-/* Fournit l'emplacement d'une section donnée. */
-typedef bool (* get_range_by_name_fc) (const GExecutableFormat *, const char *, mrange_t *);
-
-#endif
-
/* Format d'exécutable générique (instance) */
struct _GExecutableFormat
{
- GProgramFormat parent; /* A laisser en premier */
-
-#if 0
+ GProgramFormat parent; /* A laisser en premier */
- GDbgFormat **debugs; /* Informations de débogage */
- size_t debugs_count; /* Nombre de ces informations */
-
- GBinPortion **user_portions; /* Couches de morceaux binaires*/
- size_t user_count; /* Nombre de ces portions */
- GBinPortion *portions; /* Couches de morceaux binaires*/
- GMutex mutex; /* Accès à l'arborescence */
-
-#endif
+ GBinaryPortion *portions; /* Couches de morceaux binaires*/
};
@@ -80,41 +64,29 @@ struct _GExecutableFormatClass
get_target_machine_fc get_machine; /* Architecture ciblée */
-#if 0
get_main_addr_fc get_main_addr; /* Obtention d'adresse première*/
refine_portions_fc refine_portions; /* Décrit les portions binaires*/
translate_phys_fc translate_phys; /* Correspondance phys -> vmpa */
translate_virt_fc translate_virt; /* Correspondance virt -> vmpa */
- get_range_by_name_fc get_range_by_name; /* Emplacement de sections */
-
-#endif
-
};
-#if 0
-
-/* Crée les portions potentiellement utiles aux traductions. */
-void g_executable_format_setup_portions(GExecutableFormat *, GtkStatusStack *);
-
-/* Effectue les ultimes opérations de chargement d'un binaire. */
-bool g_executable_format_complete_loading(GExecutableFormat *, wgroup_id_t, GtkStatusStack *);
+/* Met en place un nouveau contenu binaire à analyser. */
+bool g_executable_format_create(GExecutableFormat *, GBinContent *);
/* Fournit l'emplacement correspondant à une position physique. */
-bool g_exe_format_without_virt_translate_offset_into_vmpa(const GExecutableFormat *, phys_t, vmpa2t *);
-
-/* Fournit l'emplacement correspondant à une adresse virtuelle. */
-bool g_exe_format_without_virt_translate_address_into_vmpa(const GExecutableFormat *, virt_t, vmpa2t *);
+bool g_executable_format_translate_offset_into_vmpa_without_virt(const GExecutableFormat *, phys_t, vmpa2t *);
/* Fournit l'emplacement correspondant à une position physique. */
-bool g_exe_format_translate_offset_into_vmpa_using_portions(GExecutableFormat *, phys_t, vmpa2t *);
+bool g_executable_format_translate_offset_into_vmpa_with_portions(GExecutableFormat *, phys_t, vmpa2t *);
/* Fournit l'emplacement correspondant à une adresse virtuelle. */
-bool g_exe_format_translate_address_into_vmpa_using_portions(GExecutableFormat *, virt_t, vmpa2t *);
+bool g_executable_format_translate_address_into_vmpa_without_virt(const GExecutableFormat *, virt_t, vmpa2t *);
-#endif
+/* Fournit l'emplacement correspondant à une adresse virtuelle. */
+bool g_executable_format_translate_address_into_vmpa_with_portions(GExecutableFormat *, virt_t, vmpa2t *);