Home | History | Annotate | Download | only in memcheck

Lines Matching defs:set

53 /* Set to 1 to do a little more sanity checking */
66 // Comment these out to disable the fast cases (don't just set them to zero).
98 set). So every N-bit register is shadowed with N V bits, and every memory
135 good saving. It also lets us set the V+A bits of large address regions
727 // sec-V-bits table must also be set!
748 // corresponding entry(s) in the sec-V-bits table must also be set!
1099 /* Parse a set of ranges separated by commas into 'ignoreRanges', or
1226 - the command-line flag is set [by default, it isn't]
1380 VG_(message)(Vg_UserMsg, "Warning: set address range perms: "
1389 // Endianness doesn't matter here because all bytes are being set to
1511 // Part 2: Fast-set entire sec-maps at a time.
1581 /* --- Set permissions for arbitrary address ranges --- */
1836 is a traditional 2-way set associative cache with 32-byte lines and
1837 approximate LRU replacement within each set.
1971 we use a simple 511-line, 2-way set associative cache
2142 OCacheSet set[OC_N_SETS];
2152 UWord line, set;
2161 for (set = 0; set < OC_N_SETS; set++) {
2163 ocacheL1->set[set].line[line].tag = 1/*invalid*/;
2169 static void moveLineForwards ( OCacheSet* set, UWord lineno )
2174 tmp = set->line[lineno-1];
2175 set->line[lineno-1] = set->line[lineno];
2176 set->line[lineno] = tmp;
2273 if (ocacheL1->set[setno].line[line].tag == tag) {
2281 moveLineForwards( &ocacheL1->set[setno], line );
2284 return &ocacheL1->set[setno].line[line];
2296 victim = &ocacheL1->set[setno].line[line];
2331 ocacheL1->set[setno].line[line] = *inL2;
2336 zeroise_OCacheLine( &ocacheL1->set[setno].line[line], tag );
2340 moveLineForwards( &ocacheL1->set[setno], line );
2343 return &ocacheL1->set[setno].line[line];
2359 if (LIKELY(ocacheL1->set[setno].line[0].tag == tag)) {
2360 return &ocacheL1->set[setno].line[0];
2369 //// Set the origins for a+0 .. a+7
2424 //// Set the origins for a+0 .. a+3
2460 //// Set the origins for a+0 .. a+3.
2508 //// Set the origins for a+0 .. a+7
3538 exist, *bad_addr is set to the offending address, so the caller can
4220 // For 64-bit platforms, set the high 32 bits of retval to 1 (undefined).
4579 /*--- Metadata get/set functions, for client requests. ---*/
4595 Bool setting, /* True <=> set vbits, False <=> get vbits */
4628 // The bytes in vbits[] have now been set, so mark them as such.
4699 /* Set up the primary map. */
4846 /* Set MC_(clo_mc_level):
5515 True /* set them */,
5521 // MC_(bytes_leaked) et al were set by the last leak check (or zero
5536 // MC_(blocks_leaked) et al were set by the last leak check (or zero
6411 line before deciding which set to use. */