summaryrefslogtreecommitdiff
path: root/src/arch/jvm
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-05-17 22:59:55 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-05-17 22:59:55 (GMT)
commit4d0ff0c23862c242d533d9b2d34e8812ef99ad61 (patch)
tree3b8504b8d3946a8bc9a702b819138ab1e5501be6 /src/arch/jvm
parent96cb6971ee3ca529958b8cb1e8e55a6eb4e60eae (diff)
Used only the new format of processor/instructions/operands for x86.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@64 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/jvm')
-rw-r--r--src/arch/jvm/instruction.c10
-rw-r--r--src/arch/jvm/instruction.h2
-rw-r--r--src/arch/jvm/operand.c12
-rw-r--r--src/arch/jvm/processor.c12
4 files changed, 18 insertions, 18 deletions
diff --git a/src/arch/jvm/instruction.c b/src/arch/jvm/instruction.c
index 7748624..9ada8f0 100644
--- a/src/arch/jvm/instruction.c
+++ b/src/arch/jvm/instruction.c
@@ -238,7 +238,7 @@ GArchInstruction *g_jvm_instruction_new(JvmOpcodes type)
/******************************************************************************
* *
* Paramètres : data = flux de données à analyser. *
-* pos = position courante dans ce flux. [OUT] *
+* pos = position courante dans ce flux. *
* len = taille totale des données à analyser. *
* wide = étendue de la future instruction. [OUT] *
* care = la lecture de l'instr. veut-elle les opcodes ? [OUT] *
@@ -251,16 +251,16 @@ GArchInstruction *g_jvm_instruction_new(JvmOpcodes type)
* *
******************************************************************************/
-JvmOpcodes jvm_guess_next_instruction(const bin_t *data, off_t *pos, off_t len, bool *wide, bool *care)
+JvmOpcodes jvm_guess_next_instruction(const bin_t *data, off_t pos, off_t len, bool *wide, bool *care)
{
JvmOpcodes result; /* Identifiant à retourner */
bin_t opcode; /* Opcode à trouver */
- *wide = (data[*pos] == 0xc4);
+ *wide = (data[pos] == 0xc4);
- if (*wide && (*pos + 1) == len) return JOP_COUNT;
+ if (*wide && (pos + 1) == len) return JOP_COUNT;
- opcode = data[*pos + (*wide ? 1 : 0)];
+ opcode = data[pos + (*wide ? 1 : 0)];
for (result = 0; result < JOP_COUNT; result++)
{
diff --git a/src/arch/jvm/instruction.h b/src/arch/jvm/instruction.h
index 36f2230..9387680 100644
--- a/src/arch/jvm/instruction.h
+++ b/src/arch/jvm/instruction.h
@@ -142,7 +142,7 @@ GArchInstruction *g_jvm_instruction_new(JvmOpcodes);
/* Recherche l'identifiant de la prochaine instruction. */
-JvmOpcodes jvm_guess_next_instruction(const bin_t *, off_t *, off_t, bool *, bool *);
+JvmOpcodes jvm_guess_next_instruction(const bin_t *, off_t, off_t, bool *, bool *);
diff --git a/src/arch/jvm/operand.c b/src/arch/jvm/operand.c
index 7e9b08f..da95101 100644
--- a/src/arch/jvm/operand.c
+++ b/src/arch/jvm/operand.c
@@ -123,7 +123,7 @@ static void g_jvm_operand_class_init(GJvmOperandClass *klass)
/******************************************************************************
* *
-* Paramètres : proc = instance à initialiser. *
+* Paramètres : operand = instance à initialiser. *
* *
* Description : Initialise une instance d'opérande de base pour la JVM. *
* *
@@ -133,7 +133,7 @@ static void g_jvm_operand_class_init(GJvmOperandClass *klass)
* *
******************************************************************************/
-static void g_jvm_operand_init(GJvmOperand *proc)
+static void g_jvm_operand_init(GJvmOperand *operand)
{
}
@@ -197,10 +197,10 @@ static void g_jvm_ref_operand_init(GJvmRefOperand *operand)
/******************************************************************************
* *
-* Paramètres : data = flux de données à analyser. *
-* pos = position courante dans ce flux. [OUT] *
-* len = taille totale des données à analyser. *
-* type = type de l'opérande. *
+* Paramètres : data = flux de données à analyser. *
+* pos = position courante dans ce flux. [OUT] *
+* len = taille totale des données à analyser. *
+* type = type de l'opérande. *
* *
* Description : Crée un opérande de référence pour la JVM. *
* *
diff --git a/src/arch/jvm/processor.c b/src/arch/jvm/processor.c
index c7bfcf9..8226afc 100644
--- a/src/arch/jvm/processor.c
+++ b/src/arch/jvm/processor.c
@@ -129,11 +129,11 @@ GArchProcessor *g_jvm_processor_new(void)
/******************************************************************************
* *
-* Paramètres : proc = architecture visée par la procédure. *
-* data = flux de données à analyser. *
-* pos = position courante dans ce flux. [OUT] *
-* len = taille totale des données à analyser. *
-* offset = adresse virtuelle de l'instruction. *
+* Paramètres : proc = architecture visée par la procédure. *
+* 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. *
* *
* Description : Décode une instruction dans un flux de données. *
* *
@@ -150,7 +150,7 @@ static GArchInstruction *g_jvm_processor_decode_instruction(const GJvmProcessor
bool care; /* Traitement des opcodes */
JvmOpcodes id; /* Identifiant d'instruction */
- id = jvm_guess_next_instruction(data, pos, len, &wide, &care);
+ id = jvm_guess_next_instruction(data, *pos, len, &wide, &care);
if (id != JOP_COUNT && !care)
{