Home | History | Annotate | Download | only in callgrind

Lines Matching refs:cxt

58 void print_mangled_cxt(Context* cxt, int rec_index)
62 if (!cxt)
65 VG_(printf)("%s", cxt->fn[0]->name);
68 for(i=1;i<cxt->size;i++)
69 VG_(printf)("'%s", cxt->fn[i]->name);
75 void CLG_(print_cxt)(Int s, Context* cxt, int rec_index)
82 if (cxt) {
83 UInt *pactive = CLG_(get_fn_entry)(cxt->fn[0]->number);
84 CLG_ASSERT(rec_index < cxt->fn[0]->separate_recursions);
86 VG_(printf)("Cxt %u" ,cxt->base_number + rec_index);
90 print_mangled_cxt(cxt, rec_index);
135 CLG_(print_cxt)(s+8, bbcc->cxt, bbcc->rec_index);
277 ce->nonskipped->cxt->fn[0]->name);
310 bbcc->cxt->base_number+bbcc->rec_index);
311 print_mangled_cxt(bbcc->cxt, bbcc->rec_index);
313 obj = bbcc->cxt->fn[0]->file->obj;
317 if (VG_(strcmp)(bbcc->cxt->fn[0]->file->name, "???") !=0) {
318 VG_(printf)(" %s", bbcc->cxt->fn[0]->file->name);
319 if ((bbcc->cxt->fn[0] == bbcc->bb->fn) && (bbcc->bb->line>0))
436 print_mangled_cxt(CLG_(current_state).cxt,
456 void CLG_(print_cxt)(int s, Context* cxt, int rec_index) {}