summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-06-06 16:34:00 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-06-06 16:34:00 (GMT)
commit8827cf755762f70f0c4edb3bafe5d79b9fee0f15 (patch)
tree1417fac02b61c037f98f23a9c107f3bb4accaea7 /src/arch
parent4b36edf684b49eb5584f8f0c5aff3dd7aac2c834 (diff)
Hidden virtual addresses when code runs in a VM.
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/processor-int.h1
-rw-r--r--src/arch/processor.c19
-rw-r--r--src/arch/processor.h3
3 files changed, 23 insertions, 0 deletions
diff --git a/src/arch/processor-int.h b/src/arch/processor-int.h
index cc39307..153f9ae 100644
--- a/src/arch/processor-int.h
+++ b/src/arch/processor-int.h
@@ -72,6 +72,7 @@ struct _GArchProcessor
SourceEndian endianness; /* Boutisme de l'architecture */
MemoryDataSize memsize; /* Taille de l'espace mémoire */
MemoryDataSize inssize; /* Taille min. d'encodage */
+ bool virt_space; /* Présence d'espace virtuel ? */
GArchInstruction **instructions; /* Instructions désassemblées */
size_t instr_count; /* Taille de la liste aplatie */
diff --git a/src/arch/processor.c b/src/arch/processor.c
index 92669ed..81bbd4f 100644
--- a/src/arch/processor.c
+++ b/src/arch/processor.c
@@ -320,6 +320,25 @@ MemoryDataSize g_arch_processor_get_instruction_size(const GArchProcessor *proc)
/******************************************************************************
* *
+* Paramètres : proc = processeur d'architecture à consulter. *
+* *
+* Description : Indique si l'architecture possède un espace virtuel ou non. *
+* *
+* Retour : true si un espace virtuel existe, false sinon. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+bool g_arch_processor_has_virtual_space(const GArchProcessor *proc)
+{
+ return proc->virt_space;
+
+}
+
+
+/******************************************************************************
+* *
* Paramètres : proc = architecture visée par la procédure. *
* ctx = contexte lié à l'exécution du processeur. *
* content = flux de données à analyser. *
diff --git a/src/arch/processor.h b/src/arch/processor.h
index 31b2b69..40a610b 100644
--- a/src/arch/processor.h
+++ b/src/arch/processor.h
@@ -70,6 +70,9 @@ MemoryDataSize g_arch_processor_get_memory_size(const GArchProcessor *);
/* Fournit la taille min. des instructions d'une architecture. */
MemoryDataSize g_arch_processor_get_instruction_size(const GArchProcessor *);
+/* Indique si l'architecture possède un espace virtuel ou non. */
+bool g_arch_processor_has_virtual_space(const GArchProcessor *);
+
/* Désassemble une instruction dans un flux de données. */
GArchInstruction *g_arch_processor_disassemble(const GArchProcessor *, GProcContext *, const GBinContent *, vmpa2t *, GExeFormat *);