Home
last modified time | relevance | path

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

/freebsd-src/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-src/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-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h51 struct CacheEntry { struct
102 std::vector<CacheEntry> Records;
/freebsd-src/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-src/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp630 FrameworkCacheEntry &CacheEntry = in DoFrameworkLookup()
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()
606 FrameworkCacheEntry &CacheEntry = DoFrameworkLookup() local
H A DPPDirectives.cpp2199 FrameworkCacheEntry &CacheEntry = in HandleHeaderIncludeOrImport()
2201 assert(CacheEntry.Directory && "Found framework should be in cache"); in HandleHeaderIncludeOrImport()
2204 << CacheEntry.Directory->getName(); in HandleHeaderIncludeOrImport()
2121 FrameworkCacheEntry &CacheEntry = LookupHeaderIncludeOrImport() local
/freebsd-src/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp1403 auto CacheEntry = NormalizationCache.find(ConstrainedDecl); in makeDNF()
1404 if (CacheEntry == NormalizationCache.end()) { in makeDNF()
1408 CacheEntry = in makeDNF()
1417 return CacheEntry->second; in subsumes()
1782 auto CacheEntry = SubsumptionCache.find(Key);
1783 if (CacheEntry != SubsumptionCache.end()) {
1784 Result = CacheEntry->second;
1187 auto CacheEntry = NormalizationCache.find(ConstrainedDecl); getNormalizedAssociatedConstraints() local
1497 auto CacheEntry = SubsumptionCache.find(Key); IsAtLeastAsConstrained() local
H A DSemaTemplateDeduction.cpp3972 QualType &CacheEntry = in AdjustFunctionParmAndArgTypesForDeduction()
3974 if (CacheEntry.isNull()) { in AdjustFunctionParmAndArgTypesForDeduction()
3978 CacheEntry = in AdjustFunctionParmAndArgTypesForDeduction()
3983 DeducedA = CacheEntry; in AdjustFunctionParmAndArgTypesForDeduction()
3797 QualType &CacheEntry = FinishTemplateArgumentDeduction() local
H A DSemaExprCXX.cpp8985 auto &CacheEntry = TransformCache[E]; in ActOnSimpleRequirement()
8986 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) { in ActOnSimpleRequirement()
8987 return CacheEntry; in ActOnSimpleRequirement()
9016 return CacheEntry = NE; in ActOnTypeRequirement()
9019 return CacheEntry = ExprError(); in ActOnTypeRequirement()
8763 auto &CacheEntry = TransformCache[E]; TransformTypoExpr() local
/freebsd-src/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp951 // Copy failed (could be because the CacheEntry was removed from the cache in writeGeneratedObject()
1144 ModuleCacheEntry CacheEntry(CacheOptions.Path, *Index, ModuleIdentifier, in run()
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()
1148 ModuleCacheEntry CacheEntry(CacheOptions.Path, *Index, ModuleIdentifier, run() local
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp161 auto CacheEntry = ComputeKnownBitsCache.find(R); in computeKnownBitsImpl()
162 if (CacheEntry != ComputeKnownBitsCache.end()) { in computeKnownBitsImpl()
163 Known = CacheEntry->second; in computeKnownBitsImpl()
156 auto CacheEntry = ComputeKnownBitsCache.find(R); computeKnownBitsImpl() local
/freebsd-src/sys/dev/hptmv/
H A Dvdevice.h64 struct stripe **CacheEntry; member
/freebsd-src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp1155 llvm::GlobalVariable *&CacheEntry = InitializerConstants[&D]; in createUnnamedGlobalFrom()
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);
1153 llvm::GlobalVariable *&CacheEntry = InitializerConstants[&D]; createUnnamedGlobalFrom() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h246 struct CacheEntry {
270 using AliasCacheT = SmallDenseMap<LocPair, CacheEntry, 8>;
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp156 std::vector<CacheEntry> List; in readBytes()
/freebsd-src/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp2021 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; in VisitOMPThreadPrivateDecl()
2022 if (CacheEntry) in VisitOMPThreadPrivateDecl()
2023 return CacheEntry;
2028 return CacheEntry = D; in VisitOMPAllocateDecl()
1938 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; getFirstLocalDecl() local
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1691 Locs, AAQueryInfo::CacheEntry{AliasResult::NoAlias, 0}); in aliasCheckRecursive()
1741 Entry.NumAssumptionUses = AAQueryInfo::CacheEntry::AssumptionBased; in isValueEqualInPotentialCycles()
1743 Entry.NumAssumptionUses = AAQueryInfo::CacheEntry::Definitive;
1754 It->second.NumAssumptionUses = AAQueryInfo::CacheEntry::Definitive; in subtractDecomposedGEPs()