summaryrefslogtreecommitdiff
path: root/plugins/arm/v7/opdefs/bx_A8827.d
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/arm/v7/opdefs/bx_A8827.d')
-rw-r--r--plugins/arm/v7/opdefs/bx_A8827.d40
1 files changed, 26 insertions, 14 deletions
diff --git a/plugins/arm/v7/opdefs/bx_A8827.d b/plugins/arm/v7/opdefs/bx_A8827.d
index f3681e7..15d6288 100644
--- a/plugins/arm/v7/opdefs/bx_A8827.d
+++ b/plugins/arm/v7/opdefs/bx_A8827.d
@@ -2,7 +2,7 @@
/* Chrysalide - Outil d'analyse de fichiers binaires
* ##FILE## - traduction d'instructions ARMv7
*
- * Copyright (C) 2015 Cyrille Bagard
+ * Copyright (C) 2017 Cyrille Bagard
*
* This file is part of Chrysalide.
*
@@ -23,24 +23,33 @@
@title BX
-@desc Branch and Exchange causes a branch to an address and instruction set specified by a register.
+@id 26
+
+@desc {
+
+ Branch and Exchange causes a branch to an address and instruction set specified by a register.
+
+}
@encoding (t1) {
@half 0 1 0 0 0 1 1 1 0 Rm(4) 0 0 0
- @syntax <reg_M>
+ @syntax {
+
+ @conv {
- @conv {
+ reg_M = Register(Rm)
- reg_M = Register(Rm)
+ }
+
+ @asm bx reg_M
}
@hooks {
fetch = help_fetching_with_instruction_bx_from_thumb
- link = handle_armv7_conditional_branch_from_register
}
@@ -50,24 +59,27 @@
@word cond(4) 0 0 0 1 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 Rm(4)
- @syntax <reg_M>
+ @syntax {
- @conv {
+ @conv {
- reg_M = Register(Rm)
+ reg_M = Register(Rm)
- }
+ }
+
+ @asm bx reg_M
- @rules {
+ @rules {
- chk_call StoreCondition(cond)
+ check g_arm_instruction_set_cond(cond)
+
+ }
}
@hooks {
- fetch = help_fetching_with_instruction_bx_from_arm
- link = handle_armv7_conditional_branch_from_register
+ fetch = help_fetching_with_instruction_bx_from_thumb
}