Lines Matching refs:arc

568 	struct rawarc arc;  in dumpsum_ostyle()  local
610 arc.raw_frompc = arcp->arc_parentp->value; in dumpsum_ostyle()
611 arc.raw_selfpc = arcp->arc_childp->value; in dumpsum_ostyle()
612 arc.raw_count = arcp->arc_count; in dumpsum_ostyle()
613 if (fwrite(&arc, sizeof (arc), 1, sfile) != 1) { in dumpsum_ostyle()
633 "0x%llx count %lld\n", arc.raw_frompc, in dumpsum_ostyle()
634 arc.raw_selfpc, arc.raw_count); in dumpsum_ostyle()
947 struct rawarc arc; in process_cgraph() local
986 arc.raw_selfpc = calleep->topc; in process_cgraph()
1005 arc.raw_frompc = callerp->frompc; in process_cgraph()
1006 arc.raw_count = callerp->count; in process_cgraph()
1012 "%lld>\n", arc.raw_frompc, arc.raw_selfpc, in process_cgraph()
1013 arc.raw_count); in process_cgraph()
1016 tally(caller_mi, callee_mi, &arc); in process_cgraph()
1343 struct rawarc arc; in readarcs() local
1359 arc.raw_frompc = s_highpc + 0x10; in readarcs()
1361 arc.raw_frompc = in readarcs()
1363 arc.raw_selfpc = (pctype)rtld_arc64.cg_to; in readarcs()
1364 arc.raw_count = (actype)rtld_arc64.cg_count; in readarcs()
1378 arc.raw_frompc = s_highpc + 0x10; in readarcs()
1380 arc.raw_frompc = (pctype) in readarcs()
1382 arc.raw_selfpc = (pctype) in readarcs()
1384 arc.raw_count = (actype)rtld_arc.cg_count; in readarcs()
1388 if (fread(&arc, sizeof (struct rawarc), 1, in readarcs()
1402 arc.raw_frompc = (pctype)arc32.raw_frompc; in readarcs()
1403 arc.raw_selfpc = (pctype)arc32.raw_selfpc; in readarcs()
1404 arc.raw_count = (actype)arc32.raw_count; in readarcs()
1411 "0x%llx count %lld\n", arc.raw_frompc, in readarcs()
1412 arc.raw_selfpc, arc.raw_count); in readarcs()
1418 tally(&modules, &modules, &arc); in readarcs()