| /freebsd-14.2/contrib/llvm-project/libunwind/src/ |
| H A D | FrameHeaderCache.hpp | 33 struct CacheEntry { struct in FrameHeaderCache 37 CacheEntry *Next; argument 50 CacheEntry Entries[kCacheEntryCount]; 51 CacheEntry *MostRecentlyUsed; 52 CacheEntry *Unused; 93 CacheEntry *Current = MostRecentlyUsed; in find() 94 CacheEntry *Previous = nullptr; in find() 123 CacheEntry *Current = nullptr; in add() 130 CacheEntry *Previous = nullptr; in add()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | InterferenceCache.h | 178 Entry *CacheEntry = nullptr; variable 186 if (CacheEntry) in setEntry() 187 CacheEntry->addRef(-1); in setEntry() 188 CacheEntry = E; in setEntry() 189 if (CacheEntry) in setEntry() 190 CacheEntry->addRef(+1); in setEntry() 198 setEntry(O.CacheEntry); in Cursor() 202 setEntry(O.CacheEntry); 219 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference; in moveToBlock()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | LazyRandomTypeCollection.h | 51 struct CacheEntry { struct 102 std::vector<CacheEntry> Records;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
| H A D | MappedBlockStream.h | 92 using CacheEntry = MutableArrayRef<uint8_t>; variable 102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | HeaderSearch.cpp | 606 FrameworkCacheEntry &CacheEntry = in DoFrameworkLookup() local 610 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDirRef()) in DoFrameworkLookup() 629 if (!CacheEntry.Directory) { in DoFrameworkLookup() 639 CacheEntry.Directory = getFrameworkDirRef(); in DoFrameworkLookup() 647 CacheEntry.IsUserSpecifiedSystemFramework = true; in DoFrameworkLookup() 653 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework; in DoFrameworkLookup() 654 IsFrameworkFound = CacheEntry.Directory.has_value(); in DoFrameworkLookup()
|
| H A D | PPDirectives.cpp | 2121 FrameworkCacheEntry &CacheEntry = in LookupHeaderIncludeOrImport() local 2123 assert(CacheEntry.Directory && "Found framework should be in cache"); in LookupHeaderIncludeOrImport() 2126 << CacheEntry.Directory->getName(); in LookupHeaderIncludeOrImport()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaConcept.cpp | 1187 auto CacheEntry = NormalizationCache.find(ConstrainedDecl); in getNormalizedAssociatedConstraints() local 1188 if (CacheEntry == NormalizationCache.end()) { in getNormalizedAssociatedConstraints() 1192 CacheEntry = in getNormalizedAssociatedConstraints() 1201 return CacheEntry->second; in getNormalizedAssociatedConstraints() 1497 auto CacheEntry = SubsumptionCache.find(Key); in IsAtLeastAsConstrained() local 1498 if (CacheEntry != SubsumptionCache.end()) { in IsAtLeastAsConstrained() 1499 Result = CacheEntry->second; in IsAtLeastAsConstrained()
|
| H A D | SemaTemplateDeduction.cpp | 3797 QualType &CacheEntry = in FinishTemplateArgumentDeduction() local 3799 if (CacheEntry.isNull()) { in FinishTemplateArgumentDeduction() 3803 CacheEntry = in FinishTemplateArgumentDeduction() 3808 DeducedA = CacheEntry; in FinishTemplateArgumentDeduction()
|
| H A D | SemaExprCXX.cpp | 8763 auto &CacheEntry = TransformCache[E]; in TransformTypoExpr() local 8764 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) { in TransformTypoExpr() 8765 return CacheEntry; in TransformTypoExpr() 8794 return CacheEntry = NE; in TransformTypoExpr() 8797 return CacheEntry = ExprError(); in TransformTypoExpr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | ThinLTOCodeGenerator.cpp | 1148 ModuleCacheEntry CacheEntry(CacheOptions.Path, *Index, ModuleIdentifier, in run() local 1153 auto CacheEntryPath = CacheEntry.getEntryPath(); in run() 1156 auto ErrOrBuffer = CacheEntry.tryLoadingBuffer(); in run() 1201 CacheEntry.write(*OutputBuffer); in run() 1212 auto ReloadedBufferOrErr = CacheEntry.tryLoadingBuffer(); in run()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | GISelKnownBits.cpp | 156 auto CacheEntry = ComputeKnownBitsCache.find(R); in computeKnownBitsImpl() local 157 if (CacheEntry != ComputeKnownBitsCache.end()) { in computeKnownBitsImpl() 158 Known = CacheEntry->second; in computeKnownBitsImpl()
|
| /freebsd-14.2/sys/dev/hptmv/ |
| H A D | vdevice.h | 64 struct stripe **CacheEntry; member
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDecl.cpp | 1153 llvm::GlobalVariable *&CacheEntry = InitializerConstants[&D]; in createUnnamedGlobalFrom() local 1154 if (!CacheEntry || CacheEntry->getInitializer() != Constant) { in createUnnamedGlobalFrom() 1172 CacheEntry = GV; in createUnnamedGlobalFrom() 1173 } else if (CacheEntry->getAlignment() < uint64_t(Align.getQuantity())) { in createUnnamedGlobalFrom() 1174 CacheEntry->setAlignment(Align.getAsAlign()); in createUnnamedGlobalFrom() 1177 return Address(CacheEntry, CacheEntry->getValueType(), Align); in createUnnamedGlobalFrom()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | AliasAnalysis.h | 245 struct CacheEntry { 258 using AliasCacheT = SmallDenseMap<LocPair, CacheEntry, 8>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/MSF/ |
| H A D | MappedBlockStream.cpp | 156 std::vector<CacheEntry> List; in readBytes()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 1938 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; in getFirstLocalDecl() local 1939 if (CacheEntry) in getFirstLocalDecl() 1940 return CacheEntry; in getFirstLocalDecl() 1945 return CacheEntry = D; in getFirstLocalDecl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | BasicAliasAnalysis.cpp | 1618 Locs, AAQueryInfo::CacheEntry{AliasResult::NoAlias, 0}); in aliasCheck()
|