Lines Matching refs:current_jccs
37 static jcc_hash current_jccs; variable
60 dst->size = current_jccs.size; in CLG_()
61 dst->entries = current_jccs.entries; in CLG_()
62 dst->table = current_jccs.table; in CLG_()
63 dst->spontaneous = current_jccs.spontaneous; in CLG_()
70 current_jccs.size = h->size; in CLG_()
71 current_jccs.entries = h->entries; in CLG_()
72 current_jccs.table = h->table; in CLG_()
73 current_jccs.spontaneous = h->spontaneous; in CLG_()
90 new_size = 2* current_jccs.size +3; in resize_jcc_table()
97 for (i = 0; i < current_jccs.size; i++) { in resize_jcc_table()
98 if (current_jccs.table[i] == NULL) continue; in resize_jcc_table()
100 curr_jcc = current_jccs.table[i]; in resize_jcc_table()
119 VG_(free)(current_jccs.table); in resize_jcc_table()
123 current_jccs.size, new_size, in resize_jcc_table()
124 current_jccs.entries, conflicts1, conflicts2); in resize_jcc_table()
126 current_jccs.size = new_size; in resize_jcc_table()
127 current_jccs.table = new_table; in resize_jcc_table()
142 current_jccs.entries++; in new_jcc()
143 if (10 * current_jccs.entries / current_jccs.size > 8) in new_jcc()
165 jcc->next_from = current_jccs.spontaneous; in new_jcc()
166 current_jccs.spontaneous = jcc; in new_jcc()
170 new_idx = jcc_hash_idx(from, jmp, to, current_jccs.size); in new_jcc()
171 jcc->next_hash = current_jccs.table[new_idx]; in new_jcc()
172 current_jccs.table[new_idx] = jcc; in new_jcc()
211 idx = jcc_hash_idx(from, jmp, to, current_jccs.size); in CLG_()
212 jcc = current_jccs.table[idx]; in CLG_()