Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-profgen/
H A DCallContext.h34 std::ostringstream OContextStr; in getLocWithContext() local
36 if (OContextStr.str().size()) in getLocWithContext()
37 OContextStr << " @ "; in getLocWithContext()
38 OContextStr << getCallSite(Callsite); in getLocWithContext()
40 return OContextStr.str(); in getLocWithContext()
47 std::ostringstream OContextStr; in getReversedLocWithContext() local
49 if (OContextStr.str().size()) in getReversedLocWithContext()
50 OContextStr << " @ "; in getReversedLocWithContext()
51 OContextStr << getCallSite(Callsite); in getReversedLocWithContext()
53 return OContextStr.str(); in getReversedLocWithContext()
H A DPerfReader.cpp465 std::ostringstream OContextStr; in getContextKeyStr() local
467 if (OContextStr.str().size()) in getContextKeyStr()
468 OContextStr << " @ "; in getContextKeyStr()
469 OContextStr << "0x" in getContextKeyStr()
474 return OContextStr.str(); in getContextKeyStr()
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DSampleProf.h466 std::ostringstream OContextStr;
467 OContextStr << FuncName.str();
469 OContextStr << ":" << Location.LineOffset;
471 OContextStr << "." << Location.Discriminator;
473 return OContextStr.str();
594 std::ostringstream OContextStr;
596 if (OContextStr.str().size()) {
597 OContextStr << " @ ";
599 OContextStr << Context[I].toString(I != Context.size() - 1 ||
602 return OContextStr.str();
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCPseudoProbe.cpp245 std::ostringstream OContextStr; in getInlineContextStr() local
249 if (OContextStr.str().size()) in getInlineContextStr()
250 OContextStr << " @ "; in getInlineContextStr()
251 OContextStr << Cxt.first.str() << ":" << Cxt.second; in getInlineContextStr()
253 return OContextStr.str(); in getInlineContextStr()