Searched defs:jcc (Results 1 - 6 of 6) sorted by relevance

/external/valgrind/main/callgrind/
H A Djumps.c84 /* double size of jcc table */
142 jCC* jcc; local
145 /* check fill degree of jcc hash table and resize if needed (>80%) */
150 jcc = (jCC*) CLG_MALLOC("cl.jumps.nj.1", sizeof(jCC));
152 jcc->from = from;
153 jcc->jmp = jmp;
154 jcc->to = to;
155 jcc->jmpkind = jk_Call;
156 jcc->call_counter = 0;
157 jcc
192 jCC* jcc; local
[all...]
H A Dcallstack.c184 * for this, we set jcc = 0.
188 jCC* jcc; local
201 jcc = 0;
217 jcc = CLG_(get_jcc)(from, jmp, to);
218 CLG_ASSERT(jcc != 0);
223 if (jcc->from->cxt->fn[0] != to_fn) (*pdepth)++;
230 jcc->call_counter++;
247 /* put jcc on call stack */
248 current_entry->jcc = jcc;
316 jCC* jcc; local
[all...]
H A Ddebug.c226 void CLG_(print_short_jcc)(jCC* jcc) argument
228 if (jcc)
230 bb_jmpaddr(jcc->from->bb),
231 bb_addr(jcc->to->bb),
232 jcc->call_counter,
233 jcc->cost ? jcc->cost[fullOffset(EG_IR)]:0,
234 jcc->cost ? jcc->cost[fullOffset(EG_DR)]:0,
235 jcc
240 print_jcc(int s, jCC* jcc) argument
448 print_jcc(int s, jCC* jcc) argument
454 print_short_jcc(jCC* jcc) argument
[all...]
H A Dbbcc.c86 jCC* jcc; local
103 for(jcc=bbcc->jmp[i].jcc_list; jcc; jcc=jcc->next_from)
104 CLG_(init_cost)( CLG_(sets).full, jcc->cost );
359 * but with costs set to 0 and jcc chains empty.
701 if (top_ce->jcc) {
706 CLG_(current_state).bbcc = top_ce->jcc->from;
708 passed = top_ce->jcc
870 jCC* jcc = CLG_(get_jcc)(last_bbcc, passed, bbcc); local
[all...]
H A Ddump.c651 /* Write out the calls from jcc (at pos)
653 static void fprint_jcc(Int fd, jCC* jcc, AddrPos* curr, AddrPos* last, ULong ecounter) argument
660 CLG_DEBUG(2, " fprint_jcc (jkind %d)\n", jcc->jmpkind);
661 CLG_(print_jcc)(-10, jcc);
664 CLG_ASSERT(jcc->to !=0);
665 CLG_ASSERT(jcc->from !=0);
667 if (!get_debug_pos(jcc->to, bb_addr(jcc->to->bb), &target)) {
672 if ((jcc->jmpkind == jk_CondJump) || (jcc
784 jCC* jcc; local
[all...]
H A Dglobal.h490 jCC* jcc; /* jCC for this call */ member in struct:_call_entry
871 void CLG_(print_jcc)(int s, jCC* jcc);
880 void CLG_(print_short_jcc)(jCC* jcc);

Completed in 74 milliseconds