回答:
sysfs
for d in /sys/devices/system/cpu/cpu0/cache/index*;
do tail -c+1 $d/{level,type,size}
echo
done
与える:
==> /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
与える:
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
または単一レベルの場合:
getconf LEVEL2_CACHE_SIZE
このインターフェースのすばらしい点は、POSIX sysconf
C関数(キャッシュ引数はPOSIX以外の拡張機能)の単なるラッパーであるため、Cコードからも使用できることです。
Ubuntu 16.04でテスト済み。
x86 CPUID命令
CPUID x86命令はキャッシュ情報も提供し、ユーザーランドから直接アクセスできます:https : //en.wikipedia.org/wiki/CPUID
glibcはその方法をx86に使用しているようです。ステップデバッグ/命令トレースでは確認していませんが、2.28のソースでsysdeps/x86/cacheinfo.c
は次のようになっています。
__cpuid (2, eax, ebx, ecx, edx);
TODOは最小限のCのサンプルを作成します。今はレイジーです。https://stackoverflow.com/questions/14283171/how-to-receive-l1-l2-l3-cache-size-using-cpuid-instruction-in-x86
ARMには、キャッシュサイズIDレジスタ(CCSIDR)などのレジスタを介してキャッシュサイズを検索するアーキテクチャ定義のメカニズムもあります。概要については、ARMv8プログラマーズマニュアル 11.6「キャッシュの検出」を参照してください。