Home
last modified time | relevance | path

Searched refs:CachedResult (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugLoc.cpp74 DILocation *CachedResult = nullptr; in replaceInlinedAtSubprogram() local
80 CachedResult = cast<DILocation>(It->second); in replaceInlinedAtSubprogram()
86 DILocation *UpdatedLoc = CachedResult; in replaceInlinedAtSubprogram()
H A DDebugInfoMetadata.cpp1063 DIScope *CachedResult = nullptr; in cloneScopeForSubprogram() local
1068 CachedResult = cast<DIScope>(It->second); in cloneScopeForSubprogram()
1076 DIScope *UpdatedScope = CachedResult ? CachedResult : &NewSP; in cloneScopeForSubprogram()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp390 CachedCodeCompletionResult CachedResult; in CacheCodeCompletionResults() local
391 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
394 CachedResult.ShowInContexts = getDeclShowContexts( in CacheCodeCompletionResults()
396 CachedResult.Priority = R.Priority; in CacheCodeCompletionResults()
397 CachedResult.Kind = R.CursorKind; in CacheCodeCompletionResults()
398 CachedResult.Availability = R.Availability; in CacheCodeCompletionResults()
404 CachedResult.TypeClass = STC_Void; in CacheCodeCompletionResults()
405 CachedResult.Type = 0; in CacheCodeCompletionResults()
409 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType); in CacheCodeCompletionResults()
421 CachedResult.Type = TypeValue; in CacheCodeCompletionResults()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dmem_map_fuchsia.cpp41 static atomic_uptr CachedResult = {0}; in getRootVmarBase() local
43 uptr Result = atomic_load(&CachedResult, memory_order_acquire); in getRootVmarBase()
52 atomic_store(&CachedResult, VmarInfo.base, memory_order_release); in getRootVmarBase()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp230 DenseMap<std::pair<Value *, Value *>, NodePtr> CachedResult; member in __anon87c1be940111::ComplexDeinterleavingGraph
298 CachedResult[{Node->Real, Node->Imag}] = Node; in submitCompositeNode()
900 auto It = CachedResult.find({R, I}); in identifyNode()
901 if (It != CachedResult.end()) { in identifyNode()
950 CachedResult[{R, I}] = nullptr; in identifyNode()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp12228 auto &CachedResult = FilterResults[&Fn]; in updateImpl() local
12229 if (CachedResult.has_value()) in updateImpl()
12230 return CachedResult.value(); in updateImpl()
12235 CachedResult = false; in updateImpl()
12250 CachedResult = false; in updateImpl()
12255 CachedResult = true; in updateImpl()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp5438 auto CachedResult = CachedResults.find(ActionTC); in BuildJobsForAction() local
5439 if (CachedResult != CachedResults.end()) { in BuildJobsForAction()
5440 return CachedResult->second; in BuildJobsForAction()