Home | History | Annotate | Download | only in callgrind

Lines Matching refs:rec_array

120       /* every bbcc should have a rec_array */
121 CLG_ASSERT(bbcc->rec_array != 0);
124 if ((bbcc2 = bbcc->rec_array[j]) == 0) continue;
138 * BBCCs for other recursion levels are in bbcc->rec_array.
263 * cxt, rec_index, rec_array, next_bbcc, next1, next2
392 bbcc->rec_array = new_recursion(cxt->fn[0]->separate_recursions);
393 bbcc->rec_array[0] = bbcc;
402 CLG_ASSERT(orig->rec_array);
404 CLG_ASSERT(orig->rec_array[rec_index] ==0);
409 bbcc->rec_array = orig->rec_array;
410 bbcc->rec_array[rec_index] = bbcc;
457 bbcc->rec_array = 0;
520 source_bbcc->rec_array = new_recursion(caller->separate_recursions);
521 source_bbcc->rec_array[0] = source_bbcc;
791 CLG_ASSERT(bbcc->rec_array == 0);
794 bbcc->rec_array =
796 bbcc->rec_array[0] = bbcc;
853 if (bbcc->rec_array[idx])
854 bbcc = bbcc->rec_array[idx];
858 CLG_ASSERT(bbcc->rec_array[bbcc->rec_index] == bbcc);