Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Instrumentation/
DPGOInstrumentation.h49 PGOInstrumentationGen(bool IsCS = false) : IsCS(IsCS) {} in IsCS() argument
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
/external/llvm-project/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
/external/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 __anondff3afef0111::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 __anondff3afef0111::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()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp372 PGOInstrumentationGenLegacyPass(bool IsCS = false) in PGOInstrumentationGenLegacyPass() argument
373 : ModulePass(ID), IsCS(IsCS) { in PGOInstrumentationGenLegacyPass()
382 bool IsCS; member in __anonea59465b0111::PGOInstrumentationGenLegacyPass
396 PGOInstrumentationUseLegacyPass(std::string Filename = "", bool IsCS = false) in PGOInstrumentationUseLegacyPass() argument
397 : ModulePass(ID), ProfileFileName(std::move(Filename)), IsCS(IsCS) { in PGOInstrumentationUseLegacyPass()
409 bool IsCS; member in __anonea59465b0111::PGOInstrumentationUseLegacyPass
453 ModulePass *llvm::createPGOInstrumentationGenLegacyPass(bool IsCS) { in INITIALIZE_PASS_DEPENDENCY()
454 return new PGOInstrumentationGenLegacyPass(IsCS); in INITIALIZE_PASS_DEPENDENCY()
468 bool IsCS) { in INITIALIZE_PASS_DEPENDENCY()
469 return new PGOInstrumentationUseLegacyPass(Filename.str(), IsCS); in INITIALIZE_PASS_DEPENDENCY()
[all …]
DInstrProfiling.cpp149 InstrProfilingLegacyPass(const InstrProfOptions &Options, bool IsCS = false) in InstrProfilingLegacyPass() argument
150 : ModulePass(ID), InstrProf(Options, IsCS) { in InstrProfilingLegacyPass()
433 bool IsCS) { in INITIALIZE_PASS_DEPENDENCY()
434 return new InstrProfilingLegacyPass(Options, IsCS); in INITIALIZE_PASS_DEPENDENCY()
1088 if (!IsCS) in emitInitialization()
/external/llvm-project/llvm/include/llvm/Transforms/
DInstrumentation.h84 ModulePass *createPGOInstrumentationGenLegacyPass(bool IsCS = false);
87 bool IsCS = false);
144 const InstrProfOptions &Options = InstrProfOptions(), bool IsCS = false);
/external/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);
/external/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()
/external/llvm-project/llvm/lib/Transforms/IPO/
DPassManagerBuilder.cpp325 bool IsCS = false) { in addPGOInstrPasses() argument
326 if (IsCS) { in addPGOInstrPasses()
336 PGOSampleUse.empty() && !IsCS) { in addPGOInstrPasses()
354 if ((EnablePGOInstrGen && !IsCS) || (EnablePGOCSInstrGen && IsCS)) { in addPGOInstrPasses()
355 MPM.add(createPGOInstrumentationGenLegacyPass(IsCS)); in addPGOInstrPasses()
361 Options.UseBFIInPromotion = IsCS; in addPGOInstrPasses()
363 MPM.add(createInstrProfilingLegacyPass(Options, IsCS)); in addPGOInstrPasses()
366 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse, IsCS)); in addPGOInstrPasses()
370 if (OptLevel > 0 && !IsCS) in addPGOInstrPasses()
/external/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 …]
/external/llvm-project/llvm/lib/Passes/
DPassBuilder.cpp836 bool RunProfileGen, bool IsCS, in addPGOInstrPasses() argument
845 if (!Level.isOptimizingForSize() && !IsCS && !DisablePreInliner) { in addPGOInstrPasses()
876 MPM.addPass(PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS)); in addPGOInstrPasses()
884 MPM.addPass(PGOInstrumentationGen(IsCS)); in addPGOInstrPasses()
899 Options.UseBFIInPromotion = IsCS; in addPGOInstrPasses()
900 MPM.addPass(InstrProfiling(Options, IsCS)); in addPGOInstrPasses()
904 bool RunProfileGen, bool IsCS, in addPGOInstrPassesForO0() argument
909 MPM.addPass(PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS)); in addPGOInstrPassesForO0()
917 MPM.addPass(PGOInstrumentationGen(IsCS)); in addPGOInstrPassesForO0()
924 Options.UseBFIInPromotion = IsCS; in addPGOInstrPassesForO0()
[all …]
/external/llvm-project/llvm/lib/ProfileData/
DInstrProfReader.cpp158 bool IsCS = false; in readHeader() local
168 IsCS = true; in readHeader()
179 HasCSIRLevelProfile = IsCS; in readHeader()
921 void InstrProfReader::accumulateCounts(CountSumOrPercent &Sum, bool IsCS) { in accumulateCounts() argument
926 if (FuncIsCS != IsCS) in accumulateCounts()
DInstrProf.cpp1117 void createIRLevelProfileFlagVar(Module &M, bool IsCS, in createIRLevelProfileFlagVar() argument
1122 if (IsCS) in createIRLevelProfileFlagVar()
1156 bool IsCS) { in accumulateCounts() argument
1157 auto getProfileSum = [IsCS](const std::string &Filename, in accumulateCounts()
1164 Reader->accumulateCounts(Sum, IsCS); in accumulateCounts()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/
DPassManagerBuilder.h217 void addPGOInstrPasses(legacy::PassManagerBase &MPM, bool IsCS);
/external/llvm-project/llvm/include/llvm/Transforms/IPO/
DPassManagerBuilder.h219 void addPGOInstrPasses(legacy::PassManagerBase &MPM, bool IsCS);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Passes/
DPassBuilder.h630 bool RunProfileGen, bool IsCS,
669 OptimizationLevel Level, bool RunProfileGen, bool IsCS,
/external/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()
/external/llvm-project/llvm/include/llvm/Passes/
DPassBuilder.h698 bool IsCS, std::string ProfileFile,
734 bool RunProfileGen, bool IsCS, std::string ProfileFile,
/external/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()
/external/llvm-project/llvm/lib/IR/
DModule.cpp585 Metadata *Module::getProfileSummary(bool IsCS) const { in getProfileSummary()
586 return (IsCS ? getModuleFlag("CSProfileSummary") in getProfileSummary()
/external/llvm-project/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp204 raw_fd_ostream &OS, bool IsCS) { in overlapInput() argument
925 raw_fd_ostream &OS, bool IsCS) { in overlapInstrProfile() argument
931 Error E = Overlap.accumulateCounts(BaseFilename, TestFilename, IsCS); in overlapInstrProfile()
944 IsCS); in overlapInstrProfile()
1880 cl::opt<bool> IsCS("cs", cl::init(false), in overlap_main() local
1909 IsCS); in overlap_main()
/external/llvm-project/llvm/include/llvm/ProfileData/
DInstrProf.h640 const std::string &TestFilename, bool IsCS);
1142 void createIRLevelProfileFlagVar(Module &M, bool IsCS,

12