mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
Ignore prefetch information when decoding Intel cache details. Patch
from Josef Weidendorfer <Josef.Weidendorfer@gmx.de>. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4286
This commit is contained in:
parent
b2f3925a5f
commit
d9d05342fb
@ -169,6 +169,10 @@ Int Intel_cache_info(Int level, cache_t* I1c, cache_t* D1c, cache_t* L2c)
|
||||
case 0x86: *L2c = (cache_t) { 512, 4, 64 }; L2_found = True; break;
|
||||
case 0x87: *L2c = (cache_t) { 1024, 8, 64 }; L2_found = True; break;
|
||||
|
||||
/* Ignore prefetch information */
|
||||
case 0xf0: case 0xf1:
|
||||
break;
|
||||
|
||||
default:
|
||||
VG_(message)(Vg_DebugMsg,
|
||||
"warning: Unknown Intel cache config value "
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user