Home
last modified time | relevance | path

Searched refs:icache (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/contrib/device-tree/Bindings/nios2/
H A Dnios2.txt18 - icache-line-size: Contains instruction line size.
20 - icache-size: Contains instruction cache size.
47 icache-line-size = <32>;
49 icache-size = <32768>;
/freebsd/sys/contrib/device-tree/src/nios2/
H A D3c120_devboard.dts28 icache-line-size = <32>;
30 icache-size = <32768>;
H A D10m50_devboard.dts39 icache-line-size = <32>;
40 icache-size = <32768>;
/freebsd/crypto/heimdal/lib/krb5/
H A Dscache.c51 sqlite3_stmt *icache; member
167 if (s->icache) in scc_free()
168 sqlite3_finalize(s->icache); in scc_free()
365 sqlite3_bind_text(s->icache, 1, s->name, -1, NULL); in create_cache()
367 ret = sqlite3_step(s->icache); in create_cache()
374 sqlite3_reset(s->icache); in create_cache()
426 ret = prepare_stmt(context, s->db, &s->icache, SQL_ICACHE); in make_database()
/freebsd/usr.sbin/pmcstudy/
H A Dpmcstudy.c1240 struct counters *itlb, *icache; in icache_miss() local
1246 icache = find_counter(cpu, "ICACHE.IFETCH_STALL"); in icache_miss()
1249 ic = icache->vals[pos] * 1.0; in icache_miss()
1253 ic = icache->sum * 1.0; in icache_miss()
1268 struct counters *icache; in icache_miss_has() local
1273 icache = find_counter(cpu, "ICACHE.MISSES"); in icache_miss_has()
1276 ic = icache->vals[pos] * 1.0; in icache_miss_has()
1279 ic = icache->sum * 1.0; in icache_miss_has()
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DMemory.inc182 // Certain ARM implementations treat icache clear instruction as a memory
212 // icache invalidation for PPC and ARM.
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoXTHead.td761 def TH_ICACHE_IVA : THCacheInst_r<0b10000, "th.icache.iva">;
762 def TH_ICACHE_IPA : THCacheInst_r<0b11000, "th.icache.ipa">;
767 def TH_ICACHE_IALL : THCacheInst_void<0b10000, "th.icache.iall">;
768 def TH_ICACHE_IALLS : THCacheInst_void<0b10001, "th.icache.ialls">;
/freebsd/sys/arm64/arm64/
H A Didentcpu.c2519 bool icache, bool unified) in print_cpu_cache() argument
2539 icache ? "instruction" : unified ? "unified" : "data"); in print_cpu_cache()