Home | History | Annotate | Download | only in callgrind

Lines Matching refs:CLG_

47 void CLG_(print_bb)(int s, BB* bb)
75 void CLG_(print_cxt)(Int s, Context* cxt, int rec_index)
83 UInt *pactive = CLG_(get_fn_entry)(cxt->fn[0]->number);
97 void CLG_(print_execstate)(int s, exec_state* es)
115 void CLG_(print_bbcc)(int s, BBCC* bbcc)
135 CLG_(print_cxt)(s+8, bbcc->cxt, bbcc->rec_index);
138 void CLG_(print_eventset)(int s, EventSet* es)
164 eg = CLG_(get_event_group)(i);
175 void CLG_(print_cost)(int s, EventSet* es, ULong* c)
205 eg = CLG_(get_event_group)(i);
226 void CLG_(print_short_jcc)(jCC* jcc)
240 void CLG_(print_jcc)(int s, jCC* jcc)
252 CLG_(print_bbcc)(s+9, jcc->from);
255 CLG_(print_bbcc)(s+9, jcc->to);
259 CLG_(print_cost)(s+9, CLG_(sets).full, jcc->cost);
263 void CLG_(print_stackentry)(int s, int sp)
272 ce = CLG_(get_call_entry)(sp);
280 CLG_(print_jcc)(5,ce->jcc);
290 for(c=0;c<CLG_(current_call_stack).sp;c++)
291 CLG_(print_stackentry)(-2, c);
295 void CLG_(print_bbcc_fn)(BBCC* bbcc)
324 void CLG_(print_bbcc_cost)(int s, BBCC* bbcc)
343 CLG_(print_bbcc)(s, bbcc);
361 CLG_(print_cost)(s+5, ii->eventset, bbcc->cost + ii->cost_offset);
374 void CLG_(print_addr)(Addr addr)
386 CLG_(get_debug_info)(addr, &dir_buf, &fl_buf, &fn_buf, &ln, &di);
413 void CLG_(print_addr_ln)(Addr addr)
415 CLG_(print_addr)(addr);
421 void CLG_(print_bbno)(void)
423 if (bb_written != CLG_(stat).bb_executions) {
424 bb_written = CLG_(stat).bb_executions;
425 VG_(printf)("BB# %llu\n",CLG_(stat).bb_executions);
429 void CLG_(print_context)(void)
434 CLG_(current_tid), CLG_(current_call_stack).sp);
435 bbcc = CLG_(current_state).bbcc;
436 print_mangled_cxt(CLG_(current_state).cxt,
441 void* CLG_(malloc)(const HChar* cc, UWord s, const HChar* f)
449 void CLG_(print_bbno)(void) {}
450 void CLG_(print_context)(void) {}
451 void CLG_(print_jcc)(int s, jCC* jcc) {}
452 void CLG_(print_bbcc)(int s, BBCC* bbcc) {}
453 void CLG_(print_bbcc_fn)(BBCC* bbcc) {}
454 void CLG_(print_cost)(int s, EventSet* es, ULong* cost) {}
455 void CLG_(print_bb)(int s, BB* bb) {}
456 void CLG_(print_cxt)(int s, Context* cxt, int rec_index) {}
457 void CLG_(print_short_jcc)(jCC* jcc) {}
458 void CLG_(print_stackentry)(int s, int sp) {}
459 void CLG_(print_addr)(Addr addr) {}
460 void CLG_(print_addr_ln)(Addr addr) {}