Home | History | Annotate | Download | only in cachegrind

Lines Matching refs:indx

94    UWord indx;
105 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
106 tl_assert(indx < N_COUNTERS);
107 if (0) VG_(printf)("index = %d\n", (Int)indx);
110 predicted_taken = counters[ indx ] >= 2;
120 if (counters[indx] < 3)
121 counters[indx]++;
123 if (counters[indx] > 0)
124 counters[indx]--;
127 tl_assert(counters[indx] <= 3);
145 UWord indx = (instr_addr >> N_IADDR_LO_ZERO_BITS)
147 tl_assert(indx < N_BTAC);
148 mispredict = btac[indx] != actual;
149 btac[indx] = actual;