Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DInstrProfiling.h30 const bool IsCS = false; variable
34 InstrProfilingLoweringPass(const InstrProfOptions &Options, bool IsCS = false)
35 : Options(Options), IsCS(IsCS) {} in Options()
H A DPGOInstrumentation.h73 std::string RemappingFilename = "", bool IsCS = false,
82 bool IsCS; variable
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp593 bool IsCS; member in __anon0925556b0211::FuncPGOInstrumentation
652 bool IsCS = false, bool InstrumentFuncEntry = true, in FuncPGOInstrumentation() argument
654 : F(Func), IsCS(IsCS), ComdatMembers(ComdatMembers), VPC(Func, TLI), in FuncPGOInstrumentation()
664 if (!IsCS) { in FuncPGOInstrumentation()
687 IsCS ? NumOfCSPGOEdge++ : NumOfPGOEdge++; in FuncPGOInstrumentation()
689 IsCS ? NumOfCSPGOInstrument++ : NumOfPGOInstrument++; in FuncPGOInstrumentation()
740 if (IsCS) in computeCFGHash()
885 IsCS ? NumOfCSPGOSplit++ : NumOfPGOSplit++; in getInstrBB()
1168 LoopInfo *LI, ProfileSummaryInfo *PSI, bool IsCS, in PGOUseFunc() argument
1172 FuncInfo(Func, TLI, ComdatMembers, false, BPI, BFIin, LI, IsCS, in PGOUseFunc()
[all …]
H A DInstrProfiling.cpp257 bool IsCS) in InstrLowerer() argument
258 : M(M), Options(Options), TT(M.getTargetTriple()), IsCS(IsCS), in InstrLowerer()
268 const bool IsCS; member in __anon21e6fd6b0111::InstrLowerer
683 InstrLowerer Lowerer(M, Options, GetTLI, IsCS); in run()
940 if (!IsCS && isSamplingEnabled()) in lower()
2119 if (!IsCS) in emitInitialization()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilderPipelines.cpp846 bool IsCS, bool AtomicCounterUpdate, in addPGOInstrPasses() argument
855 PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS, FS)); in addPGOInstrPasses()
863 MPM.addPass(PGOInstrumentationGen(IsCS ? PGOInstrumentationType::CSFDO in addPGOInstrPasses()
873 Options.UseBFIInPromotion = IsCS; in addPGOInstrPasses()
881 MPM.addPass(InstrProfilingLoweringPass(Options, IsCS)); in addPGOInstrPasses()
885 ModulePassManager &MPM, bool RunProfileGen, bool IsCS, in addPGOInstrPassesForO0() argument
891 PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS, FS)); in addPGOInstrPassesForO0()
899 MPM.addPass(PGOInstrumentationGen(IsCS ? PGOInstrumentationType::CSFDO in addPGOInstrPassesForO0()
907 Options.UseBFIInPromotion = IsCS; in addPGOInstrPassesForO0()
909 MPM.addPass(InstrProfilingLoweringPass(Options, IsCS)); in addPGOInstrPassesForO0()
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h629 bool RunProfileGen, bool IsCS,
770 bool RunProfileGen, bool IsCS,
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp687 Metadata *Module::getProfileSummary(bool IsCS) const { in getProfileSummary()
688 return (IsCS ? getModuleFlag("CSProfileSummary") in getProfileSummary()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp1559 bool IsCS) { in accumulateCounts() argument
1560 auto GetProfileSum = [IsCS](const std::string &Filename, in accumulateCounts()
1570 Reader->accumulateCounts(Sum, IsCS); in accumulateCounts()
H A DInstrProfReader.cpp1639 void InstrProfReader::accumulateCounts(CountSumOrPercent &Sum, bool IsCS) { in accumulateCounts() argument
1644 if (FuncIsCS != IsCS) in accumulateCounts()
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp372 static cl::opt<bool> IsCS(
671 raw_fd_ostream &OS, bool IsCS) { in overlapInput() argument
1818 raw_fd_ostream &OS, bool IsCS) { in overlapInstrProfile() argument
1824 Error E = Overlap.accumulateCounts(BaseFilename, TestFilename, IsCS); in overlapInstrProfile()
1837 IsCS); in overlapInstrProfile()
2777 OS, IsCS); in overlap_main()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h952 Metadata *getProfileSummary(bool IsCS) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h162 LLVM_ABI void accumulateCounts(CountSumOrPercent &Sum, bool IsCS);
H A DInstrProf.h834 const std::string &TestFilename, bool IsCS);