Home
last modified time | relevance | path

Searched refs:getSummary (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp194 std::unique_ptr<ProfileSummary> SampleProfileSummaryBuilder::getSummary() { in getSummary() function in SampleProfileSummaryBuilder
225 return getSummary(); in computeSummaryForProfiles()
228 std::unique_ptr<ProfileSummary> InstrProfSummaryBuilder::getSummary() { in getSummary() function in InstrProfSummaryBuilder
H A DMemProfSummaryBuilder.cpp19 std::unique_ptr<MemProfSummary> MemProfSummaryBuilder::getSummary() { in getSummary() function in MemProfSummaryBuilder
H A DInstrProfWriter.cpp622 std::move(DataAccessProfileData), MemProfSumBuilder.getSummary())) in writeImpl()
654 std::unique_ptr<ProfileSummary> PS = ISB.getSummary(); in writeImpl()
662 std::unique_ptr<ProfileSummary> CSPS = CSISB.getSummary(); in writeImpl()
H A DMemProfReader.cpp322 auto MemProfSum = MemProfSumBuilder.getSummary(); in printYAML()
H A DInstrProfReader.cpp1229 Summary = Builder.getSummary(); in readSummary()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DProfileCommon.h91 LLVM_ABI std::unique_ptr<ProfileSummary> getSummary();
103 LLVM_ABI std::unique_ptr<ProfileSummary> getSummary();
H A DMemProfSummaryBuilder.h46 LLVM_ABI std::unique_ptr<MemProfSummary> getSummary();
H A DInstrProfReader.h735 memprof::MemProfSummary *getSummary() const { return MemProfSum.get(); } in getSummary() function
888 ProfileSummary &getSummary(bool UseCS) { in getSummary() function
900 return MemProfReader.getSummary(); in getMemProfSummary()
H A DSampleProfReader.h475 ProfileSummary &getSummary() const { return *Summary; } in getSummary() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOCtxProfFlattening.cpp199 M.setProfileSummary(PB.getSummary()->getMD(M.getContext()), in run()
205 PSI.refresh(PB.getSummary()); in run()
H A DPGOInstrumentation.cpp2211 M.setProfileSummary(PGOReader->getSummary(IsCS).getMD(M.getContext()), in annotateAllFunctions()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRetainPtrCtorAdoptChecker.cpp263 auto Summary = Summaries->getSummary(AnyCall(CE)); in checkCreateOrCopyFunction()
403 auto Summary = Summaries->getSummary(AnyCall(FnDecl)); in retainsReturnValue()
507 auto Summary = Summaries->getSummary(AnyCall(ObjCMsgExpr)); in isOwned()
567 auto Summary = Summaries->getSummary(AnyCall(CE)); in isOwned()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp350 const static RetainSummary *getSummary(RetainSummaryManager &Summaries, in getSummary() function
357 return Summaries.getSummary(C, Call.hasNonZeroCallbackArg(), in getSummary()
376 const RetainSummary *Summ = getSummary(Summaries, Call, ReceiverType); in checkPostCall()
1051 const RetainSummary *Summ = Summaries.getSummary(AnyCall(MD)); in processReturn()
1055 const RetainSummary *Summ = Summaries.getSummary(AnyCall(FD)); in processReturn()
1332 const RetainSummary *FunctionSummary = SmrMgr.getSummary(*C); in checkBeginFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h157 LLVM_ABI Expected<std::unique_ptr<ModuleSummaryIndex>> getSummary();
/freebsd/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp233 Index = ExitOnErr(MB.getSummary()); in main()
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1378 ProfileSummary InstrPS = *IPBuilder.getSummary(); in adjustInstrProfile()
1379 ProfileSummary SamplePS = Reader->getSummary(); in adjustInstrProfile()
2733 ProfileSummary &BasePS = BaseReader->getSummary(); in loadProfiles()
2734 ProfileSummary &TestPS = TestReader->getSummary(); in loadProfiles()
3019 std::unique_ptr<ProfileSummary> PS(Builder.getSummary()); in showInstrProfile()
3277 auto &PS = Reader->getSummary(); in showSampleProfile()
3283 showHotFunctionList(Reader->getProfiles(), Reader->getSummary(), in showSampleProfile()
3329 MemProfSumBuilder.getSummary()->printSummaryYaml(OS); in showMemProfProfile()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DRetainSummaryManager.h662 const RetainSummary *getSummary(AnyCall C,
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DRetainSummaryManager.cpp661 RetainSummaryManager::getSummary(AnyCall C, in getSummary() function in RetainSummaryManager
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp2169 M.setProfileSummary(Reader->getSummary().getMD(M.getContext()), in runOnModule()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp8538 Expected<std::unique_ptr<ModuleSummaryIndex>> BitcodeModule::getSummary() { in getSummary() function in BitcodeModule
8753 return BM->getSummary(); in getModuleSummaryIndex()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp995 PGOReader->getSummary(/* UseCS */ false).getMD(VMContext), in Release()