Lines Matching refs:OutFile
371 raw_fd_ostream OutFile(OutputFilename, EC, sys::fs::OpenFlags::OF_None); in writeAutoFDOData() local
402 OutFile << FallthroughLBRs.size() << "\n"; in writeAutoFDOData()
406 OutFile << Twine::utohexstr(filterAddress(Trace.From)) << "-" in writeAutoFDOData()
411 OutFile << BasicSamples.size() << "\n"; in writeAutoFDOData()
415 OutFile << Twine::utohexstr(filterAddress(PC)) << ":" << HitCount << "\n"; in writeAutoFDOData()
418 OutFile << BranchLBRs.size() << "\n"; in writeAutoFDOData()
422 OutFile << Twine::utohexstr(filterAddress(Trace.From)) << "->" in writeAutoFDOData()
2208 raw_fd_ostream OutFile(OutputFilename, EC, sys::fs::OpenFlags::OF_None); in writeAggregatedFile() local
2214 auto writeLocation = [&OutFile, &WriteMemLocs](const Location &Loc) { in writeAggregatedFile()
2216 OutFile << (Loc.IsSymbol ? "4 " : "3 "); in writeAggregatedFile()
2218 OutFile << (Loc.IsSymbol ? "1 " : "0 "); in writeAggregatedFile()
2219 OutFile << (Loc.Name.empty() ? "[unknown]" : getEscapedName(Loc.Name)) in writeAggregatedFile()
2227 OutFile << "boltedcollection\n"; in writeAggregatedFile()
2229 OutFile << "no_lbr"; in writeAggregatedFile()
2231 OutFile << " " << Entry.getKey(); in writeAggregatedFile()
2232 OutFile << "\n"; in writeAggregatedFile()
2237 OutFile << SI.Hits << "\n"; in writeAggregatedFile()
2246 OutFile << BI.Mispreds << " " << BI.Branches << "\n"; in writeAggregatedFile()
2256 OutFile << BI.Mispreds << " " << BI.Branches << "\n"; in writeAggregatedFile()
2266 OutFile << MemEvent.Count << "\n"; in writeAggregatedFile()