Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DFunction.h247 class ProfileCount {
251 static ProfileCount Invalid;
254 ProfileCount() : Count(-1), PCT(PCT_Invalid) {} in ProfileCount() function
255 ProfileCount(uint64_t Count, ProfileCountType PCT) in ProfileCount() function
264 ProfileCount &setCount(uint64_t C) { in setCount()
268 static ProfileCount getInvalid() { return ProfileCount(-1, PCT_Invalid); } in getInvalid()
277 void setEntryCount(ProfileCount Count,
288 ProfileCount getEntryCount() const;
/external/llvm/include/llvm/IR/
DModuleSummaryIndex.h37 uint64_t ProfileCount; member
38 CalleeInfo() : CallsiteCount(0), ProfileCount(0) {} in CalleeInfo()
39 CalleeInfo(unsigned CallsiteCount, uint64_t ProfileCount) in CalleeInfo()
40 : CallsiteCount(CallsiteCount), ProfileCount(ProfileCount) {} in CalleeInfo()
43 ProfileCount += RHSProfileCount;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DSyntheticCountsPropagation.cpp44 using ProfileCount = Function::ProfileCount; typedef
137 ProfileCount(Entry.second, Function::PCT_Synthetic)); in run()
DSampleProfile.cpp90 using ProfileCount = Function::ProfileCount; typedef
1461 ProfileCount(Samples->getHeadSamples() + 1, Function::PCT_Real), in emitAnnotations()
1588 F.setEntryCount(ProfileCount(-1, Function::PCT_Real)); in runOnFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DFunction.cpp58 using ProfileCount = Function::ProfileCount; typedef
1352 void Function::setEntryCount(ProfileCount Count, in setEntryCount()
1367 setEntryCount(ProfileCount(Count, Type), Imports); in setEntryCount()
1370 ProfileCount Function::getEntryCount() const { in getEntryCount()
1380 return ProfileCount::getInvalid(); in getEntryCount()
1381 return ProfileCount(Count, PCT_Real); in getEntryCount()
1385 return ProfileCount(Count, PCT_Synthetic); in getEntryCount()
1388 return ProfileCount::getInvalid(); in getEntryCount()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DModuleSummaryAnalysis.cpp121 static CalleeInfo::HotnessType getHotness(uint64_t ProfileCount, in getHotness() argument
125 if (PSI->isHotCount(ProfileCount)) in getHotness()
127 if (PSI->isColdCount(ProfileCount)) in getHotness()
/external/deqp-deps/glslang/glslang/MachineIndependent/
DShaderLang.cpp175 const int ProfileCount = 4; // index range in MapProfileToIndex variable
189 assert(index < ProfileCount); in MapProfileToIndex()
226 TSymbolTable* CommonSymbolTable[VersionCount][SpvVersionCount][ProfileCount][SourceCount][EPcCount]…
227 TSymbolTable* SharedSymbolTables[VersionCount][SpvVersionCount][ProfileCount][SourceCount][EShLangC…
1350 for (int p = 0; p < ProfileCount; ++p) { in ShFinalize()
1363 for (int p = 0; p < ProfileCount; ++p) { in ShFinalize()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp69 using ProfileCount = Function::ProfileCount; typedef
1234 ProfileCount(Count.getValue(), Function::PCT_Real)); // FIXME in extractCodeRegion()
DInlineFunction.cpp75 using ProfileCount = Function::ProfileCount; typedef
1435 const ProfileCount &CalleeEntryCount, in updateCallProfile()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp122 using ProfileCount = Function::ProfileCount; typedef
1143 F.setEntryCount(ProfileCount(FuncEntryCount, Function::PCT_Real)); in populateCounters()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DBlockFrequencyInfoImpl.h1345 if (Optional<uint64_t> ProfileCount =
1348 OS << ", count = " << ProfileCount.getValue();
/external/dng_sdk/source/
Ddng_negative.cpp1236 uint32 dng_negative::ProfileCount () const in ProfileCount() function in dng_negative
1248 DNG_ASSERT (index < ProfileCount (), in ProfileByIndex()
1266 uint32 profileCount = ProfileCount (); in ProfileByID()
1411 uint32 count = ProfileCount (); in ComputeCameraProfileToEmbed()
Ddng_negative.h1646 uint32 ProfileCount () const;
Ddng_image_writer.cpp6319 uint32 profileCount = negative.ProfileCount (); in WriteDNG()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp3232 NameVals.push_back(ECI.second.ProfileCount); in writePerModuleFunctionSummaryRecord()
3476 HasProfileData |= EI.second.ProfileCount != 0; in writeCombinedGlobalValueSummary()
3490 NameVals.push_back(EI.second.ProfileCount); in writeCombinedGlobalValueSummary()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp6203 uint64_t ProfileCount = HasProfile ? Record[++I] : 0; in parseEntireSummary() local
6206 CalleeInfo(CallsiteCount, ProfileCount)); in parseEntireSummary()
6292 uint64_t ProfileCount = HasProfile ? Record[++I] : 0; in parseEntireSummary() local
6295 CalleeInfo(CallsiteCount, ProfileCount)); in parseEntireSummary()