Home
last modified time | relevance | path

Searched refs:NewCtx (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp531 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addDefinition() local
533 return NewCtx; in addDefinition()
539 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addReference() local
541 return NewCtx; in addReference()
549 Context NewCtx = ContextFactory.remove(Ctx, D); in updateDefinition() local
550 NewCtx = ContextFactory.add(NewCtx, D, newID); in updateDefinition()
552 return NewCtx; in updateDefinition()
560 Context NewCtx = Ctx; in clearDefinition() local
561 if (NewCtx.contains(D)) { in clearDefinition()
562 NewCtx = ContextFactory.remove(NewCtx, D); in clearDefinition()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DThreadSafeModule.h53 ThreadSafeContext(std::unique_ptr<LLVMContext> NewCtx) in ThreadSafeContext() argument
54 : S(std::make_shared<State>(std::move(NewCtx))) { in ThreadSafeContext()