summaryrefslogtreecommitdiff
path: root/src/format/format.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-07-23 19:07:29 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-07-23 19:07:29 (GMT)
commit8b35a66464636d0c46237af7490a6ca6866ecc4d (patch)
tree92199b36e3af00eb4c175a80c20b9b14511a6a45 /src/format/format.c
parent8b2189a819c7a761cfdb97d9e3382ea963f225fb (diff)
Improved decompilation of Dalvik bytecode.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@252 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/format.c')
-rw-r--r--src/format/format.c24
1 files changed, 8 insertions, 16 deletions
diff --git a/src/format/format.c b/src/format/format.c
index 1a52e1e..930d8db 100644
--- a/src/format/format.c
+++ b/src/format/format.c
@@ -288,6 +288,7 @@ GDecInstruction *g_binary_format_decompile_routine(const GBinFormat *format, GBi
vmpa_t max; /* Première adresse à écarter */
GDecContext *ctx; /* Contexte de décompilation */
GArchInstruction *iter; /* Boucle de parcours */
+ GDecInstruction *first; /* Première décompilation */
GDecInstruction *dinstr; /* Nouvelle décompilation */
result = NULL;
@@ -296,10 +297,6 @@ GDecInstruction *g_binary_format_decompile_routine(const GBinFormat *format, GBi
max = g_binary_routine_get_address(routine)
+ g_binary_routine_get_size(routine);
- printf("max :: 0x%08llx\n", max);
-
- //max = 0x00000a98ll; /* FIXME !!!! */
-
ctx = g_dec_context_new();
g_object_set_data(G_OBJECT(ctx), "format", format);
g_dec_context_set_max_address(ctx, max);
@@ -308,25 +305,20 @@ GDecInstruction *g_binary_format_decompile_routine(const GBinFormat *format, GBi
iter != NULL;
iter = g_arch_instruction_get_next_iter(instr, iter, max))
{
+ g_arch_instruction_decompile(iter, ctx);
+ }
+ first = g_dec_context_get_decomp_instrs(ctx);
- printf("DECOMP isntr :: %p\n", iter);
-
-
- dinstr = g_arch_instruction_decompile(iter, ctx);
- if (dinstr == NULL) continue;
-
- printf(" -> done :: %p\n", dinstr);
-
+ for (dinstr = first;
+ dinstr != NULL;
+ dinstr = g_dec_instruction_get_next_iter(first, dinstr))
+ {
if (result == NULL) result = g_expr_block_new(dinstr);
else g_expr_block_add_item(G_EXPR_BLOCK(result), dinstr);
}
-
-
-
-
g_binary_routine_set_decomp_instructions(routine, result);
return result;