Home | History | Annotate | Download | only in callgrind

Lines Matching refs:to

22    along with this program; if not, write to the Free Software
77 static UInt jcc_hash_idx(BBCC* from, UInt jmp, BBCC* to, UInt size)
79 return (UInt) ( (UWord)from + 7* (UWord)to + 13*jmp) % size;
105 curr_jcc->to, new_size);
133 /* new jCC structure: a call was done to a BB of a BBCC
136 static jCC* new_jcc(BBCC* from, UInt jmp, BBCC* to)
150 jcc->to = to;
170 new_idx = jcc_hash_idx(from, jmp, to, current_jccs.size);
186 jCC* CLG_(get_jcc)(BBCC* from, UInt jmp, BBCC* to)
192 from, jmp, to);
195 jcc = to->lru_to_jcc;
197 CLG_ASSERT(to == jcc->to);
198 CLG_DEBUG(5,"- get_jcc: [LRU to] jcc %p\n", jcc);
203 if (jcc && (jcc->to == to) && (jcc->jmp == jmp)) {
211 idx = jcc_hash_idx(from, jmp, to, current_jccs.size);
217 (jcc->to == to)) break;
222 jcc = new_jcc(from, jmp, to);
226 to->lru_to_jcc = jcc;
229 from, to);