Home
last modified time | relevance | path

Searched refs:IsCS (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp364 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 …]
DInstrProfiling.cpp153 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/
DPGOInstrumentation.h49 PGOInstrumentationGen(bool IsCS = false) : IsCS(IsCS) {} in IsCS() function
54 bool IsCS;
61 std::string RemappingFilename = "", bool IsCS = false);
69 bool IsCS; variable
DInstrProfiling.h37 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/
DInstrumentation.h92 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/
DPassManagerBuilder.cpp299 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/
DPassBuilder.cpp572 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/
DPassManagerBuilder.h217 void addPGOInstrPasses(legacy::PassManagerBase &MPM, bool IsCS);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Passes/
DPassBuilder.h630 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/
DInstrProf.cpp1133 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()
DInstrProfReader.cpp914 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/
DModule.cpp557 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/
DInstrProf.h634 const std::string &TestFilename, bool IsCS);
1133 void createIRLevelProfileFlagVar(Module &M, bool IsCS);
DInstrProfReader.h95 void accumulateCounts(CountSumOrPercent &Sum, bool IsCS);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DModule.h846 Metadata *getProfileSummary(bool IsCS);