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

/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DInterferenceCache.h177 Entry *CacheEntry = nullptr; member in class:llvm::InterferenceCache::Cursor
184 // we don't have to check for E == CacheEntry etc.
185 if (CacheEntry)
186 CacheEntry->addRef(-1);
187 CacheEntry = E;
188 if (CacheEntry)
189 CacheEntry->addRef(+1);
197 setEntry(O.CacheEntry);
201 setEntry(O.CacheEntry);
218 Current = CacheEntry
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h52 struct CacheEntry { struct in class:llvm::codeview::LazyRandomTypeCollection
103 std::vector<CacheEntry> Records;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp169 CachedFileSystemEntry &CacheEntry = SharedCacheEntry.Value; local
171 if (!CacheEntry.isValid()) {
182 CacheEntry = CachedFileSystemEntry(MaybeStatus.getError());
184 CacheEntry = CachedFileSystemEntry::createDirectoryEntry(
187 CacheEntry = CachedFileSystemEntry::createFileEntry(
191 Result = &CacheEntry;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h92 using CacheEntry = MutableArrayRef<uint8_t>;
102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaConcept.cpp663 auto CacheEntry = NormalizationCache.find(ConstrainedDecl);
664 if (CacheEntry == NormalizationCache.end()) {
668 CacheEntry =
677 return CacheEntry->second;
945 auto CacheEntry = SubsumptionCache.find(Key);
946 if (CacheEntry != SubsumptionCache.end()) {
947 Result = CacheEntry->second;
H A DSemaTemplateDeduction.cpp3677 QualType &CacheEntry = local
3679 if (CacheEntry.isNull()) {
3683 CacheEntry =
3688 DeducedA = CacheEntry;
H A DSemaExprCXX.cpp8344 auto &CacheEntry = TransformCache[E];
8345 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) {
8346 return CacheEntry;
8375 return CacheEntry = NE;
8378 return CacheEntry = ExprError();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp912 // Copy failed (could be because the CacheEntry was removed from the cache
1086 ModuleCacheEntry CacheEntry(CacheOptions.Path, *Index, ModuleIdentifier,
1091 auto CacheEntryPath = CacheEntry.getEntryPath();
1094 auto ErrOrBuffer = CacheEntry.tryLoadingBuffer();
1138 CacheEntry.write(*OutputBuffer);
1149 auto ReloadedBufferOrErr = CacheEntry.tryLoadingBuffer();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp133 auto CacheEntry = ComputeKnownBitsCache.find(R); local
134 if (CacheEntry != ComputeKnownBitsCache.end()) {
135 Known = CacheEntry->second;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DHeaderSearch.cpp527 FrameworkCacheEntry &CacheEntry =
531 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDir())
550 if (!CacheEntry.Directory) {
560 CacheEntry.Directory = getFrameworkDir();
568 CacheEntry.IsUserSpecifiedSystemFramework = true;
574 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework;
575 IsFrameworkFound = CacheEntry.Directory;
H A DPPDirectives.cpp1854 FrameworkCacheEntry &CacheEntry = local
1856 assert(CacheEntry.Directory && "Found framework should be in cache");
1859 << CacheEntry.Directory->getName();
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h417 struct CacheEntry {
425 using AliasCacheT = SmallDenseMap<LocPair, CacheEntry, 8>;
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDecl.cpp1120 llvm::GlobalVariable *&CacheEntry = InitializerConstants[&D]; local
1121 if (!CacheEntry || CacheEntry->getInitializer() != Constant) {
1139 CacheEntry = GV;
1140 } else if (CacheEntry->getAlignment() < Align.getQuantity()) {
1141 CacheEntry->setAlignment(Align.getAsAlign());
1144 return Address(CacheEntry, Align);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp158 std::vector<CacheEntry> List;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterDecl.cpp1770 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; local
1771 if (CacheEntry)
1772 return CacheEntry;
1777 return CacheEntry = D;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1548 Locs, AAQueryInfo::CacheEntry{AliasResult::NoAlias, 0});

Completed in 389 milliseconds