/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=%d\n\n", bbcc->rec_index); 277 last->rec_index = bbcc->rec_index 1038 BBCC* bbcc; local 1066 BBCC* bbcc; local [all...] |
jumps.c | 77 static UInt jcc_hash_idx(BBCC* from, UInt jmp, BBCC* to, UInt size) 133 /* new jCC structure: a call was done to a BB of a BBCC 136 static jCC* new_jcc(BBCC* from, UInt jmp, BBCC* to) 155 /* insert into JCC chain of calling BBCC. 185 /* get the jCC for a call arc (BBCC->BBCC) */ 186 jCC* CLG_(get_jcc)(BBCC* from, UInt jmp, BBCC* to [all...] |
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...] |
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);
|
callstack.c | 186 void CLG_(push_call_stack)(BBCC* from, UInt jmp, BBCC* to, Addr sp, Bool skip) 352 * the ret_counter is used to check if a BBCC dump is needed.
|
Makefile.am | 35 bbcc.c \
|
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...] |
bb.c | 329 CLG_DEBUG(3, " delete_bb (Obj %s, off %#lx): %p, BBCC head: %p\n",
|
sim.c | [all...] |
/external/valgrind/none/tests/amd64/ |
pcmpstr64w.stdout.exp | 189 istri 45 aaaabbbbccccdddd 000000000000bbcc -> 00800008 00800008
|
pcmpstr64w.c | [all...] |
/external/valgrind/ |
Android.mk | 403 callgrind/bbcc.c \
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/ |
MatcherTest.java | 414 String[] posExamples = { "aacc", "bbcc", "cc" };
|