Home | History | Annotate | Download | only in cachegrind

Lines Matching full:indx

91    UWord indx;
102 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
103 tl_assert(indx < N_COUNTERS);
104 if (0) VG_(printf)("index = %d\n", (Int)indx);
107 predicted_taken = counters[ indx ] >= 2;
117 if (counters[indx] < 3)
118 counters[indx]++;
120 if (counters[indx] > 0)
121 counters[indx]--;
124 tl_assert(counters[indx] <= 3);
142 UWord indx = (instr_addr >> N_IADDR_LO_ZERO_BITS)
144 tl_assert(indx < N_BTAC);
145 mispredict = btac[indx] != actual;
146 btac[indx] = actual;