Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.cpp461 std::ostringstream OContextStr; in getContextKeyStr() local
463 if (OContextStr.str().size()) in getContextKeyStr()
464 OContextStr << " @ "; in getContextKeyStr()
472 OContextStr << "0x" in getContextKeyStr()
476 return OContextStr.str(); in getContextKeyStr()
/openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/
H A DSampleProf.h474 std::ostringstream OContextStr;
475 OContextStr << FuncName.str();
477 OContextStr << ":" << Location.LineOffset;
479 OContextStr << "." << Location.Discriminator;
481 return OContextStr.str();
602 std::ostringstream OContextStr;
604 if (OContextStr.str().size()) {
605 OContextStr << " @ ";
607 OContextStr << Context[I].toString(I != Context.size() - 1 ||
610 return OContextStr.str();
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCPseudoProbe.cpp288 std::ostringstream OContextStr; in getInlineContextStr() local
292 if (OContextStr.str().size()) in getInlineContextStr()
293 OContextStr << " @ "; in getInlineContextStr()
294 OContextStr << Cxt.first.str() << ":" << Cxt.second; in getInlineContextStr()
296 return OContextStr.str(); in getInlineContextStr()