Home | History | Annotate | Download | only in cachegrind

Lines Matching full:indx

96    UWord indx;
107 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
108 tl_assert(indx < N_COUNTERS);
109 if (0) VG_(printf)("index = %d\n", (Int)indx);
112 predicted_taken = counters[ indx ] >= 2;
122 if (counters[indx] < 3)
123 counters[indx]++;
125 if (counters[indx] > 0)
126 counters[indx]--;
129 tl_assert(counters[indx] <= 3);
147 UWord indx = (instr_addr >> N_IADDR_LO_ZERO_BITS)
149 tl_assert(indx < N_BTAC);
150 mispredict = btac[indx] != actual;
151 btac[indx] = actual;