Home
last modified time | relevance | path

Searched refs:ProfileIsCS (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp442 FunctionSamples::ProfileIsCS = ProfileIsCS; in readImpl()
546 if (ProfileIsCS) { in readSampleContextFromTable()
702 FunctionSamples::ProfileIsCS = ProfileIsCS = true; in readOneSection()
771 if (ProfileIsCS) in useFuncOffsetList()
866 if (ProfileIsCS) { in readFuncProfiles()
1060 if (!ProfileIsCS) { in readNameTable()
1082 if (!ProfileIsCS) in readNameTable()
1111 if (!ProfileIsCS) in readNameTableSec()
1125 if (!ProfileIsCS) in readNameTableSec()
1135 if (!ProfileIsCS) in readNameTableSec()
[all …]
H A DSampleProfWriter.cpp278 if (FunctionSamples::ProfileIsCS) { in writeFuncOffsetTable()
308 if (FunctionSamples::ProfileIsCS || FunctionSamples::ProfileIsPreInlined) { in writeFuncMetadata()
312 if (!FunctionSamples::ProfileIsCS) { in writeFuncMetadata()
334 if (!FunctionSamples::ProfileIsProbeBased && !FunctionSamples::ProfileIsCS && in writeFuncMetadata()
432 (FunctionSamples::ProfileIsCS || FunctionSamples::ProfileIsPreInlined)) in writeOneSection()
434 if (Type == SecProfSummary && FunctionSamples::ProfileIsCS) in writeOneSection()
570 if (FunctionSamples::ProfileIsCS) in writeSample()
911 if ((FunctionSamples::ProfileIsCS || FunctionSamples::ProfileIsProbeBased) && in create()
H A DProfileSummaryBuilder.cpp205 if (UseContextLessSummary || (sampleprof::FunctionSamples::ProfileIsCS && in computeSummaryForProfiles()
H A DSampleProf.cpp44 bool FunctionSamples::ProfileIsCS = false; member in llvm::sampleprof::FunctionSamples
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp713 if (!FunctionSamples::ProfileIsCS) in getInstWeight()
744 if (FunctionSamples::ProfileIsCS) in findCalleeFunctionSamples()
775 if (FunctionSamples::ProfileIsCS) { in findIndirectCallFunctionSamples()
827 if (FunctionSamples::ProfileIsCS) in findFunctionSamples()
1108 if (!FunctionSamples::ProfileIsCS) { in findExternalInlineCandidate()
1273 if (!FunctionSamples::ProfileIsCS) in inlineHotFunctions()
1320 if (FunctionSamples::ProfileIsCS) in tryInlineCandidate()
1582 if (!FunctionSamples::ProfileIsCS) in inlineHotFunctionsWithPriority()
1868 if (FunctionSamples::ProfileIsCS) in buildProfiledCallGraph()
2600 if (!FunctionSamples::ProfileIsCS) in runOnModule()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h948 if (FunctionSamples::ProfileIsCS && getHeadSamples()) {
1181 static bool ProfileIsCS;
1418 bool ProfileIsCS = false) {
1420 flattenProfile(ProfileMap, TmpProfiles, ProfileIsCS);
1426 bool ProfileIsCS = false) {
1427 if (ProfileIsCS) {
H A DSampleProfReader.h463 bool profileIsCS() const { return ProfileIsCS; } in profileIsCS()
529 bool ProfileIsCS = false; variable
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1448 std::optional<bool> ProfileIsCS; in mergeSampleProfile() local
1476 if (ProfileIsCS && ProfileIsCS != FunctionSamples::ProfileIsCS) in mergeSampleProfile()
1478 ProfileIsCS = FunctionSamples::ProfileIsCS; in mergeSampleProfile()
1503 if (ProfileIsCS && (SampleMergeColdContext || SampleTrimColdContext)) { in mergeSampleProfile()
1519 ProfileConverter::flattenProfile(ProfileMap, FunctionSamples::ProfileIsCS); in mergeSampleProfile()
1520 ProfileIsCS = FunctionSamples::ProfileIsCS = false; in mergeSampleProfile()
1521 } else if (ProfileIsCS && ProfileLayout == llvm::sampleprof::SPL_Nest) { in mergeSampleProfile()
1524 ProfileIsCS = FunctionSamples::ProfileIsCS = false; in mergeSampleProfile()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h68 assert(!FunctionSamples::ProfileIsCS &&