changeset d6c8516b49e9 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=d6c8516b49e9
description:
        ARM: We don't currently support ThumbEE exceptions, so don't report 
that we do

diffstat:

 src/arch/arm/isa.cc |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (14 lines):

diff -r 177151a54462 -r d6c8516b49e9 src/arch/arm/isa.cc
--- a/src/arch/arm/isa.cc       Mon Aug 23 11:18:40 2010 -0500
+++ b/src/arch/arm/isa.cc       Mon Aug 23 11:18:40 2010 -0500
@@ -211,7 +211,9 @@
                 "always reads as 0.\n");
         break;
       case MISCREG_ID_PFR0:
-        return 0x1031; // ThumbEE | !Jazelle | Thumb | ARM
+        warn("Returning thumbEE disabled for now since we don't support CP14"
+             "config registers and jumping to ThumbEE vectors\n");
+        return 0x0031; // !ThumbEE | !Jazelle | Thumb | ARM
       case MISCREG_ID_MMFR0:
         return 0x03; //VMSAz7
       case MISCREG_CTR:
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to