Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp386 CachedCodeCompletionResult CachedResult; in CacheCodeCompletionResults() local
387 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
390 CachedResult.ShowInContexts = getDeclShowContexts( in CacheCodeCompletionResults()
392 CachedResult.Priority = R.Priority; in CacheCodeCompletionResults()
393 CachedResult.Kind = R.CursorKind; in CacheCodeCompletionResults()
394 CachedResult.Availability = R.Availability; in CacheCodeCompletionResults()
400 CachedResult.TypeClass = STC_Void; in CacheCodeCompletionResults()
401 CachedResult.Type = 0; in CacheCodeCompletionResults()
405 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType); in CacheCodeCompletionResults()
417 CachedResult.Type = TypeValue; in CacheCodeCompletionResults()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugLoc.cpp104 DILocation *CachedResult = nullptr; in replaceInlinedAtSubprogram() local
110 CachedResult = cast<DILocation>(It->second); in replaceInlinedAtSubprogram()
116 DILocation *UpdatedLoc = CachedResult; in replaceInlinedAtSubprogram()
H A DDebugInfoMetadata.cpp1334 DIScope *CachedResult = nullptr; in cloneScopeForSubprogram() local
1339 CachedResult = cast<DIScope>(It->second); in cloneScopeForSubprogram()
1347 DIScope *UpdatedScope = CachedResult ? CachedResult : &NewSP; in cloneScopeForSubprogram()
/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/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp625 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesRecursively() local
626 CachedResult = std::move(Result); in memoizedMatchesRecursively()
628 *Builder = CachedResult.Nodes; in memoizedMatchesRecursively()
629 return CachedResult.ResultOfMatch; in memoizedMatchesRecursively()
1162 MemoizedMatchResult &CachedResult = ResultCache[Key]; in matchesAnyAncestorOf() local
1163 CachedResult.ResultOfMatch = Matched; in matchesAnyAncestorOf()
1164 CachedResult.Nodes = *Builder; in matchesAnyAncestorOf()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp243 DenseMap<std::pair<Value *, Value *>, NodePtr> CachedResult; member in __anon87c1be940111::ComplexDeinterleavingGraph
311 CachedResult[{Node->Real, Node->Imag}] = Node; in submitCompositeNode()
1058 auto It = CachedResult.find({R, I}); in identifyNode()
1059 if (It != CachedResult.end()) { in identifyNode()
1115 CachedResult[{R, I}] = nullptr; in identifyNode()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp12303 auto &CachedResult = FilterResults[&Fn]; in updateImpl() local
12304 if (CachedResult.has_value()) in updateImpl()
12305 return CachedResult.value(); in updateImpl()
12310 CachedResult = false; in updateImpl()
12325 CachedResult = false; in updateImpl()
12330 CachedResult = true; in updateImpl()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp5785 auto CachedResult = CachedResults.find(ActionTC); in BuildJobsForAction() local
5786 if (CachedResult != CachedResults.end()) { in BuildJobsForAction()
5787 return CachedResult->second; in BuildJobsForAction()