Home
last modified time | relevance | path

Searched refs:LLc (Results 1 – 5 of 5) sorted by relevance

/external/valgrind/cachegrind/
Dcg_arch.c39 static void configure_caches(cache_t* I1c, cache_t* D1c, cache_t* LLc,
212 maybe_tweak_LLc(cache_t *LLc) in maybe_tweak_LLc() argument
214 if (LLc->size == 0 || LLc->assoc == 0 || LLc->line_size == 0) in maybe_tweak_LLc()
217 tl_assert(LLc->size > 0 && LLc->assoc > 0 && LLc->line_size > 0); in maybe_tweak_LLc()
219 UInt old_size = (UInt)LLc->size; in maybe_tweak_LLc()
220 UInt old_assoc = (UInt)LLc->assoc; in maybe_tweak_LLc()
221 UInt old_line_size = (UInt)LLc->line_size; in maybe_tweak_LLc()
268 LLc->size = new_size; in maybe_tweak_LLc()
269 LLc->assoc = new_assoc; in maybe_tweak_LLc()
270 LLc->line_size = new_line_size; in maybe_tweak_LLc()
[all …]
Dcg_arch.h63 cache_t* LLc,
Dcg_sim.c170 static void cachesim_initcaches(cache_t I1c, cache_t D1c, cache_t LLc) in cachesim_initcaches() argument
174 cachesim_initcache(LLc, &LL); in cachesim_initcaches()
Dcg_main.c1806 cache_t I1c, D1c, LLc; in cg_post_clo_init() local
1824 VG_(post_clo_init_configure_caches)(&I1c, &D1c, &LLc, in cg_post_clo_init()
1833 min_line_size = (LLc.line_size < min_line_size) ? LLc.line_size : min_line_size; in cg_post_clo_init()
1849 cachesim_initcaches(I1c, D1c, LLc); in cg_post_clo_init()
/external/valgrind/callgrind/
Dsim.c1293 cache_t I1c, D1c, LLc; in cachesim_post_clo_init() local
1317 VG_(post_clo_init_configure_caches)(&I1c, &D1c, &LLc, in cachesim_post_clo_init()
1331 CLG_(min_line_size) = (LLc.line_size < CLG_(min_line_size)) in cachesim_post_clo_init()
1332 ? LLc.line_size : CLG_(min_line_size); in cachesim_post_clo_init()
1350 cachesim_initcache(LLc, &LL); in cachesim_post_clo_init()