Home
last modified time | relevance | path

Searched refs:getCurrentLine (Results 1 – 2 of 2) sorted by relevance

/llvm-project/llvm/tools/llvm-profgen/
H A DPerfReader.cpp406 if (isMMapEvent(TraceIt.getCurrentLine()) && in convertPerfDataToTrace()
407 extractMMapEventForBinary(Binary, TraceIt.getCurrentLine(), MMap)) { in convertPerfDataToTrace()
586 TraceIt.getCurrentLine().rtrim().split(Records, " ", -1, false); in extractLBRStack()
590 << TraceIt.getCurrentLine() << "\n"; in extractLBRStack()
653 while (!TraceIt.isAtEoF() && !TraceIt.getCurrentLine().starts_with(" 0x")) { in extractCallstack()
654 StringRef FrameStr = TraceIt.getCurrentLine().ltrim(); in extractCallstack()
701 while (!TraceIt.isAtEoF() && !TraceIt.getCurrentLine().starts_with(" 0x")) { in warnIfMissingMMap()
746 if (!TraceIt.isAtEoF() && TraceIt.getCurrentLine().starts_with(" 0x")) in parseSample()
753 if (!TraceIt.isAtEoF() && TraceIt.getCurrentLine().starts_with(" 0x")) { in parseSample()
845 TraceIt.getCurrentLine() in readSampleCounters()
[all...]
H A DPerfReader.h43 StringRef getCurrentLine() { in getCurrentLine() function