Home
last modified time | relevance | path

Searched refs:CacheEntry (Results 1 – 18 of 18) sorted by relevance

/freebsd-13.1/contrib/llvm-project/libunwind/src/
H A DFrameHeaderCache.hpp33 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-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterferenceCache.h177 Entry *CacheEntry = nullptr; variable
185 if (CacheEntry) in setEntry()
186 CacheEntry->addRef(-1); in setEntry()
187 CacheEntry = E; in setEntry()
188 if (CacheEntry) in setEntry()
189 CacheEntry->addRef(+1); in setEntry()
197 setEntry(O.CacheEntry); in Cursor()
201 setEntry(O.CacheEntry);
218 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference; in moveToBlock()
/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp182 CachedFileSystemEntry &CacheEntry = SharedCacheEntry.Value; in getOrCreateFileSystemEntry() local
184 if (!CacheEntry.isValid()) { in getOrCreateFileSystemEntry()
195 CacheEntry = CachedFileSystemEntry(MaybeStatus.getError()); in getOrCreateFileSystemEntry()
197 CacheEntry = CachedFileSystemEntry::createDirectoryEntry( in getOrCreateFileSystemEntry()
200 CacheEntry = CachedFileSystemEntry::createFileEntry(Filename, FS, in getOrCreateFileSystemEntry()
204 Result = &CacheEntry; in getOrCreateFileSystemEntry()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h52 struct CacheEntry { struct
103 std::vector<CacheEntry> Records;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h92 using CacheEntry = MutableArrayRef<uint8_t>; variable
102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp668 auto CacheEntry = NormalizationCache.find(ConstrainedDecl); in getNormalizedAssociatedConstraints() local
669 if (CacheEntry == NormalizationCache.end()) { in getNormalizedAssociatedConstraints()
673 CacheEntry = in getNormalizedAssociatedConstraints()
682 return CacheEntry->second; in getNormalizedAssociatedConstraints()
943 auto CacheEntry = SubsumptionCache.find(Key); in IsAtLeastAsConstrained() local
944 if (CacheEntry != SubsumptionCache.end()) { in IsAtLeastAsConstrained()
945 Result = CacheEntry->second; in IsAtLeastAsConstrained()
H A DSemaTemplateDeduction.cpp3677 QualType &CacheEntry = in FinishTemplateArgumentDeduction() local
3679 if (CacheEntry.isNull()) { in FinishTemplateArgumentDeduction()
3683 CacheEntry = in FinishTemplateArgumentDeduction()
3688 DeducedA = CacheEntry; in FinishTemplateArgumentDeduction()
H A DSemaExprCXX.cpp8422 auto &CacheEntry = TransformCache[E]; in TransformTypoExpr() local
8423 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) { in TransformTypoExpr()
8424 return CacheEntry; in TransformTypoExpr()
8453 return CacheEntry = NE; in TransformTypoExpr()
8456 return CacheEntry = ExprError(); in TransformTypoExpr()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp527 FrameworkCacheEntry &CacheEntry = in DoFrameworkLookup() local
531 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDir()) in DoFrameworkLookup()
550 if (!CacheEntry.Directory) { in DoFrameworkLookup()
560 CacheEntry.Directory = getFrameworkDir(); in DoFrameworkLookup()
568 CacheEntry.IsUserSpecifiedSystemFramework = true; in DoFrameworkLookup()
574 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework; in DoFrameworkLookup()
575 IsFrameworkFound = CacheEntry.Directory; in DoFrameworkLookup()
H A DPPDirectives.cpp1921 FrameworkCacheEntry &CacheEntry = in LookupHeaderIncludeOrImport() local
1923 assert(CacheEntry.Directory && "Found framework should be in cache"); in LookupHeaderIncludeOrImport()
1926 << CacheEntry.Directory->getName(); in LookupHeaderIncludeOrImport()
/freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp1156 ModuleCacheEntry CacheEntry(CacheOptions.Path, *Index, ModuleIdentifier, in run() local
1161 auto CacheEntryPath = CacheEntry.getEntryPath(); in run()
1164 auto ErrOrBuffer = CacheEntry.tryLoadingBuffer(); in run()
1209 CacheEntry.write(*OutputBuffer); in run()
1220 auto ReloadedBufferOrErr = CacheEntry.tryLoadingBuffer(); in run()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp148 auto CacheEntry = ComputeKnownBitsCache.find(R); in computeKnownBitsImpl() local
149 if (CacheEntry != ComputeKnownBitsCache.end()) { in computeKnownBitsImpl()
150 Known = CacheEntry->second; in computeKnownBitsImpl()
/freebsd-13.1/sys/dev/hptmv/
H A Dvdevice.h66 struct stripe **CacheEntry; member
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp1125 llvm::GlobalVariable *&CacheEntry = InitializerConstants[&D]; in createUnnamedGlobalFrom() local
1126 if (!CacheEntry || CacheEntry->getInitializer() != Constant) { in createUnnamedGlobalFrom()
1144 CacheEntry = GV; in createUnnamedGlobalFrom()
1145 } else if (CacheEntry->getAlignment() < Align.getQuantity()) { in createUnnamedGlobalFrom()
1146 CacheEntry->setAlignment(Align.getAsAlign()); in createUnnamedGlobalFrom()
1149 return Address(CacheEntry, Align); in createUnnamedGlobalFrom()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h417 struct CacheEntry {
425 using AliasCacheT = SmallDenseMap<LocPair, CacheEntry, 8>;
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp158 std::vector<CacheEntry> List; in readBytes()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp1788 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; in getFirstLocalDecl() local
1789 if (CacheEntry) in getFirstLocalDecl()
1790 return CacheEntry; in getFirstLocalDecl()
1795 return CacheEntry = D; in getFirstLocalDecl()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1564 Locs, AAQueryInfo::CacheEntry{AliasResult::NoAlias, 0}); in aliasCheck()