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 = Ijk_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++;
241 /* put jcc on call stack */
242 current_entry->jcc = jcc;
309 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.
689 if (top_ce->jcc) {
694 CLG_(current_state).bbcc = top_ce->jcc->from;
854 jCC* jcc local
[all...]
H A Ddump.c649 /* Write out the calls from jcc (at pos)
651 static void fprint_jcc(Int fd, jCC* jcc, AddrPos* curr, AddrPos* last, ULong ecounter) argument
658 CLG_DEBUG(2, " fprint_jcc (jkind %d)\n", jcc->jmpkind);
659 CLG_(print_jcc)(-10, jcc);
662 if (!get_debug_pos(jcc->to, bb_addr(jcc->to->bb), &target)) {
667 if (jcc->from &&
668 (jcc->jmpkind == JmpCond || jcc->jmpkind == Ijk_Boring)) {
671 CLG_ASSERT(CLG_(is_zero_cost)( CLG_(sets).full, jcc
782 jCC* jcc; local
[all...]
H A Dglobal.h484 jCC* jcc; /* jCC for this call */ member in struct:_call_entry
867 void CLG_(print_jcc)(int s, jCC* jcc);
876 void CLG_(print_short_jcc)(jCC* jcc);

Completed in 79 milliseconds