HomeSort by: relevance | last modified time | path
    Searched refs:PGOReader (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenPGO.h 99 void applyFunctionAttributes(llvm::IndexedInstrProfReader *PGOReader,
101 void loadRegionCounts(llvm::IndexedInstrProfReader *PGOReader,
CodeGenPGO.cpp 35 llvm::IndexedInstrProfReader *PGOReader = CGM.getPGOReader();
38 PGOReader ? PGOReader->getVersion() : llvm::IndexedInstrProf::Version);
144 static PGOHashVersion getPGOHashVersion(llvm::IndexedInstrProfReader *PGOReader,
146 if (PGOReader->getVersion() <= 4)
148 if (PGOReader->getVersion() <= 5)
797 llvm::IndexedInstrProfReader *PGOReader = CGM.getPGOReader();
798 if (!InstrumentRegions && !PGOReader)
823 if (PGOReader) {
825 loadRegionCounts(PGOReader, SM.isInMainFile(D->getLocation()))
    [all...]
CodeGenModule.h 335 std::unique_ptr<llvm::IndexedInstrProfReader> PGOReader;
639 llvm::IndexedInstrProfReader *getPGOReader() const { return PGOReader.get(); }
CodeGenModule.cpp 176 PGOReader = std::move(ReaderOrErr.get());
502 if (PGOReader) {
504 PGOReader->getSummary(/* UseCS */ false).getMD(VMContext),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 1069 bool readCounters(IndexedInstrProfReader *PGOReader, bool &AllZeros,
1275 bool PGOUseFunc::readCounters(IndexedInstrProfReader *PGOReader, bool &AllZeros,
1279 PGOReader->getInstrProfRecord(FuncInfo.FuncName, FuncInfo.FunctionHash);
1346 ProgramMaxCount = PGOReader->getMaximumFunctionCount(IsCS);
1814 std::unique_ptr<IndexedInstrProfReader> PGOReader =
1816 if (!PGOReader) {
1818 StringRef("Cannot get PGOReader")));
1821 if (!PGOReader->hasCSIRLevelProfile() && IsCS)
1825 if (!PGOReader->isIRLevelProfile()) {
1834 M.setProfileSummary(PGOReader->getSummary(IsCS).getMD(M.getContext())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInvocation.cpp 1295 std::unique_ptr<llvm::IndexedInstrProfReader> PGOReader =
1297 if (PGOReader->isIRLevelProfile()) {
1298 if (PGOReader->hasCSIRLevelProfile())

Completed in 32 milliseconds