summaryrefslogtreecommitdiff
path: root/plugins/arm/v7/fetch.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-05-19 10:28:27 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-05-19 10:28:27 (GMT)
commit5e6f3a42a2f57c563f34e5ea4d9c377d8618e871 (patch)
tree9b245999585accb100a09df44a0f254ece4d9209 /plugins/arm/v7/fetch.h
parentd52e16c97aa88ecf6a3643ef454e1aa857e0e7dd (diff)
Added support for a few extra ARMv7 instructions.
Diffstat (limited to 'plugins/arm/v7/fetch.h')
-rw-r--r--plugins/arm/v7/fetch.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/arm/v7/fetch.h b/plugins/arm/v7/fetch.h
index 634879f..602fae5 100644
--- a/plugins/arm/v7/fetch.h
+++ b/plugins/arm/v7/fetch.h
@@ -110,5 +110,15 @@ static inline void help_fetching_with_instruction_ldr_literal_from_thumb(GArchIn
}
+/* Applique la mise à jour d'un registre après coup. */
+void apply_write_back(GArchInstruction *, GArchProcessor *, GArmV7Context *, GExeFormat *, ArmV7InstrSet);
+
+/* Applique la mise à jour d'un registre après coup au besoin. */
+void apply_write_back_from_registers(GArchInstruction *, GArchProcessor *, GArmV7Context *, GExeFormat *, ArmV7InstrSet);
+
+/* Construit un suffixe adapté à une instruction IT. */
+void build_it_instruction_suffix(GArchInstruction *, GArchProcessor *, GArmV7Context *, GExeFormat *, ArmV7InstrSet);
+
+
#endif /* _PLUGINS_ARM_V7_FETCH_H */