Searched refs:Cached (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp108 auto Cached = ScopeVars.Args.find(ArgNum); local
109 if (Cached == ScopeVars.Args.end())
112 Cached->second->addMMIEntry(*Var);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsize_class_map.h101 const uptr Cached = getMaxCachedHint(S) * S; local
103 "C%02zu => S: %zu diff: +%zu %02zu%% L %zu Cached: %zu %zu; id %zu\n",
104 I, getSizeByClassId(I), D, P, L, getMaxCachedHint(S), Cached,
106 TotalCached += Cached;
109 Buffer.append("Total Cached: %zu\n", TotalCached);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConstraintManager.h335 auto I = Cached.find(hash);
336 if (I != Cached.end())
344 Cached[hash] = ConditionTruthVal();
346 Cached[hash] = ConditionTruthVal(res.getValue());
348 return Cached[hash];
353 mutable llvm::DenseMap<unsigned, ConditionTruthVal> Cached; member in class:clang::ento::SMTConstraintManager
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp340 auto Cached = CommentBeginLine.find(C); local
341 if (Cached != CommentBeginLine.end())
342 return Cached->second;
349 auto Cached = CommentEndOffset.find(C); local
350 if (Cached != CommentEndOffset.end())
351 return Cached->second;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h86 Storage Cached[NumCached]; member in class:clang::PartialDiagnostic::StorageAllocator
108 if (S >= Cached && S <= Cached + NumCached) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp1242 llvm::DenseMap<SymbolRef, SVal> Cached; member in class:Simplifier
1249 Cached[Sym] = V;
1274 auto I = Cached.find(S);
1275 if (I != Cached.end())
1306 auto I = Cached.find(S);
1307 if (I != Cached.end())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp46 auto Cached = CachedPreviousDef.find(BB); local
47 if (Cached != CachedPreviousDef.end())
48 return Cached->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp613 Value *&Cached = Cache[I]; local
614 if (!Cached) {
615 Cached = findBaseDefiningValue(I).BDV;
617 << Cached->getName() << "\n");
620 return Cached;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp1139 FreeList[I] = Cached + I;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1223 void takeToks(CachedTokens &Cached) { Toks.swap(Cached); } argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp4461 auto Cached = DeclCache.find(D->getCanonicalDecl()); local
4462 if (Cached != DeclCache.end())
4464 cast<llvm::DIGlobalVariableExpression>(Cached->second));

Completed in 182 milliseconds