HomeSort by: relevance | last modified time | path
    Searched defs:Profiles (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProfReader.h 9 // This file contains definitions needed for reading sample profiles.
18 // Sample profiles are written as ASCII text. The file is divided into
346 : Profiles(0), Ctx(C), Buffer(std::move(B)), Format(Format) {}
353 /// The interface to read sample profiles from the associated file.
363 /// The implementaion to read sample profiles from the associated file.
370 /// support loading function profiles on demand, return true when the
372 /// which doesn't support loading function profiles on demand.
375 /// Print all the profiles on stream \p OS.
393 return &Profiles[CanonName];
400 auto It = Profiles.find(Fname)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
SampleProfReader.cpp 9 // This file implements the class that reads LLVM sample profiles. It
54 OS << "Function: " << FName << ": " << Profiles[FName];
57 /// Dump all the function profiles found on stream \p OS.
59 for (const auto &I : Profiles)
268 Profiles[FContext] = FunctionSamples();
269 FunctionSamples &FProfile = Profiles[FContext];
339 assert((CSProfileCount == 0 || CSProfileCount == Profiles.size()) &&
342 assert((ProbeProfileCount == 0 || ProbeProfileCount == Profiles.size()) &&
343 "Cannot have both probe-based profiles and regular profiles");
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 82 // Hint for common error of forgetting --sample for sample profiles.
215 // Skip the empty profiles by returning sliently.
244 // Skip the empty profiles by returning sliently.
396 exitWithError("No profiles could be merged.");
503 // and adjust the profiles of those functions in the instr profile.
698 StringMap<FunctionSamples> &Profiles = Reader->getProfiles();
707 for (StringMap<FunctionSamples>::iterator I = Profiles.begin(),
708 E = Profiles.end();
867 "Fail only if all profiles are invalid.")));
890 "Merge context sample profiles whose count is below cold threshold"))
    [all...]

Completed in 73 milliseconds