summaryrefslogtreecommitdiff
path: root/src/arch/arm/isa/formats/fp.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:11 -0500
committerGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:11 -0500
commit0ff71c7c343f2cb2ef4cb89168267795fda6ff15 (patch)
tree0003a415bffe679bea060eb7d300393f9b730388 /src/arch/arm/isa/formats/fp.isa
parentc9c4dfc09dacd9dfc29655e78f7caa1fcc6dfce6 (diff)
downloadgem5-0ff71c7c343f2cb2ef4cb89168267795fda6ff15.tar.xz
ARM: Decode 8, 16, and 32 bit transfers between core and extension (fp) registers.
Diffstat (limited to 'src/arch/arm/isa/formats/fp.isa')
-rw-r--r--src/arch/arm/isa/formats/fp.isa46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/arch/arm/isa/formats/fp.isa b/src/arch/arm/isa/formats/fp.isa
index 65ea100d4..303273d6e 100644
--- a/src/arch/arm/isa/formats/fp.isa
+++ b/src/arch/arm/isa/formats/fp.isa
@@ -207,3 +207,49 @@ def format ExtensionRegLoadStore() {{
}
'''
}};
+
+def format ShortFpTransfer() {{
+ decode_block = '''
+ {
+ const uint32_t l = bits(machInst, 20);
+ const uint32_t c = bits(machInst, 8);
+ const uint32_t a = bits(machInst, 23, 21);
+ const uint32_t b = bits(machInst, 6, 5);
+ if ((machInst.thumb == 1 && bits(machInst, 28) == 1) ||
+ (machInst.thumb == 0 && machInst.condCode == 0xf)) {
+ return new Unknown(machInst);
+ }
+ if (l == 0 && c == 0) {
+ if (a == 0) {
+ // A8-648
+ return new WarnUnimplemented("vmov", machInst);
+ } else if (a == 0x7) {
+ // A8-660
+ // B6-29
+ return new WarnUnimplemented("vmsr", machInst);
+ }
+ } else if (l == 0 && c == 1) {
+ if (bits(a, 2) == 0) {
+ // A8-644
+ return new WarnUnimplemented("vmov", machInst);
+ } else if (bits(b, 1) == 0) {
+ // A8-594
+ return new WarnUnimplemented("vdup", machInst);
+ }
+ } else if (l == 1 && c == 0) {
+ if (a == 0) {
+ // A8-648
+ return new WarnUnimplemented("vmov", machInst);
+ } else if (a == 7) {
+ // A8-658
+ // B6-27
+ return new WarnUnimplemented("vmrs", machInst);
+ }
+ } else {
+ // A8-646
+ return new WarnUnimplemented("vmov", machInst);
+ }
+ return new Unknown(machInst);
+ }
+ '''
+}};