Lines Matching defs:arc

272 			 * Dump this callee's raw arc information with all
568 struct rawarc arc;
603 * dump the normalized raw arc information. For old-style dumping,
610 arc.raw_frompc = arcp->arc_parentp->value;
611 arc.raw_selfpc = arcp->arc_childp->value;
612 arc.raw_count = arcp->arc_count;
613 if (fwrite(&arc, sizeof (arc), 1, sfile) != 1) {
633 "0x%llx count %lld\n", arc.raw_frompc,
634 arc.raw_selfpc, arc.raw_count);
706 * if count == 0 this is a null arc and
733 (void) printf("[tally] arc from %s to %s traversed "
947 struct rawarc arc;
986 arc.raw_selfpc = calleep->topc;
1005 arc.raw_frompc = callerp->frompc;
1006 arc.raw_count = callerp->count;
1011 "[process_cgraph] arc <%#llx, %#llx, "
1012 "%lld>\n", arc.raw_frompc, arc.raw_selfpc,
1013 arc.raw_count);
1016 tally(caller_mi, callee_mi, &arc);
1343 struct rawarc arc;
1359 arc.raw_frompc = s_highpc + 0x10;
1361 arc.raw_frompc =
1363 arc.raw_selfpc = (pctype)rtld_arc64.cg_to;
1364 arc.raw_count = (actype)rtld_arc64.cg_count;
1378 arc.raw_frompc = s_highpc + 0x10;
1380 arc.raw_frompc = (pctype)
1382 arc.raw_selfpc = (pctype)
1384 arc.raw_count = (actype)rtld_arc.cg_count;
1388 if (fread(&arc, sizeof (struct rawarc), 1,
1395 * into the 32-bit raw arc structure, and
1396 * assign the members into the actual arc.
1402 arc.raw_frompc = (pctype)arc32.raw_frompc;
1403 arc.raw_selfpc = (pctype)arc32.raw_selfpc;
1404 arc.raw_count = (actype)arc32.raw_count;
1411 "0x%llx count %lld\n", arc.raw_frompc,
1412 arc.raw_selfpc, arc.raw_count);
1416 * add this arc
1418 tally(&modules, &modules, &arc);