diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2011-12-26 16:16:11 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2011-12-26 16:16:11 (GMT) |
commit | 8a12f3685fab7c975c307bbc7dc5e721616be6a3 (patch) | |
tree | 5be56984fb1fb8b40e800748ccf3e64cd199c35e /src/arch/dalvik/op_mul.c | |
parent | 4b2eec0832a6a9ed5b1d1344f7d32faa27069932 (diff) |
Reorganized the Dalvik architecture.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@219 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/dalvik/op_mul.c')
-rw-r--r-- | src/arch/dalvik/op_mul.c | 209 |
1 files changed, 0 insertions, 209 deletions
diff --git a/src/arch/dalvik/op_mul.c b/src/arch/dalvik/op_mul.c deleted file mode 100644 index ffe6009..0000000 --- a/src/arch/dalvik/op_mul.c +++ /dev/null @@ -1,209 +0,0 @@ - -/* OpenIDA - Outil d'analyse de fichiers binaires - * op_mul.c - décodage des opérations de multiplications - * - * Copyright (C) 2010 Cyrille Bagard - * - * This file is part of OpenIDA. - * - * OpenIDA is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * OpenIDA is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Foobar. If not, see <http://www.gnu.org/licenses/>. - */ - - -#include "opcodes.h" - - -#include "instruction.h" -#include "operand.h" - - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'mul-double/2addr'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_mul_double_2addr(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_MUL_DOUBLE_2ADDR); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_12X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'mul-int'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_mul_int(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_MUL_INT); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_23X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'mul-int/2addr'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_mul_int_2addr(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_MUL_INT_2ADDR); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_12X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'mul-int/lit8'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_mul_int_lit8(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_MUL_INT_LIT8); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_22B)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'mul-int/lit16'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_mul_int_lit16(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_MUL_INT_LIT16); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_22S)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} |