diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2012-03-05 00:17:30 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2012-03-05 00:17:30 (GMT) | 
| commit | 13bd8d546b2de76b1f5a1d758c9e476f7d859f39 (patch) | |
| tree | 3d1c7dc3343ad4d460a9245bd2bb138fada611b3 /src/analysis | |
| parent | aba1a14ba28f6df51b3be15648b6f55eea4a0e19 (diff) | |
Printed the string values of the Dex pool in the operand rendering.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@237 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis')
| -rw-r--r-- | src/analysis/disass/fetch.c | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/src/analysis/disass/fetch.c b/src/analysis/disass/fetch.c index 760363e..e487dd2 100644 --- a/src/analysis/disass/fetch.c +++ b/src/analysis/disass/fetch.c @@ -2,7 +2,7 @@  /* OpenIDA - Outil d'analyse de fichiers binaires   * fetch.c - récupération d'instructions à partir de binaire brut   * - * Copyright (C) 2010-2011 Cyrille Bagard + * Copyright (C) 2010-2012 Cyrille Bagard   *   *  This file is part of OpenIDA.   * @@ -48,6 +48,7 @@  GArchInstruction *disassemble_binary_parts(const GOpenidaBinary *binary, GBinPart **parts, size_t count, GtkExtStatusBar *statusbar, guint id)  {      GArchInstruction *result;               /* Liste d'instr. à renvoyer   */ +    GBinFormat *format;                     /* Format du fichier binaire   */      GArchProcessor *proc;                   /* Architecture du binaire     */      off_t bin_length;                       /* Taille des données à lire   */      bin_t *bin_data;                        /* Données binaires à lire     */ @@ -68,7 +69,8 @@ GArchInstruction *disassemble_binary_parts(const GOpenidaBinary *binary, GBinPar      result = NULL; -    proc = get_arch_processor_from_format(g_openida_binary_get_format(binary)); +    format = g_openida_binary_get_format(binary); +    proc = get_arch_processor_from_format(format);      bin_data = g_openida_binary_get_data(binary, &bin_length);      /* Préparation du suivi de la progression */ @@ -107,7 +109,7 @@ GArchInstruction *disassemble_binary_parts(const GOpenidaBinary *binary, GBinPar              addr = base + pos;              instr = g_arch_processor_decode_instruction(proc, context, &bin_data[start], -                                                        &pos, len, start, addr); +                                                        &pos, len, start, addr, format);              g_arch_instruction_add_to_list(&result, instr);  #ifdef DEBUG | 
