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 DPGOInstrumentation.h59 PGOInstrumentationGen(bool IsCS = false) : IsCS(IsCS) {} in IsCS() function
64 bool IsCS;
71 std::string RemappingFilename = "", bool IsCS = false,
80 bool IsCS; variable
H A DInstrProfiling.h29 const bool IsCS = false;
33 InstrProfilingLoweringPass(const InstrProfOptions &Options, bool IsCS = false)
34 : Options(Options), IsCS(IsCS) {}
69 bool IsCS; global() variable
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp395 static GlobalVariable *createIRLevelProfileFlagVar(Module &M, bool IsCS) { in createIRLevelProfileFlagVar() argument
399 if (IsCS) in createIRLevelProfileFlagVar()
531 bool IsCS; member in __anon0925556b0111::FuncPGOInstrumentation
589 BlockFrequencyInfo *BFI = nullptr, bool IsCS = false, in FuncPGOInstrumentation() argument
591 : F(Func), IsCS(IsCS), ComdatMembers(ComdatMembers), VPC(Func, TLI), in FuncPGOInstrumentation()
601 if (!IsCS) { in FuncPGOInstrumentation()
624 IsCS ? NumOfCSPGOEdge++ : NumOfPGOEdge++; in FuncPGOInstrumentation()
626 IsCS ? NumOfCSPGOInstrument++ : NumOfPGOInstrument++; in FuncPGOInstrumentation()
677 if (IsCS) in computeCFGHash()
822 IsCS ? NumOfCSPGOSplit++ : NumOfPGOSplit++; in getInstrBB()
[all …]
H A DInstrProfiling.cpp223 bool IsCS) in InstrLowerer() argument
224 : M(M), Options(Options), TT(Triple(M.getTargetTriple())), IsCS(IsCS), in InstrLowerer()
234 const bool IsCS; member in __anon21e6fd6b0111::InstrLowerer
661 InstrLowerer Lowerer(M, Options, GetTLI, IsCS); in run()
929 if (!IsCS && isSamplingEnabled()) in lower()
2110 if (!IsCS) in emitInitialization()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilderPipelines.cpp826 bool IsCS, bool AtomicCounterUpdate, in addPGOInstrPasses() argument
835 PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS, FS)); in addPGOInstrPasses()
843 MPM.addPass(PGOInstrumentationGen(IsCS)); in addPGOInstrPasses()
852 Options.UseBFIInPromotion = IsCS; in addPGOInstrPasses()
860 MPM.addPass(InstrProfilingLoweringPass(Options, IsCS)); in addPGOInstrPasses()
864 ModulePassManager &MPM, bool RunProfileGen, bool IsCS, in addPGOInstrPassesForO0() argument
870 PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS, FS)); in addPGOInstrPassesForO0()
878 MPM.addPass(PGOInstrumentationGen(IsCS)); in addPGOInstrPassesForO0()
885 Options.UseBFIInPromotion = IsCS; in addPGOInstrPassesForO0()
887 MPM.addPass(InstrProfilingLoweringPass(Options, IsCS)); in addPGOInstrPassesForO0()
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h604 bool IsCS, bool AtomicCounterUpdate,
736 bool RunProfileGen, bool IsCS,
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp677 Metadata *Module::getProfileSummary(bool IsCS) const { in getProfileSummary()
678 return (IsCS ? getModuleFlag("CSProfileSummary") in getProfileSummary()
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp336 cl::opt<bool> IsCS(
630 raw_fd_ostream &OS, bool IsCS) { in overlapInput() argument
1722 raw_fd_ostream &OS, bool IsCS) { in overlapInstrProfile() argument
1728 Error E = Overlap.accumulateCounts(BaseFilename, TestFilename, IsCS); in overlapInstrProfile()
1741 IsCS); in overlapInstrProfile()
2681 OS, IsCS); in overlap_main()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp1506 bool IsCS) { in accumulateCounts() argument
1507 auto GetProfileSum = [IsCS](const std::string &Filename, in accumulateCounts()
1517 Reader->accumulateCounts(Sum, IsCS); in accumulateCounts()
H A DInstrProfReader.cpp1708 void InstrProfReader::accumulateCounts(CountSumOrPercent &Sum, bool IsCS) { in accumulateCounts() argument
1713 if (FuncIsCS != IsCS) in accumulateCounts()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h978 Metadata *getProfileSummary(bool IsCS) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h155 void accumulateCounts(CountSumOrPercent &Sum, bool IsCS);
H A DInstrProf.h773 const std::string &TestFilename, bool IsCS);