Lines Matching refs:arc

604 	struct rawarc arc;  in dumpsum_ostyle()  local
646 arc.raw_frompc = arcp->arc_parentp->value; in dumpsum_ostyle()
647 arc.raw_selfpc = arcp->arc_childp->value; in dumpsum_ostyle()
648 arc.raw_count = arcp->arc_count; in dumpsum_ostyle()
649 if (fwrite(&arc, sizeof (arc), 1, sfile) != 1) { in dumpsum_ostyle()
669 "0x%llx count %lld\n", arc.raw_frompc, in dumpsum_ostyle()
670 arc.raw_selfpc, arc.raw_count); in dumpsum_ostyle()
984 struct rawarc arc; in process_cgraph() local
1023 arc.raw_selfpc = calleep->topc; in process_cgraph()
1042 arc.raw_frompc = callerp->frompc; in process_cgraph()
1043 arc.raw_count = callerp->count; in process_cgraph()
1049 "%lld>\n", arc.raw_frompc, arc.raw_selfpc, in process_cgraph()
1050 arc.raw_count); in process_cgraph()
1053 tally(caller_mi, callee_mi, &arc); in process_cgraph()
1380 struct rawarc arc; in readarcs() local
1396 arc.raw_frompc = s_highpc + 0x10; in readarcs()
1398 arc.raw_frompc = in readarcs()
1400 arc.raw_selfpc = (pctype)rtld_arc64.cg_to; in readarcs()
1401 arc.raw_count = (actype)rtld_arc64.cg_count; in readarcs()
1415 arc.raw_frompc = s_highpc + 0x10; in readarcs()
1417 arc.raw_frompc = (pctype) in readarcs()
1419 arc.raw_selfpc = (pctype) in readarcs()
1421 arc.raw_count = (actype)rtld_arc.cg_count; in readarcs()
1425 if (fread(&arc, sizeof (struct rawarc), 1, in readarcs()
1439 arc.raw_frompc = (pctype)arc32.raw_frompc; in readarcs()
1440 arc.raw_selfpc = (pctype)arc32.raw_selfpc; in readarcs()
1441 arc.raw_count = (actype)arc32.raw_count; in readarcs()
1448 "0x%llx count %lld\n", arc.raw_frompc, in readarcs()
1449 arc.raw_selfpc, arc.raw_count); in readarcs()
1455 tally(&modules, &modules, &arc); in readarcs()