/external/valgrind/callgrind/ |
bbcc.c | 3 /*--- bbcc.c ---*/ 35 /*--- BBCC operations ---*/ 40 /* BBCC table (key is BB/Context), per thread, resizable */ 51 bbccs->table = (BBCC**) CLG_MALLOC("cl.bbcc.ibh.1", 52 bbccs->size * sizeof(BBCC*)); 81 * Zero all costs of a BBCC 83 void CLG_(zero_bbcc)(BBCC* bbcc) 88 CLG_ASSERT(bbcc->cxt != 0) 114 BBCC *bbcc, *bbcc2; local 159 BBCC* bbcc = bb->last_bbcc; local 268 BBCC* bbcc; local 377 BBCC* bbcc; local 446 BBCC* bbcc; local 563 BBCC *bbcc, *last_bbcc; local [all...] |
debug.c | 115 void CLG_(print_bbcc)(int s, BBCC* bbcc) 124 if (!bbcc) { 125 VG_(printf)("BBCC 0x0\n"); 129 bb = bbcc->bb; 135 CLG_(print_cxt)(s+8, bbcc->cxt, bbcc->rec_index); 295 void CLG_(print_bbcc_fn)(BBCC* bbcc) 299 if (!bbcc) { 431 BBCC* bbcc; local [all...] |
dump.c | 259 * Print function position of the BBCC, but only print info differing to 263 static Bool print_fn_pos(VgFile *fp, FnPos* last, BBCC* bbcc) 267 CLG_ASSERT(bbcc && bbcc->cxt); 271 CLG_(print_cxt)(16, bbcc->cxt, bbcc->rec_index); 275 if (last->rec_index != bbcc->rec_index) { 276 VG_(fprintf)(fp, "rec=%u\n\n", bbcc->rec_index); 277 last->rec_index = bbcc->rec_index 1038 BBCC* bbcc; local 1066 BBCC* bbcc; local [all...] |
threads.c | 320 es->bbcc = 0; 419 es->bbcc = CLG_(current_state).bbcc; 426 CLG_(print_bbcc)(-9, es->bbcc); 444 CLG_(current_state).bbcc = es->bbcc; 452 CLG_(print_bbcc)(-9, es->bbcc);
|
global.h | 183 typedef struct _BBCC BBCC; 215 * this call is a pointer to the list head (stored in BBCC), and 234 jCC* next_from; /* next JCC from a BBCC */ 235 BBCC *from, *to; /* call arc from/to this BBCC */ 280 * multiple cost centers for one BB (struct BBCC) exist and the according 281 * BBCC is set by setup_bbcc. 296 BBCC* bbcc_list; /* BBCCs for same BB (see next_bbcc in BBCC) */ 297 BBCC* last_bbcc; /* Temporary: Cached for faster access (LRU) * 495 BBCC* bbcc; \/* last BB executed *\/ member in struct:_exec_state [all...] |
main.c | 921 * - current_bbcc has a pointer to the BBCC of the last executed BB 934 * set current_bbcc to BBCC that gets the costs for this BB execution [all...] |
sim.c | [all...] |
/external/valgrind/ |
Android.mk | 402 callgrind/bbcc.c \
|