sysfs
for d in /sys/devices/system/cpu/cpu0/cache/index*;
do tail -c+1 $d/{level,type,size}
echo
done
dà:
==> /sys/devices/system/cpu/cpu0/cache/index0/level <==
1
==> /sys/devices/system/cpu/cpu0/cache/index0/type <==
Data
==> /sys/devices/system/cpu/cpu0/cache/index0/size <==
32K
==> /sys/devices/system/cpu/cpu0/cache/index1/level <==
1
==> /sys/devices/system/cpu/cpu0/cache/index1/type <==
Instruction
==> /sys/devices/system/cpu/cpu0/cache/index1/size <==
32K
==> /sys/devices/system/cpu/cpu0/cache/index2/level <==
2
==> /sys/devices/system/cpu/cpu0/cache/index2/type <==
Unified
==> /sys/devices/system/cpu/cpu0/cache/index2/size <==
256K
==> /sys/devices/system/cpu/cpu0/cache/index3/level <==
3
==> /sys/devices/system/cpu/cpu0/cache/index3/type <==
Unified
==> /sys/devices/system/cpu/cpu0/cache/index3/size <==
8192K
getconf
getconf -a | grep CACHE
dà:
LEVEL1_ICACHE_SIZE 32768
LEVEL1_ICACHE_ASSOC 8
LEVEL1_ICACHE_LINESIZE 64
LEVEL1_DCACHE_SIZE 32768
LEVEL1_DCACHE_ASSOC 8
LEVEL1_DCACHE_LINESIZE 64
LEVEL2_CACHE_SIZE 262144
LEVEL2_CACHE_ASSOC 8
LEVEL2_CACHE_LINESIZE 64
LEVEL3_CACHE_SIZE 20971520
LEVEL3_CACHE_ASSOC 20
LEVEL3_CACHE_LINESIZE 64
LEVEL4_CACHE_SIZE 0
LEVEL4_CACHE_ASSOC 0
LEVEL4_CACHE_LINESIZE 0
O per un singolo livello:
getconf LEVEL2_CACHE_SIZE
La cosa interessante di questa interfaccia è che è solo un wrapper per la sysconf
funzione POSIX C (gli argomenti della cache sono estensioni non POSIX) e quindi può essere utilizzato anche dal codice C.
Testato in Ubuntu 16.04.
istruzione CPUID x86
L'istruzione CPUID x86 offre anche informazioni sulla cache e può essere consultata direttamente dall'utenteland: https://en.wikipedia.org/wiki/CPUID
sembra che glibc usi quel metodo per x86. Non ho confermato dal debugging / traccia delle istruzioni, ma il sorgente per 2.28 lo sysdeps/x86/cacheinfo.c
fa:
__cpuid (2, eax, ebx, ecx, edx);
TODO crea un esempio C minimo, pigro ora, richiesto a: /programming/14283171/how-to-receive-l1-l2-l3-cache-size-using-cpuid-instruction-in-x86
ARM ha anche un meccanismo definito dall'architettura per trovare le dimensioni della cache attraverso registri come il registro ID dimensioni cache (CCSIDR), vedere il Manuale dei programmatori ARMv8 11.6 " Rilevamento della cache" per una panoramica.