Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
H A 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
H A DInstrProfiling.h37 InstrProfiling() : IsCS(false) {} in InstrProfiling()
38 InstrProfiling(const InstrProfOptions &Options, bool IsCS = false)
39 : Options(Options), IsCS(IsCS) {} in Options()
67 bool IsCS; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp402 PGOInstrumentationGenLegacyPass(bool IsCS = false) in PGOInstrumentationGenLegacyPass() argument
403 : ModulePass(ID), IsCS(IsCS) { in PGOInstrumentationGenLegacyPass()
412 bool IsCS; member in __anon333165960111::PGOInstrumentationGenLegacyPass
426 PGOInstrumentationUseLegacyPass(std::string Filename = "", bool IsCS = false) in PGOInstrumentationUseLegacyPass() argument
427 : ModulePass(ID), ProfileFileName(std::move(Filename)), IsCS(IsCS) { in PGOInstrumentationUseLegacyPass()
439 bool IsCS; member in __anon333165960111::PGOInstrumentationUseLegacyPass
483 ModulePass *llvm::createPGOInstrumentationGenLegacyPass(bool IsCS) { in INITIALIZE_PASS_DEPENDENCY()
484 return new PGOInstrumentationGenLegacyPass(IsCS); in INITIALIZE_PASS_DEPENDENCY()
498 bool IsCS) { in INITIALIZE_PASS_DEPENDENCY()
499 return new PGOInstrumentationUseLegacyPass(Filename.str(), IsCS); in INITIALIZE_PASS_DEPENDENCY()
[all …]
H A DInstrProfiling.cpp149 InstrProfilingLegacyPass(const InstrProfOptions &Options, bool IsCS = false) in InstrProfilingLegacyPass() argument
150 : ModulePass(ID), InstrProf(Options, IsCS) { in InstrProfilingLegacyPass()
434 bool IsCS) { in INITIALIZE_PASS_DEPENDENCY()
435 return new InstrProfilingLegacyPass(Options, IsCS); in INITIALIZE_PASS_DEPENDENCY()
1139 if (!IsCS) in emitInitialization()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/
H A DInstrumentation.h83 ModulePass *createPGOInstrumentationGenLegacyPass(bool IsCS = false);
86 bool IsCS = false);
143 const InstrProfOptions &Options = InstrProfOptions(), bool IsCS = false);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DPassManagerBuilder.cpp331 bool IsCS = false) { in addPGOInstrPasses() argument
332 if (IsCS) { in addPGOInstrPasses()
340 if (OptLevel > 0 && !DisablePreInliner && PGOSampleUse.empty() && !IsCS) { in addPGOInstrPasses()
362 if ((EnablePGOInstrGen && !IsCS) || (EnablePGOCSInstrGen && IsCS)) { in addPGOInstrPasses()
363 MPM.add(createPGOInstrumentationGenLegacyPass(IsCS)); in addPGOInstrPasses()
369 Options.UseBFIInPromotion = IsCS; in addPGOInstrPasses()
371 MPM.add(createInstrProfilingLegacyPass(Options, IsCS)); in addPGOInstrPasses()
374 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse, IsCS)); in addPGOInstrPasses()
378 if (OptLevel > 0 && !IsCS) in addPGOInstrPasses()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Passes/
H A DPassBuilder.cpp871 bool RunProfileGen, bool IsCS, in addPGOInstrPasses() argument
875 if (!IsCS && !DisablePreInliner) { in addPGOInstrPasses()
907 MPM.addPass(PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS)); in addPGOInstrPasses()
915 MPM.addPass(PGOInstrumentationGen(IsCS)); in addPGOInstrPasses()
930 Options.UseBFIInPromotion = IsCS; in addPGOInstrPasses()
931 MPM.addPass(InstrProfiling(Options, IsCS)); in addPGOInstrPasses()
935 bool RunProfileGen, bool IsCS, in addPGOInstrPassesForO0() argument
940 MPM.addPass(PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS)); in addPGOInstrPassesForO0()
948 MPM.addPass(PGOInstrumentationGen(IsCS)); in addPGOInstrPassesForO0()
955 Options.UseBFIInPromotion = IsCS; in addPGOInstrPassesForO0()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A 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()
H A DInstrProf.cpp1139 void createIRLevelProfileFlagVar(Module &M, bool IsCS, in createIRLevelProfileFlagVar() argument
1144 if (IsCS) in createIRLevelProfileFlagVar()
1178 bool IsCS) { in accumulateCounts() argument
1179 auto getProfileSum = [IsCS](const std::string &Filename, in accumulateCounts()
1186 Reader->accumulateCounts(Sum, IsCS); in accumulateCounts()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DPassManagerBuilder.h219 void addPGOInstrPasses(legacy::PassManagerBase &MPM, bool IsCS);
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Passes/
H A DPassBuilder.h695 bool IsCS, std::string ProfileFile,
734 bool RunProfileGen, bool IsCS, std::string ProfileFile,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DModule.cpp640 Metadata *Module::getProfileSummary(bool IsCS) const { in getProfileSummary()
641 return (IsCS ? getModuleFlag("CSProfileSummary") in getProfileSummary()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp212 raw_fd_ostream &OS, bool IsCS) { in overlapInput() argument
975 raw_fd_ostream &OS, bool IsCS) { in overlapInstrProfile() argument
981 Error E = Overlap.accumulateCounts(BaseFilename, TestFilename, IsCS); in overlapInstrProfile()
994 IsCS); in overlapInstrProfile()
1937 cl::opt<bool> IsCS( in overlap_main() local
1969 IsCS); in overlap_main()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DInstrProf.h640 const std::string &TestFilename, bool IsCS);
1144 void createIRLevelProfileFlagVar(Module &M, bool IsCS,
H A DInstrProfReader.h108 void accumulateCounts(CountSumOrPercent &Sum, bool IsCS);
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DModule.h874 Metadata *getProfileSummary(bool IsCS) const;