/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | PGOInstrumentation.cpp | 364 PGOInstrumentationGenLegacyPass(bool IsCS = false) in PGOInstrumentationGenLegacyPass() argument 365 : ModulePass(ID), IsCS(IsCS) { in PGOInstrumentationGenLegacyPass() 374 bool IsCS; member in __anon71b8f0620111::PGOInstrumentationGenLegacyPass 387 PGOInstrumentationUseLegacyPass(std::string Filename = "", bool IsCS = false) in PGOInstrumentationUseLegacyPass() argument 388 : ModulePass(ID), ProfileFileName(std::move(Filename)), IsCS(IsCS) { in PGOInstrumentationUseLegacyPass() 400 bool IsCS; member in __anon71b8f0620111::PGOInstrumentationUseLegacyPass 442 ModulePass *llvm::createPGOInstrumentationGenLegacyPass(bool IsCS) { in INITIALIZE_PASS_DEPENDENCY() 443 return new PGOInstrumentationGenLegacyPass(IsCS); in INITIALIZE_PASS_DEPENDENCY() 457 bool IsCS) { in INITIALIZE_PASS_DEPENDENCY() 458 return new PGOInstrumentationUseLegacyPass(Filename.str(), IsCS); in INITIALIZE_PASS_DEPENDENCY() [all …]
|
D | InstrProfiling.cpp | 153 InstrProfilingLegacyPass(const InstrProfOptions &Options, bool IsCS = false) in InstrProfilingLegacyPass() argument 154 : ModulePass(ID), InstrProf(Options, IsCS) {} in InstrProfilingLegacyPass() 399 bool IsCS) { in INITIALIZE_PASS_DEPENDENCY() 400 return new InstrProfilingLegacyPass(Options, IsCS); in INITIALIZE_PASS_DEPENDENCY() 1027 if (!IsCS) in emitInitialization()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Instrumentation/ |
D | PGOInstrumentation.h | 49 PGOInstrumentationGen(bool IsCS = false) : IsCS(IsCS) {} in IsCS() function 54 bool IsCS; 61 std::string RemappingFilename = "", bool IsCS = false); 69 bool IsCS; variable
|
D | InstrProfiling.h | 37 InstrProfiling() : IsCS(false) {} in InstrProfiling() 38 InstrProfiling(const InstrProfOptions &Options, bool IsCS = false) 39 : Options(Options), IsCS(IsCS) {} in Options() 66 bool IsCS; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/ |
D | Instrumentation.h | 92 ModulePass *createPGOInstrumentationGenLegacyPass(bool IsCS = false); 95 bool IsCS = false); 151 const InstrProfOptions &Options = InstrProfOptions(), bool IsCS = false);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | PassManagerBuilder.cpp | 299 bool IsCS = false) { in addPGOInstrPasses() argument 300 if (IsCS) { in addPGOInstrPasses() 310 PGOSampleUse.empty() && !IsCS) { in addPGOInstrPasses() 328 if ((EnablePGOInstrGen && !IsCS) || (EnablePGOCSInstrGen && IsCS)) { in addPGOInstrPasses() 329 MPM.add(createPGOInstrumentationGenLegacyPass(IsCS)); in addPGOInstrPasses() 335 Options.UseBFIInPromotion = IsCS; in addPGOInstrPasses() 337 MPM.add(createInstrProfilingLegacyPass(Options, IsCS)); in addPGOInstrPasses() 340 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse, IsCS)); in addPGOInstrPasses() 344 if (OptLevel > 0 && !IsCS) in addPGOInstrPasses()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Passes/ |
D | PassBuilder.cpp | 572 bool RunProfileGen, bool IsCS, in addPGOInstrPasses() argument 581 if (!isOptimizingForSize(Level) && !IsCS) { in addPGOInstrPasses() 614 MPM.addPass(PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS)); in addPGOInstrPasses() 622 MPM.addPass(PGOInstrumentationGen(IsCS)); in addPGOInstrPasses() 635 Options.UseBFIInPromotion = IsCS; in addPGOInstrPasses() 636 MPM.addPass(InstrProfiling(Options, IsCS)); in addPGOInstrPasses() 641 bool IsCS, std::string ProfileFile, in addPGOInstrPassesForO0() argument 645 MPM.addPass(PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS)); in addPGOInstrPassesForO0() 653 MPM.addPass(PGOInstrumentationGen(IsCS)); in addPGOInstrPassesForO0() 660 Options.UseBFIInPromotion = IsCS; in addPGOInstrPassesForO0() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/ |
D | PassManagerBuilder.h | 217 void addPGOInstrPasses(legacy::PassManagerBase &MPM, bool IsCS);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Passes/ |
D | PassBuilder.h | 630 bool RunProfileGen, bool IsCS, 669 OptimizationLevel Level, bool RunProfileGen, bool IsCS,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | InstrProf.cpp | 1133 void createIRLevelProfileFlagVar(Module &M, bool IsCS) { in createIRLevelProfileFlagVar() argument 1137 if (IsCS) in createIRLevelProfileFlagVar() 1169 bool IsCS) { in accumulateCounts() argument 1170 auto getProfileSum = [IsCS](const std::string &Filename, in accumulateCounts() 1177 Reader->accumulateCounts(Sum, IsCS); in accumulateCounts()
|
D | InstrProfReader.cpp | 914 void InstrProfReader::accumulateCounts(CountSumOrPercent &Sum, bool IsCS) { in accumulateCounts() argument 919 if (FuncIsCS != IsCS) in accumulateCounts()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Module.cpp | 557 Metadata *Module::getProfileSummary(bool IsCS) { in getProfileSummary() argument 558 return (IsCS ? getModuleFlag("CSProfileSummary") in getProfileSummary()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | InstrProf.h | 634 const std::string &TestFilename, bool IsCS); 1133 void createIRLevelProfileFlagVar(Module &M, bool IsCS);
|
D | InstrProfReader.h | 95 void accumulateCounts(CountSumOrPercent &Sum, bool IsCS);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Module.h | 846 Metadata *getProfileSummary(bool IsCS);
|