Home
last modified time | relevance | path

Searched full:arcp (Results 1 – 15 of 15) sorted by relevance

/freebsd/usr.bin/gprof/
H A Darcs.c51 arctype *arcp; in addarc() local
59 arcp = arclookup( parentp , childp ); in addarc()
60 if ( arcp != 0 ) { in addarc()
67 arcp -> arc_count , count ); in addarc()
70 arcp -> arc_count += count; in addarc()
73 arcp = (arctype *)calloc( 1 , sizeof *arcp ); in addarc()
74 if (arcp == NULL) in addarc()
76 arcp -> arc_parentp = parentp; in addarc()
77 arcp -> arc_childp = childp; in addarc()
78 arcp -> arc_count = count; in addarc()
[all …]
H A Dprintgprof.c300 arctype *arcp; in printparents() local
314 for ( arcp = childp -> parents ; arcp ; arcp = arcp -> arc_parentlist ) { in printparents()
315 parentp = arcp -> arc_parentp; in printparents()
316 if ( childp == parentp || ( arcp -> arc_flags & DEADARC ) || in printparents()
323 arcp -> arc_count , "" ); in printparents()
332 arcp -> arc_time / hz , arcp -> arc_childtime / hz , in printparents()
333 arcp -> arc_count , cycleheadp -> npropcall ); in printparents()
344 arctype *arcp; in printchildren() local
347 arcp = parentp -> children; in printchildren()
348 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in printchildren()
[all …]
H A Dlookup.c88 arctype *arcp; in arclookup() local
100 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in arclookup()
104 arcp -> arc_parentp -> name , in arclookup()
105 arcp -> arc_childp -> name ); in arclookup()
108 if ( arcp -> arc_childp == childp ) { in arclookup()
109 return arcp; in arclookup()
H A Ddfn.c62 arctype *arcp; in dfn() local
91 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in dfn()
92 if ( arcp -> arc_flags & DEADARC ) in dfn()
94 dfn( arcp -> arc_childp ); in dfn()
H A Dgprof.c337 register arctype *arcp; in dumpsum() local
357 for ( arcp = nlp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in dumpsum()
358 arc.raw_frompc = arcp -> arc_parentp -> value; in dumpsum()
359 arc.raw_selfpc = arcp -> arc_childp -> value; in dumpsum()
360 arc.raw_count = arcp -> arc_count; in dumpsum()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DOperator.cpp273 O << " arcp"; in print()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp919 // TODO: Handle other numerator values with arcp. in optimizeWithRsq()
943 // a/b -> a*rcp(b) when arcp is allowed, and we only need provide ULP 1.0
1108 // TODO: Decide on an interpretation for interactions between afn + arcp + in visitFDiv()
2232 // TODO: We should also handle the arcp case for the fdiv with non-1 value in visitSqrt()
H A DAMDGPULegalizerInfo.cpp4822 // For f16 require afn or arcp. in legalizeFastUnsafeFDIV()
H A DSIISelLowering.cpp10486 // For f16 require afn or arcp. in lowerFastUnsafeFDIV()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp209 .Case("arcp", MIToken::kw_arcp) in getIdentifierKind()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRPrinter.cpp791 OS << "arcp "; in print()
H A DMachineInstr.cpp1733 OS << "arcp "; in print()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp562 KEYWORD(arcp); in LexIdentifier()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp655 OS << " arcp"; in print_details()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp699 // FIXME: This seems like it should also be checking for arcp in foldFMulReassoc()