Home
last modified time | relevance | path

Searched refs:OContextStr (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DCallContext.h39 std::ostringstream OContextStr; in getLocWithContext() local
41 if (OContextStr.str().size()) in getLocWithContext()
42 OContextStr << " @ "; in getLocWithContext()
43 OContextStr << getCallSite(Callsite); in getLocWithContext()
45 return OContextStr.str(); in getLocWithContext()
52 std::ostringstream OContextStr; in getReversedLocWithContext() local
54 if (OContextStr.str().size()) in getReversedLocWithContext()
55 OContextStr << " @ "; in getReversedLocWithContext()
56 OContextStr << getCallSite(Callsite); in getReversedLocWithContext()
58 return OContextStr.str(); in getReversedLocWithContext()
H A DProfiledBinary.cpp161 std::ostringstream OContextStr; in getExpandedContextStr() local
163 if (OContextStr.str().size()) { in getExpandedContextStr()
164 OContextStr << " @ "; in getExpandedContextStr()
166 OContextStr << ContextVec[I]; in getExpandedContextStr()
169 if (OContextStr.str().size()) in getExpandedContextStr()
170 OContextStr << " @ "; in getExpandedContextStr()
171 OContextStr << StringRef(LeafFrame).split(":").first.str(); in getExpandedContextStr()
172 return OContextStr.str(); in getExpandedContextStr()
H A DPseudoProbe.cpp65 std::ostringstream OContextStr; in getInlineContextStr() local
69 if (OContextStr.str().size()) in getInlineContextStr()
70 OContextStr << " @ "; in getInlineContextStr()
71 OContextStr << CxtStr; in getInlineContextStr()
73 return OContextStr.str(); in getInlineContextStr()
H A DProfileGenerator.cpp607 std::ostringstream OContextStr; in getFunctionProfileForLeafProbe() local
609 if (OContextStr.str().size()) in getFunctionProfileForLeafProbe()
610 OContextStr << " @ "; in getFunctionProfileForLeafProbe()
611 OContextStr << ContextStrStack[I]; in getFunctionProfileForLeafProbe()
616 if (OContextStr.str().size()) in getFunctionProfileForLeafProbe()
617 OContextStr << " @ "; in getFunctionProfileForLeafProbe()
618 OContextStr << StringRef(LeafFrame).split(":").first.str(); in getFunctionProfileForLeafProbe()
621 getFunctionProfileForContext(OContextStr.str(), WasLeafInlined); in getFunctionProfileForLeafProbe()