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