Home
last modified time | relevance | path

Searched refs:lctx (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lld/Common/
H A DCommonLinkerContext.cpp23 static CommonLinkerContext *lctx; variable
26 lctx = this; in CommonLinkerContext()
32 assert(lctx); in ~CommonLinkerContext()
37 lctx = nullptr; in ~CommonLinkerContext()
41 assert(lctx); in commonContext()
42 return *lctx; in commonContext()
45 bool lld::hasContext() { return lctx != nullptr; } in hasContext()
48 if (lctx == nullptr) in destroy()
50 delete lctx; in destroy()
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h86 SymbolConjured(SymbolID sym, const Stmt *s, const LocationContext *lctx, in SymbolConjured() argument
89 LCtx(lctx), SymbolTag(symbolTag) { in SymbolConjured()
95 assert(lctx); in SymbolConjured()
H A DCallEvent.h178 CallEvent(const Expr *E, ProgramStateRef state, const LocationContext *lctx) in CallEvent() argument
179 : State(std::move(state)), LCtx(lctx), Origin(E) {} in CallEvent()
181 CallEvent(const Decl *D, ProgramStateRef state, const LocationContext *lctx) in CallEvent() argument
182 : State(std::move(state)), LCtx(lctx), Origin(D) {} in CallEvent()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp988 const LocationContext *lctx, in InvalidateRegionsWorker() argument
994 Ex(ex), Count(count), LCtx(lctx), IS(is), ITraits(ITraitsIn), Regions(r), in InvalidateRegionsWorker()