diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2016-02-01 00:53:14 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2016-02-01 00:53:14 (GMT) | 
| commit | 7162a683b66b02c16b42a177600468a1ff56149d (patch) | |
| tree | 23d5119850d049f38182ce8b3b956a44233d8906 /src/arch/dalvik/opcodes/array.c | |
| parent | 792b330c1bbe573a591687d25e14d4cd1eccd3c6 (diff) | |
Defined all Dalvik instructions to get generated by d2c.
Diffstat (limited to 'src/arch/dalvik/opcodes/array.c')
| -rw-r--r-- | src/arch/dalvik/opcodes/array.c | 179 | 
1 files changed, 0 insertions, 179 deletions
| diff --git a/src/arch/dalvik/opcodes/array.c b/src/arch/dalvik/opcodes/array.c deleted file mode 100644 index efa40b7..0000000 --- a/src/arch/dalvik/opcodes/array.c +++ /dev/null @@ -1,179 +0,0 @@ - -/* Chrysalide - Outil d'analyse de fichiers binaires - * array.c - décodage de l'opération récupérant la longueur d'un tableau - * - * Copyright (C) 2010-2012 Cyrille Bagard - * - *  This file is part of Chrysalide. - * - *  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]                 * -*                end  = limite des données à analyser.                        * -*                addr = adresse virtuelle de l'instruction.                   * -*                proc = architecture ciblée par le désassemblage.             * -*                fmt  = format du fichier contenant le code.                  * -*                                                                             * -*  Description : Décode une instruction de type 'array-length'.               * -*                                                                             * -*  Retour      : Instruction mise en place ou NULL.                           * -*                                                                             * -*  Remarques   : -                                                            * -*                                                                             * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_array_length(const bin_t *data, off_t *pos, off_t end, vmpa_t addr, const GDalvikProcessor *proc, const GDexFormat *fmt) -{ -    GArchInstruction *result;               /* Instruction à retourner     */ -    SourceEndian endian;                    /* Boutisme lié au binaire     */ - -    result = g_dalvik_instruction_new(DOP_ARRAY_LENGTH); - -    endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - -    if (!dalvik_read_operands(result, fmt, data, pos, end, endian, DALVIK_OPT_12X)) -    { -        g_object_unref(G_OBJECT(result)); -        return NULL; -    } - -    dalvik_mark_first_operand_as_written(result); - -    return result; - -} - - -/****************************************************************************** -*                                                                             * -*  Paramètres  : data = flux de données à analyser.                           * -*                pos  = position courante dans ce flux. [OUT]                 * -*                end  = limite des données à analyser.                        * -*                addr = adresse virtuelle de l'instruction.                   * -*                proc = architecture ciblée par le désassemblage.             * -*                fmt  = format du fichier contenant le code.                  * -*                                                                             * -*  Description : Décode une instruction de type 'fill-array-data'.            * -*                                                                             * -*  Retour      : Instruction mise en place ou NULL.                           * -*                                                                             * -*  Remarques   : -                                                            * -*                                                                             * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_fill_array_data(const bin_t *data, off_t *pos, off_t end, vmpa_t addr, const GDalvikProcessor *proc, const GDexFormat *fmt) -{ -    GArchInstruction *result;               /* Instruction à retourner     */ -    SourceEndian endian;                    /* Boutisme lié au binaire     */ - -    result = g_dalvik_instruction_new(DOP_FILL_ARRAY_DATA); - -    endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - -    if (!dalvik_read_operands(result, fmt, data, pos, end, endian, DALVIK_OPT_31T)) -    { -        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]                 * -*                end  = limite des données à analyser.                        * -*                addr = adresse virtuelle de l'instruction.                   * -*                proc = architecture ciblée par le désassemblage.             * -*                fmt  = format du fichier contenant le code.                  * -*                                                                             * -*  Description : Décode une instruction de type 'filled-new-array'.           * -*                                                                             * -*  Retour      : Instruction mise en place ou NULL.                           * -*                                                                             * -*  Remarques   : -                                                            * -*                                                                             * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_filled_new_array(const bin_t *data, off_t *pos, off_t end, vmpa_t addr, const GDalvikProcessor *proc, const GDexFormat *fmt) -{ -    GArchInstruction *result;               /* Instruction à retourner     */ -    SourceEndian endian;                    /* Boutisme lié au binaire     */ - -    result = g_dalvik_instruction_new(DOP_FILLED_NEW_ARRAY); - -    endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - -    if (!dalvik_read_operands(result, fmt, data, pos, end, endian, DALVIK_OPT_35C | DALVIK_OP_POOL(DPT_TYPE))) -    { -        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]                 * -*                end  = limite des données à analyser.                        * -*                addr = adresse virtuelle de l'instruction.                   * -*                proc = architecture ciblée par le désassemblage.             * -*                fmt  = format du fichier contenant le code.                  * -*                                                                             * -*  Description : Décode une instruction de type 'filled-new-array/range'.     * -*                                                                             * -*  Retour      : Instruction mise en place ou NULL.                           * -*                                                                             * -*  Remarques   : -                                                            * -*                                                                             * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_filled_new_array_range(const bin_t *data, off_t *pos, off_t end, vmpa_t addr, const GDalvikProcessor *proc, const GDexFormat *fmt) -{ -    GArchInstruction *result;               /* Instruction à retourner     */ -    SourceEndian endian;                    /* Boutisme lié au binaire     */ - -    result = g_dalvik_instruction_new(DOP_FILLED_NEW_ARRAY_RANGE); - -    endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - -    if (!dalvik_read_operands(result, fmt, data, pos, end, endian, DALVIK_OPT_3RC | DALVIK_OP_POOL(DPT_TYPE))) -    { -        g_object_unref(G_OBJECT(result)); -        return NULL; -    } - -    return result; - -} | 
