summaryrefslogtreecommitdiff
path: root/src/decomp/context.h
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/decomp/context.h
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/decomp/context.h')
-rw-r--r--src/decomp/context.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/decomp/context.h b/src/decomp/context.h
index 926a372..b7dd445 100644
--- a/src/decomp/context.h
+++ b/src/decomp/context.h
@@ -61,6 +61,12 @@ vmpa_t g_dec_context_get_max_address(const GDecContext *);
/* Définit l'adresse où la décompilation n'est plus souhaitée. */
void g_dec_context_set_max_address(GDecContext *, vmpa_t);
+/* Fournit le premier élément de la liste des instructions. */
+GDecInstruction *g_dec_context_get_decomp_instrs(const GDecContext *tx);
+
+/* Met à jour le premier élément de la liste des instructions. */
+void g_dec_context_set_decomp_instrs(GDecContext *, GDecInstruction *);
+
/* Convertit un registre machine en un pseudo-registre. */
GDecInstruction *g_dec_context_convert_register(GDecContext *, gpointer);