HomeSort by relevance Sort by last modified time
    Searched refs:jccs (Results 1 - 3 of 3) sorted by null

  /external/valgrind/main/callgrind/
jumps.c 41 void CLG_(init_jcc_hash)(jcc_hash* jccs)
45 CLG_ASSERT(jccs != 0);
47 jccs->size = N_JCC_INITIAL_ENTRIES;
48 jccs->entries = 0;
49 jccs->table = (jCC**) CLG_MALLOC("cl.jumps.ijh.1",
50 jccs->size * sizeof(jCC*));
51 jccs->spontaneous = 0;
53 for (i = 0; i < jccs->size; i++)
54 jccs->table[i] = 0;
threads.c 121 CLG_(init_jcc_hash)( &(t->jccs) );
146 /* If we cumulate costs of threads, use TID 1 for all jccs/bccs */
149 CLG_(copy_current_jcc_hash) ( &(t->jccs) );
170 /* If we cumulate costs of threads, use TID 1 for all jccs/bccs */
173 CLG_(set_current_jcc_hash) ( &(t->jccs) );
global.h 242 * For fast lookup, JCCs are reachable with a hash table, keyed by
368 jCC* jcc_list; /* JCCs for Cond.Jumps from this exit */
395 ULong ret_counter; /* how often returned from jccs of this bbcc;
592 * If --separate-threads=no, BBCCs and JCCs can be shared by all threads, i.e.
609 jcc_hash jccs; member in struct:_thread_info

Completed in 79 milliseconds