Searched refs:Cache (Results 26 - 50 of 80) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCFLSteensAliasAnalysis.h101 DenseMap<Function *, Optional<FunctionInfo>> Cache; member in class:llvm::CFLSteensAAResult
H A DCFLAndersAliasAnalysis.h85 DenseMap<const Function *, Optional<FunctionInfo>> Cache; member in class:llvm::CFLAndersAAResult
H A DObjCARCAnalysisUtils.h92 DenseMap<const Value *, WeakTrackingVH> &Cache) {
93 if (auto InCache = Cache.lookup(V))
97 Cache[V] = const_cast<Value *>(Computed);
91 GetUnderlyingObjCPtrCached(const Value *V, const DataLayout &DL, DenseMap<const Value *, WeakTrackingVH> &Cache) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DPtrState.cpp177 bool BottomUpPtrState::InitBottomUp(ARCMDKindCache &Cache, Instruction *I) { argument
193 I->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease));
351 bool TopDownPtrState::MatchWithRelease(ARCMDKindCache &Cache, argument
358 Release->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableList.h153 CacheTy Cache;
183 ListTy* L = Cache.FindNodeOrInsertPos(ID, InsertPos);
192 Cache.InsertNode(L, InsertPos);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h53 : Allocator(Instance), Cache(LocalCache) {}
70 Cache.deallocate(ClassId, BlockBegin);
81 void *Ptr = Cache.allocate(QuarantineClassId);
112 Cache.deallocate(QuarantineClassId,
119 CacheT &Cache; member in struct:scudo::Allocator::QuarantineCallback
182 // The Cache must be provided zero-initialized.
183 void initCache(CacheT *Cache) { argument
184 Cache->initLinkerInitialized(&Stats, &Primary);
194 QuarantineCallback(*this, TSD->Cache));
195 TSD->Cache
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp107 Value *getReplacement(DivCacheTy &Cache);
151 Value *FastDivInsertionTask::getReplacement(DivCacheTy &Cache) { argument
156 // Then, look for a value in Cache.
160 auto CacheI = Cache.find(Key);
162 if (CacheI == Cache.end()) {
168 CacheI = Cache.insert({Key, *OptResult}).first;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h216 /// if (AddStreamFn AddStream = Cache(Task, Key))
227 AddStreamFn AddStream, NativeObjectCache Cache)>;
266 /// and Cache functions to add up to getMaxTasks() native object files to
294 /// The Cache parameter is optional. If supplied, it will be used to cache
298 /// Cache) for each task identifier.
299 Error run(AddStreamFn AddStream, NativeObjectCache Cache = nullptr);
421 Error runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache,
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c424 ACPI_MEMORY_LIST *Cache)
427 return (Cache->TotalAllocated - Cache->TotalFreed - Cache->CurrentDepth);
423 AcpiDbGetCacheInfo( ACPI_MEMORY_LIST *Cache) argument
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_ppmd7_private.h89 Byte Cache; member in struct:__anon16
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h243 void threadSafetyCleanup(BeforeSet *Cache);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp176 explicit QuarantineCallback(AllocatorCacheT *Cache) argument
177 : Cache_(Cache) {}
214 typedef QuarantineT::Cache QuarantineCacheT;
348 BackendPtr = Backend.allocatePrimary(&TSD->Cache, ClassId);
414 getBackend().deallocatePrimary(&TSD->Cache, BackendPtr,
433 Quarantine.Put(getQuarantineCache(TSD), QuarantineCallback(&TSD->Cache),
570 Quarantine.Drain(getQuarantineCache(TSD), QuarantineCallback(&TSD->Cache));
571 Backend.destroyCache(&TSD->Cache);
683 getBackend().initCache(&Cache);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DEHFrameSupportImpl.h34 Error processBlock(LinkGraph &G, Block &B, LinkGraph::SplitBlockCache &Cache);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp919 Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) { argument
967 Result = runThinLTO(AddStream, Cache, GUIDPreservedSymbols);
1076 NativeObjectCache Cache; member in class:__anon90::InProcessThinBackend
1088 AddStreamFn AddStream, NativeObjectCache Cache)
1091 AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
1101 AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
1120 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
1123 // Cache disabled or no entry for this module in the combined index or
1132 if (AddStreamFn CacheAddStream = Cache(Tas
1084 InProcessThinBackend( const Config &Conf, ModuleSummaryIndex &CombinedIndex, unsigned ThinLTOParallelismLevel, const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries, AddStreamFn AddStream, NativeObjectCache Cache) argument
1100 runThinLTOBackendThread( AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task, BitcodeModule BM, ModuleSummaryIndex &CombinedIndex, const FunctionImporter::ImportMapTy &ImportList, const FunctionImporter::ExportSetTy &ExportList, const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, const GVSummaryMapTy &DefinedGlobals, MapVector<StringRef, BitcodeModule> &ModuleMap) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp424 DenseMap<Value *, Value *> &Cache,
426 auto CacheIt = Cache.find(Cond);
427 if (CacheIt != Cache.end())
444 Cache[Cond] = Cond;
483 ParentChain, Cache, MSSAU)) {
484 Cache[Cond] = LHS;
491 ParentChain, Cache, MSSAU)) {
492 Cache[Cond] = RHS;
498 Cache[Cond] = nullptr;
508 DenseMap<Value *, Value *> Cache; local
422 FindLIVLoopCondition(Value *Cond, Loop *L, bool &Changed, OperatorChain &ParentChain, DenseMap<Value *, Value *> &Cache, MemorySSAUpdater *MSSAU) argument
[all...]
H A DRewriteStatepointsForGC.cpp612 static Value *findBaseDefiningValueCached(Value *I, DefiningValueMapTy &Cache) { argument
613 Value *&Cached = Cache[I];
619 assert(Cache[I] != nullptr);
625 static Value *findBaseOrBDV(Value *I, DefiningValueMapTy &Cache) { argument
626 Value *Def = findBaseDefiningValueCached(I, Cache);
627 auto Found = Cache.find(Def);
628 if (Found != Cache.end()) {
762 static Value *findBasePointer(Value *I, DefiningValueMapTy &Cache) { argument
763 Value *Def = findBaseOrBDV(I, Cache);
816 Value *Base = findBaseOrBDV(InVal, Cache);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h123 enum class Cache : unsigned char { Yes, No, Unknown, }; class in class:Node
132 Cache RHSComponentCache;
136 Cache ArrayCache;
140 Cache FunctionCache;
143 Node(Kind K_, Cache RHSComponentCache_ = Cache::No, argument
144 Cache ArrayCache_ = Cache::No, Cache FunctionCache_ = Cache
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCFLAndersAliasAnalysis.cpp813 auto InsertPair = Cache.insert(std::make_pair(&Fn, Optional<FunctionInfo>()));
818 // Note that we can't do Cache[Fn] = buildSetsFrom(Fn) here: the function call
822 Cache[&Fn] = std::move(FunInfo);
826 void CFLAndersAAResult::evict(const Function *Fn) { Cache.erase(Fn); }
830 auto Iter = Cache.find(&Fn);
831 if (Iter == Cache.end()) {
833 Iter = Cache.find(&Fn);
834 assert(Iter != Cache.end());
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp49 static cl::opt<std::string> CacheDir("cache-dir", cl::desc("Cache Directory"),
347 NativeObjectCache Cache; local
349 Cache = check(localCache(CacheDir, AddBuffer), "failed to create cache");
351 check(Lto.run(AddStream, Cache), "LTO::run failed");
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacdebug.h474 ACPI_MEMORY_LIST *Cache);
H A Dacobject.h647 ACPI_OBJECT_CACHE_LIST Cache; member in union:acpi_operand_object
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.h126 typedef DenseSlabAllocCache Cache;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLocal.h104 SimplifyCFGOptions &setAssumptionCache(AssumptionCache *Cache) { argument
105 AC = Cache;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DValue.cpp365 static bool contains(SmallPtrSetImpl<ConstantExpr *> &Cache, ConstantExpr *Expr, argument
367 if (!Cache.insert(Expr).second)
376 if (contains(Cache, CE, C))
394 SmallPtrSet<ConstantExpr *, 4> Cache;
395 return contains(Cache, CE, C);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3625 using Cache = TypePropertyCache<Private>;
3674 return Cache::get(cast<ComplexType>(T)->getElementType());
3676 return Cache::get(cast<PointerType>(T)->getPointeeType());
3678 return Cache::get(cast<BlockPointerType>(T)->getPointeeType());
3681 return Cache::get(cast<ReferenceType>(T)->getPointeeType());
3684 return merge(Cache::get(MPT->getClass()),
3685 Cache::get(MPT->getPointeeType()));
3690 return Cache::get(cast<ArrayType>(T)->getElementType());
3693 return Cache::get(cast<VectorType>(T)->getElementType());
3695 return Cache
[all...]

Completed in 405 milliseconds

1234