Home
last modified time | relevance | path

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

/freebsd/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()
34 LowPCFrameHeaderCache::CacheEntry LowPC() argument
35 HighPCFrameHeaderCache::CacheEntry HighPC() argument
36 InfoFrameHeaderCache::CacheEntry global() argument
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterferenceCache.h178 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/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h51 struct CacheEntry { struct
102 std::vector<CacheEntry> Records;
/freebsd/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/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp630 FrameworkCacheEntry &CacheEntry = in DoFrameworkLookup() local
634 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDirRef()) in DoFrameworkLookup()
653 if (!CacheEntry.Directory) { in DoFrameworkLookup()
663 CacheEntry.Directory = getFrameworkDirRef(); in DoFrameworkLookup()
671 CacheEntry.IsUserSpecifiedSystemFramework = true; in DoFrameworkLookup()
677 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework; in DoFrameworkLookup()
678 IsFrameworkFound = CacheEntry.Directory.has_value(); in DoFrameworkLookup()
H A DPPDirectives.cpp2199 FrameworkCacheEntry &CacheEntry = in LookupHeaderIncludeOrImport() local
2201 assert(CacheEntry.Directory && "Found framework should be in cache"); in LookupHeaderIncludeOrImport()
2204 << CacheEntry.Directory->getName(); in LookupHeaderIncludeOrImport()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp1144 ModuleCacheEntry CacheEntry(CacheOptions.Path, *Index, ModuleIdentifier, in run() local
1149 auto CacheEntryPath = CacheEntry.getEntryPath(); in run()
1152 auto ErrOrBuffer = CacheEntry.tryLoadingBuffer(); in run()
1197 CacheEntry.write(*OutputBuffer); in run()
1208 auto ReloadedBufferOrErr = CacheEntry.tryLoadingBuffer(); in run()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp1403 auto CacheEntry = NormalizationCache.find(ConstrainedDecl); in getNormalizedAssociatedConstraints() local
1404 if (CacheEntry == NormalizationCache.end()) { in getNormalizedAssociatedConstraints()
1408 CacheEntry = in getNormalizedAssociatedConstraints()
1417 return CacheEntry->second; in getNormalizedAssociatedConstraints()
1782 auto CacheEntry = SubsumptionCache.find(Key); in IsAtLeastAsConstrained() local
1783 if (CacheEntry != SubsumptionCache.end()) { in IsAtLeastAsConstrained()
1784 Result = CacheEntry->second; in IsAtLeastAsConstrained()
H A DSemaTemplateDeduction.cpp3972 QualType &CacheEntry = in FinishTemplateArgumentDeduction() local
3974 if (CacheEntry.isNull()) { in FinishTemplateArgumentDeduction()
3978 CacheEntry = in FinishTemplateArgumentDeduction()
3983 DeducedA = CacheEntry; in FinishTemplateArgumentDeduction()
H A DSemaExprCXX.cpp8985 auto &CacheEntry = TransformCache[E]; in TransformTypoExpr() local
8986 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) { in TransformTypoExpr()
8987 return CacheEntry; in TransformTypoExpr()
9016 return CacheEntry = NE; in TransformTypoExpr()
9019 return CacheEntry = ExprError(); in TransformTypoExpr()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp161 auto CacheEntry = ComputeKnownBitsCache.find(R); in computeKnownBitsImpl() local
162 if (CacheEntry != ComputeKnownBitsCache.end()) { in computeKnownBitsImpl()
163 Known = CacheEntry->second; in computeKnownBitsImpl()
/freebsd/sys/dev/hptmv/
H A Dvdevice.h64 struct stripe **CacheEntry; member
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp1155 llvm::GlobalVariable *&CacheEntry = InitializerConstants[&D]; in createUnnamedGlobalFrom() local
1156 if (!CacheEntry || CacheEntry->getInitializer() != Constant) { in createUnnamedGlobalFrom()
1174 CacheEntry = GV; in createUnnamedGlobalFrom()
1175 } else if (CacheEntry->getAlignment() < uint64_t(Align.getQuantity())) { in createUnnamedGlobalFrom()
1176 CacheEntry->setAlignment(Align.getAsAlign()); in createUnnamedGlobalFrom()
1179 return Address(CacheEntry, CacheEntry->getValueType(), Align); in createUnnamedGlobalFrom()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h246 struct CacheEntry {
270 using AliasCacheT = SmallDenseMap<LocPair, CacheEntry, 8>;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1691 Locs, AAQueryInfo::CacheEntry{AliasResult::NoAlias, 0}); in aliasCheck()
1741 Entry.NumAssumptionUses = AAQueryInfo::CacheEntry::AssumptionBased; in aliasCheck()
1743 Entry.NumAssumptionUses = AAQueryInfo::CacheEntry::Definitive; in aliasCheck()
1754 It->second.NumAssumptionUses = AAQueryInfo::CacheEntry::Definitive; in aliasCheck()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp156 std::vector<CacheEntry> List; in readBytes()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp2021 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; in getFirstLocalDecl() local
2022 if (CacheEntry) in getFirstLocalDecl()
2023 return CacheEntry; in getFirstLocalDecl()
2028 return CacheEntry = D; in getFirstLocalDecl()