Searched refs:rec_index (Results 1 – 4 of 4) sorted by relevance
/external/valgrind/main/callgrind/ |
D | bbcc.c | 92 bbcc->cxt->base_number + bbcc->rec_index, in CLG_() 94 bbcc->rec_index); in CLG_() 341 static Char* mangled_cxt(Context* cxt, int rec_index) in mangled_cxt() argument 349 if (rec_index >0) in mangled_cxt() 350 p += VG_(sprintf)(mangled+p, "'%d", rec_index +1); in mangled_cxt() 370 static BBCC* clone_bbcc(BBCC* orig, Context* cxt, Int rec_index) in clone_bbcc() argument 375 bb_addr(orig->bb), rec_index, cxt->fn[0]->name); in clone_bbcc() 379 if (rec_index == 0) { in clone_bbcc() 385 bbcc->rec_index = 0; in clone_bbcc() 398 CLG_ASSERT(cxt->fn[0]->separate_recursions > rec_index); in clone_bbcc() [all …]
|
D | debug.c | 58 void print_mangled_cxt(Context* cxt, int rec_index) in print_mangled_cxt() argument 66 if (rec_index >0) in print_mangled_cxt() 67 VG_(printf)("'%d", rec_index +1); in print_mangled_cxt() 75 void CLG_(print_cxt)(int s, Context* cxt, int rec_index) in CLG_() 84 CLG_ASSERT(rec_index < cxt->fn[0]->separate_recursions); in CLG_() 86 VG_(printf)("Cxt %d" ,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_() 310 bbcc->cxt->base_number+bbcc->rec_index); in CLG_() 311 print_mangled_cxt(bbcc->cxt, bbcc->rec_index); in CLG_() [all …]
|
D | dump.c | 142 p->rec_index = 0; in init_fpos() 255 Context* cxt, int rec_index) in print_mangled_fn() argument 265 if (cxt_dumped[cxt->base_number+rec_index]) { in print_mangled_fn() 267 tag, cxt->base_number + rec_index); in print_mangled_fn() 286 if ((last == cxt) && (rec_index == 0)) return; in print_mangled_fn() 289 cxt->base_number + rec_index, in print_mangled_fn() 291 if (rec_index >0) in print_mangled_fn() 292 p += VG_(sprintf)(buf+p, "'%d", rec_index +1); in print_mangled_fn() 299 cxt_dumped[cxt->base_number+rec_index] = True; in print_mangled_fn() 307 if (cxt_dumped[cxt->base_number+rec_index]) { in print_mangled_fn() [all …]
|
D | global.h | 392 UInt rec_index; /* Recursion index in rec->bbcc for this bbcc */ member 642 int rec_index; member 763 BBCC* CLG_(clone_bbcc)(BBCC* orig, Context* cxt, Int rec_index); 875 void CLG_(print_cxt)(int s, Context* cxt, int rec_index);
|