HomeSort by relevance Sort by last modified time
    Searched defs:bbcc (Results 1 - 4 of 4) sorted by null

  /external/valgrind/main/callgrind/
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) {
428 BBCC* bbcc; local
    [all...]
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
270 BBCC* bbcc; local
372 BBCC* bbcc; local
437 BBCC* bbcc; local
553 BBCC *bbcc, *last_bbcc; local
    [all...]
dump.c 331 * Print function position of the BBCC, but only print info differing to
335 static Bool print_fn_pos(int fd, FnPos* last, BBCC* bbcc)
339 CLG_ASSERT(bbcc && bbcc->cxt);
343 CLG_(print_cxt)(16, bbcc->cxt, bbcc->rec_index);
347 if (last->rec_index != bbcc->rec_index) {
348 VG_(sprintf)(outbuf, "rec=%d\n\n", bbcc->rec_index);
350 last->rec_index = bbcc->rec_index
1148 BBCC* bbcc; local
1176 BBCC* bbcc; local
    [all...]
global.h 219 typedef struct _BBCC BBCC;
239 * this call is a pointer to the list head (stored in BBCC), and
260 jCC* next_from; /* next JCC from a BBCC */
261 BBCC *from, *to; /* call arc from/to this BBCC */
305 * multiple cost centers for one BB (struct BBCC) exist and the according
306 * BBCC is set by setup_bbcc.
321 BBCC* bbcc_list; /* BBCCs for same BB (see next_bbcc in BBCC) */
322 BBCC* last_bbcc; /* Temporary: Cached for faster access (LRU) *
521 BBCC* bbcc; \/* last BB executed *\/ member in struct:_exec_state
    [all...]

Completed in 149 milliseconds