Lines Matching refs:assoc
47 if ((cache->size % (cache->line_size * cache->assoc) != 0) || in check_cache()
48 (-1 == VG_(log2)(cache->size/cache->line_size/cache->assoc))) in check_cache()
71 if (cache->assoc > (cache->size / cache->line_size)) { in check_cache()
93 cache->assoc = (Int)i2; in parse_cache_opt()
96 if (cache->assoc != i2) goto overflow; in parse_cache_opt()
140 c->size, c->assoc, c->line_size); in umsg_cache_img()
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()
220 UInt old_assoc = (UInt)LLc->assoc; in maybe_tweak_LLc()
269 LLc->assoc = new_assoc; in maybe_tweak_LLc()
280 #define DEFINED(L) (-1 != L->size || -1 != L->assoc || -1 != L->line_size) in VG_()
388 *I1c = (cache_t) { adjusted_size, i1->assoc, guessed_line_size }; in configure_caches()
390 *I1c = (cache_t) { i1->sizeB, i1->assoc, i1->line_sizeB }; in configure_caches()
392 *D1c = (cache_t) { d1->sizeB, d1->assoc, d1->line_sizeB }; in configure_caches()
393 *LLc = (cache_t) { ll->sizeB, ll->assoc, ll->line_sizeB }; in configure_caches()