Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUReleaseVGPRs.cpp61 bool &CacheEntry = It->second; in isLastVGPRUseVMEMStore() local
63 return CacheEntry; in isLastVGPRUseVMEMStore()
68 return CacheEntry = true; in isLastVGPRUseVMEMStore()
74 return CacheEntry = false; in isLastVGPRUseVMEMStore()
79 return CacheEntry = llvm::any_of(MBB.predecessors(), in isLastVGPRUseVMEMStore()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h52 struct CacheEntry { struct
103 std::vector<CacheEntry> Records;
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h92 using CacheEntry = MutableArrayRef<uint8_t>; variable
102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaConcept.cpp707 auto CacheEntry = NormalizationCache.find(ConstrainedDecl); in getNormalizedAssociatedConstraints() local
708 if (CacheEntry == NormalizationCache.end()) { in getNormalizedAssociatedConstraints()
712 CacheEntry = in getNormalizedAssociatedConstraints()
721 return CacheEntry->second; in getNormalizedAssociatedConstraints()
982 auto CacheEntry = SubsumptionCache.find(Key); in IsAtLeastAsConstrained() local
983 if (CacheEntry != SubsumptionCache.end()) { in IsAtLeastAsConstrained()
984 Result = CacheEntry->second; in IsAtLeastAsConstrained()
H A DSemaTemplateDeduction.cpp3552 QualType &CacheEntry = in FinishTemplateArgumentDeduction() local
3554 if (CacheEntry.isNull()) { in FinishTemplateArgumentDeduction()
3558 CacheEntry = in FinishTemplateArgumentDeduction()
3563 DeducedA = CacheEntry; in FinishTemplateArgumentDeduction()
H A DSemaExprCXX.cpp8677 auto &CacheEntry = TransformCache[E]; in TransformTypoExpr() local
8678 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) { in TransformTypoExpr()
8679 return CacheEntry; in TransformTypoExpr()
8708 return CacheEntry = NE; in TransformTypoExpr()
8711 return CacheEntry = ExprError(); in TransformTypoExpr()
/llvm-project-15.0.7/clang/lib/Lex/
H A DHeaderSearch.cpp581 FrameworkCacheEntry &CacheEntry = in DoFrameworkLookup() local
585 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDirRef()) in DoFrameworkLookup()
604 if (!CacheEntry.Directory) { in DoFrameworkLookup()
614 CacheEntry.Directory = getFrameworkDirRef(); in DoFrameworkLookup()
622 CacheEntry.IsUserSpecifiedSystemFramework = true; in DoFrameworkLookup()
628 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework; in DoFrameworkLookup()
629 IsFrameworkFound = CacheEntry.Directory.has_value(); in DoFrameworkLookup()
H A DPPDirectives.cpp2085 FrameworkCacheEntry &CacheEntry = in LookupHeaderIncludeOrImport() local
2087 assert(CacheEntry.Directory && "Found framework should be in cache"); in LookupHeaderIncludeOrImport()
2090 << CacheEntry.Directory->getName(); in LookupHeaderIncludeOrImport()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp153 auto CacheEntry = ComputeKnownBitsCache.find(R); in computeKnownBitsImpl() local
154 if (CacheEntry != ComputeKnownBitsCache.end()) { in computeKnownBitsImpl()
155 Known = CacheEntry->second; in computeKnownBitsImpl()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGDecl.cpp1136 llvm::GlobalVariable *&CacheEntry = InitializerConstants[&D]; in createUnnamedGlobalFrom() local
1137 if (!CacheEntry || CacheEntry->getInitializer() != Constant) { in createUnnamedGlobalFrom()
1155 CacheEntry = GV; in createUnnamedGlobalFrom()
1156 } else if (CacheEntry->getAlignment() < uint64_t(Align.getQuantity())) { in createUnnamedGlobalFrom()
1157 CacheEntry->setAlignment(Align.getAsAlign()); in createUnnamedGlobalFrom()
1160 return Address(CacheEntry, CacheEntry->getValueType(), Align); in createUnnamedGlobalFrom()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h465 struct CacheEntry {
473 using AliasCacheT = SmallDenseMap<LocPair, CacheEntry, 8>;
/llvm-project-15.0.7/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp157 std::vector<CacheEntry> List; in readBytes()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriterDecl.cpp1798 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; in getFirstLocalDecl() local
1799 if (CacheEntry) in getFirstLocalDecl()
1800 return CacheEntry; in getFirstLocalDecl()
1805 return CacheEntry = D; in getFirstLocalDecl()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1641 Locs, AAQueryInfo::CacheEntry{AliasResult::NoAlias, 0}); in aliasCheck()