summaryrefslogtreecommitdiff
path: root/plugins/arm/v7/opdefs/mcr_A8898.d
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/arm/v7/opdefs/mcr_A8898.d')
-rw-r--r--plugins/arm/v7/opdefs/mcr_A8898.d94
1 files changed, 55 insertions, 39 deletions
diff --git a/plugins/arm/v7/opdefs/mcr_A8898.d b/plugins/arm/v7/opdefs/mcr_A8898.d
index f710d5d..b0ece52 100644
--- a/plugins/arm/v7/opdefs/mcr_A8898.d
+++ b/plugins/arm/v7/opdefs/mcr_A8898.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,22 +23,32 @@
@title MCR, MCR2
-@desc Move to Coprocessor from ARM core register passes the value of an ARM core register to a coprocessor. If no coprocessor can execute the instruction, an Undefined Instruction exception is generated. This is a generic coprocessor instruction. Some of the fields have no functionality defined by the architecture and are free for use by the coprocessor instruction set designer. These are the opc1, opc2, CRn, and CRm fields. However, coprocessors CP8-CP15 are reserved for use by ARM, and this manual defines the valid MCR and MCR2 instructions when coproc is in the range p8-p15. For more information see Coprocessor support on page A2-94. In an implementation that includes the Virtualization Extensions, MCR accesses to system control registers can be trapped to Hyp mode, meaning that an attempt to execute an MCR instruction in a Non-secure mode other than Hyp mode, that would be permitted in the absence of the Hyp trap controls, generates a Hyp Trap exception. For more information, see Traps to the hypervisor on page B1-1247. Note Because of the range of possible traps to Hyp mode, the MCR pseudocode does not show these possible traps.
+@id 97
+
+@desc {
+
+ Move to Coprocessor from ARM core register passes the value of an ARM core register to a coprocessor. If no coprocessor can execute the instruction, an Undefined Instruction exception is generated. This is a generic coprocessor instruction. Some of the fields have no functionality defined by the architecture and are free for use by the coprocessor instruction set designer. These are the opc1, opc2, CRn, and CRm fields. However, coprocessors CP8-CP15 are reserved for use by ARM, and this manual defines the valid MCR and MCR2 instructions when coproc is in the range p8-p15. For more information see Coprocessor support on page A2-94. In an implementation that includes the Virtualization Extensions, MCR accesses to system control registers can be trapped to Hyp mode, meaning that an attempt to execute an MCR instruction in a Non-secure mode other than Hyp mode, that would be permitted in the absence of the Hyp trap controls, generates a Hyp Trap exception. For more information, see Traps to the hypervisor on page B1-1247. Note Because of the range of possible traps to Hyp mode, the MCR pseudocode does not show these possible traps.
+
+}
@encoding (T1) {
@word 1 1 1 0 1 1 1 0 opc1(3) 0 CRn(4) Rt(4) coproc(4) opc2(3) 1 CRm(4)
- @syntax <cp> <undef_opc1> <reg_T> <creg_N> <creg_M> <?undef_opc2>
+ @syntax {
- @conv {
+ @conv {
- reg_T = Register(Rt)
- cp = CoProcessor(coproc)
- undef_opc1 = RawValue(opc1)
- creg_N = CRegister(CRn)
- creg_M = CRegister(CRm)
- undef_opc2 = RawValue(opc2)
+ cp = CoProcessor(coproc)
+ direct_opc1 = UInt(opc1)
+ reg_T = Register(Rt)
+ direct_CRn = UInt(CRn)
+ direct_CRm = UInt(CRm)
+ direct_opc2 = UInt(opc2)
+
+ }
+
+ @asm mcr cp direct_opc1 reg_T direct_CRn direct_CRm ?direct_opc2
}
@@ -46,24 +56,22 @@
@encoding (A1) {
- @word cond(4) 1 1 1 0 opc1(3) 0 CRn(4) Rt(4) coproc(4) opc2(3) 1 CRm(4)
-
- @syntax <cp> <undef_opc1> <reg_T> <creg_N> <creg_M> <?undef_opc2>
+ @word 1 1 1 0 1 1 1 0 opc1(3) 0 CRn(4) Rt(4) coproc(4) opc2(3) 1 CRm(4)
- @conv {
+ @syntax {
- reg_T = Register(Rt)
- cp = CoProcessor(coproc)
- undef_opc1 = RawValue(opc1)
- creg_N = CRegister(CRn)
- creg_M = CRegister(CRm)
- undef_opc2 = RawValue(opc2)
+ @conv {
- }
+ cp = CoProcessor(coproc)
+ direct_opc1 = UInt(opc1)
+ reg_T = Register(Rt)
+ direct_CRn = UInt(CRn)
+ direct_CRm = UInt(CRm)
+ direct_opc2 = UInt(opc2)
- @rules {
+ }
- chk_call StoreCondition(cond)
+ @asm mcr cp direct_opc1 reg_T direct_CRn direct_CRm ?direct_opc2
}
@@ -73,16 +81,20 @@
@word 1 1 1 1 1 1 1 0 opc1(3) 0 CRn(4) Rt(4) coproc(4) opc2(3) 1 CRm(4)
- @syntax "mcr2" <cp> <undef_opc1> <reg_T> <creg_N> <creg_M> <?undef_opc2>
+ @syntax {
+
+ @conv {
- @conv {
+ cp = CoProcessor(coproc)
+ direct_opc1 = UInt(opc1)
+ reg_T = Register(Rt)
+ direct_CRn = UInt(CRn)
+ direct_CRm = UInt(CRm)
+ direct_opc2 = UInt(opc2)
- reg_T = Register(Rt)
- cp = CoProcessor(coproc)
- undef_opc1 = RawValue(opc1)
- creg_N = CRegister(CRn)
- creg_M = CRegister(CRm)
- undef_opc2 = RawValue(opc2)
+ }
+
+ @asm mcr cp direct_opc1 reg_T direct_CRn direct_CRm ?direct_opc2
}
@@ -92,16 +104,20 @@
@word 1 1 1 1 1 1 1 0 opc1(3) 0 CRn(4) Rt(4) coproc(4) opc2(3) 1 CRm(4)
- @syntax "mcr2" <cp> <undef_opc1> <reg_T> <creg_N> <creg_M> <?undef_opc2>
+ @syntax {
+
+ @conv {
+
+ cp = CoProcessor(coproc)
+ direct_opc1 = UInt(opc1)
+ reg_T = Register(Rt)
+ direct_CRn = UInt(CRn)
+ direct_CRm = UInt(CRm)
+ direct_opc2 = UInt(opc2)
- @conv {
+ }
- reg_T = Register(Rt)
- cp = CoProcessor(coproc)
- undef_opc1 = RawValue(opc1)
- creg_N = CRegister(CRn)
- creg_M = CRegister(CRm)
- undef_opc2 = RawValue(opc2)
+ @asm mcr cp direct_opc1 reg_T direct_CRn direct_CRm ?direct_opc2
}