Searched refs:local_history_idx (Results 1 - 2 of 2) sorted by relevance

/gem5/src/cpu/pred/
H A Dtournament.cc149 TournamentBP::updateLocalHistTaken(unsigned local_history_idx) argument
151 localHistoryTable[local_history_idx] =
152 (localHistoryTable[local_history_idx] << 1) | 1;
157 TournamentBP::updateLocalHistNotTaken(unsigned local_history_idx) argument
159 localHistoryTable[local_history_idx] =
160 (localHistoryTable[local_history_idx] << 1);
167 unsigned local_history_idx = calcLocHistIdx(branch_addr); local
171 localHistoryTable[local_history_idx] =
172 localHistoryTable[local_history_idx] & (localPredictorMask & ~ULL(1));
179 unsigned local_history_idx; local
[all...]
H A Dtournament.hh140 * @param local_history_idx The local history table entry that
143 inline void updateLocalHistTaken(unsigned local_history_idx);
147 * @param local_history_idx The local history table entry that
150 inline void updateLocalHistNotTaken(unsigned local_history_idx);

Completed in 3 milliseconds