Home
last modified time | relevance | path

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

/freebsd-head/contrib/llvm-project/llvm/lib/IR/
HDDebugLoc.cpp74 DILocation *CachedResult = nullptr; in replaceInlinedAtSubprogram() local
80 CachedResult = cast<DILocation>(It->second); in replaceInlinedAtSubprogram()
86 DILocation *UpdatedLoc = CachedResult; in replaceInlinedAtSubprogram()
HDDebugInfoMetadata.cpp1063 DIScope *CachedResult = nullptr; in cloneScopeForSubprogram() local
1068 CachedResult = cast<DIScope>(It->second); in cloneScopeForSubprogram()
1076 DIScope *UpdatedScope = CachedResult ? CachedResult : &NewSP; in cloneScopeForSubprogram()
/freebsd-head/contrib/llvm-project/clang/lib/Frontend/
HDASTUnit.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-head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
HDmem_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-head/contrib/llvm-project/clang/lib/ASTMatchers/
HDASTMatchFinder.cpp623 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesRecursively() local
624 CachedResult = std::move(Result); in memoizedMatchesRecursively()
626 *Builder = CachedResult.Nodes; in memoizedMatchesRecursively()
627 return CachedResult.ResultOfMatch; in memoizedMatchesRecursively()
1160 MemoizedMatchResult &CachedResult = ResultCache[Key]; in matchesAnyAncestorOf() local
1161 CachedResult.ResultOfMatch = Matched; in matchesAnyAncestorOf()
1162 CachedResult.Nodes = *Builder; in matchesAnyAncestorOf()
/freebsd-head/contrib/llvm-project/llvm/lib/CodeGen/
HDComplexDeinterleavingPass.cpp230 DenseMap<std::pair<Value *, Value *>, NodePtr> CachedResult; member in __anon4eadd5f30111::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-head/contrib/llvm-project/llvm/lib/Transforms/IPO/
HDAttributorAttributes.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-head/contrib/llvm-project/clang/lib/Driver/
HDDriver.cpp5438 auto CachedResult = CachedResults.find(ActionTC); in BuildJobsForAction() local
5439 if (CachedResult != CachedResults.end()) { in BuildJobsForAction()
5440 return CachedResult->second; in BuildJobsForAction()