Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h51 struct CacheEntry { struct
102 std::vector<CacheEntry> Records;
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h92 using CacheEntry = MutableArrayRef<uint8_t>; variable
102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaConcept.cpp1085 auto CacheEntry = NormalizationCache.find(ConstrainedDecl); in getNormalizedAssociatedConstraints() local
1086 if (CacheEntry == NormalizationCache.end()) { in getNormalizedAssociatedConstraints()
1090 CacheEntry = in getNormalizedAssociatedConstraints()
1099 return CacheEntry->second; in getNormalizedAssociatedConstraints()
1394 auto CacheEntry = SubsumptionCache.find(Key); in IsAtLeastAsConstrained() local
1395 if (CacheEntry != SubsumptionCache.end()) { in IsAtLeastAsConstrained()
1396 Result = CacheEntry->second; in IsAtLeastAsConstrained()
H A DSemaTemplateDeduction.cpp3666 QualType &CacheEntry = in FinishTemplateArgumentDeduction() local
3668 if (CacheEntry.isNull()) { in FinishTemplateArgumentDeduction()
3672 CacheEntry = in FinishTemplateArgumentDeduction()
3677 DeducedA = CacheEntry; in FinishTemplateArgumentDeduction()
H A DSemaExprCXX.cpp8701 auto &CacheEntry = TransformCache[E]; in TransformTypoExpr() local
8702 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) { in TransformTypoExpr()
8703 return CacheEntry; in TransformTypoExpr()
8732 return CacheEntry = NE; in TransformTypoExpr()
8735 return CacheEntry = ExprError(); in TransformTypoExpr()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DHeaderSearch.cpp603 FrameworkCacheEntry &CacheEntry = in DoFrameworkLookup() local
607 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDirRef()) in DoFrameworkLookup()
626 if (!CacheEntry.Directory) { in DoFrameworkLookup()
636 CacheEntry.Directory = getFrameworkDirRef(); in DoFrameworkLookup()
644 CacheEntry.IsUserSpecifiedSystemFramework = true; in DoFrameworkLookup()
650 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework; in DoFrameworkLookup()
651 IsFrameworkFound = CacheEntry.Directory.has_value(); in DoFrameworkLookup()
H A DPPDirectives.cpp2074 FrameworkCacheEntry &CacheEntry = in LookupHeaderIncludeOrImport() local
2076 assert(CacheEntry.Directory && "Found framework should be in cache"); in LookupHeaderIncludeOrImport()
2079 << CacheEntry.Directory->getName(); in LookupHeaderIncludeOrImport()
/openbsd-src/gnu/llvm/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp1138 ModuleCacheEntry CacheEntry(CacheOptions.Path, *Index, ModuleIdentifier, in run() local
1143 auto CacheEntryPath = CacheEntry.getEntryPath(); in run()
1146 auto ErrOrBuffer = CacheEntry.tryLoadingBuffer(); in run()
1191 CacheEntry.write(*OutputBuffer); in run()
1202 auto ReloadedBufferOrErr = CacheEntry.tryLoadingBuffer(); in run()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp152 auto CacheEntry = ComputeKnownBitsCache.find(R); in computeKnownBitsImpl() local
153 if (CacheEntry != ComputeKnownBitsCache.end()) { in computeKnownBitsImpl()
154 Known = CacheEntry->second; in computeKnownBitsImpl()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGDecl.cpp1140 llvm::GlobalVariable *&CacheEntry = InitializerConstants[&D]; in createUnnamedGlobalFrom() local
1141 if (!CacheEntry || CacheEntry->getInitializer() != Constant) { in createUnnamedGlobalFrom()
1159 CacheEntry = GV; in createUnnamedGlobalFrom()
1160 } else if (CacheEntry->getAlignment() < uint64_t(Align.getQuantity())) { in createUnnamedGlobalFrom()
1161 CacheEntry->setAlignment(Align.getAsAlign()); in createUnnamedGlobalFrom()
1164 return Address(CacheEntry, CacheEntry->getValueType(), Align); in createUnnamedGlobalFrom()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h245 struct CacheEntry {
258 using AliasCacheT = SmallDenseMap<LocPair, CacheEntry, 8>;
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp157 std::vector<CacheEntry> List; in readBytes()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterDecl.cpp1826 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; in getFirstLocalDecl() local
1827 if (CacheEntry) in getFirstLocalDecl()
1828 return CacheEntry; in getFirstLocalDecl()
1833 return CacheEntry = D; in getFirstLocalDecl()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1560 Locs, AAQueryInfo::CacheEntry{AliasResult::NoAlias, 0}); in aliasCheck()