Home | History | Annotate | Download | only in gprof

Lines Matching refs:Arc

61   /* Keep arc if it is on INCL_ARCS table or if the INCL_ARCS table
69 printf (_("[cg_tally] arc from %s to %s traversed %lu times\n"),
75 /* Read a record from file IFP describing an arc in the function
76 call-graph and the count of how many times the arc has been
99 /* Add this arc: */
110 Arc *arc;
115 for (arc = sym->cg.children; arc; arc = arc->next_child)
118 || gmon_io_write_vma (ofp, arc->parent->addr)
119 || gmon_io_write_vma (ofp, arc->child->addr)
120 || gmon_io_write_32 (ofp, arc->count))
127 (unsigned long) arc->parent->addr,
128 (unsigned long) arc->child->addr, arc->count));