changeset da05a322fa4d in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=da05a322fa4d
description:
        x86 cpuid: enable clflush
        Note that clflush is only being enabled. It is not implemented
        in actual. A warning is printed if the cpu encounters a clflush
        instruction. We need to enable this instruction in cpuid since
        JRE 1.7 tests for it.

diffstat:

 src/arch/x86/cpuid.cc |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r 8a2175fa7fa0 -r da05a322fa4d src/arch/x86/cpuid.cc
--- a/src/arch/x86/cpuid.cc     Tue Jan 15 07:43:21 2013 -0600
+++ b/src/arch/x86/cpuid.cc     Tue Jan 15 07:43:21 2013 -0600
@@ -150,8 +150,8 @@
                         stringToRegister(vendorString + 8));
                 break;
               case FamilyModelStepping:
-                result = CpuidResult(0x00020f51, 0000000405,
-                                     0xe7d3fbff, 0x00000001);
+                result = CpuidResult(0x00020f51, 0x00000805,
+                                     0xe7dbfbff, 0x00000001);
                 break;
               default:
                 warn("x86 cpuid: unimplemented function %u", funcNum);
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to