Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp541 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addDefinition() local
543 return NewCtx; in addDefinition()
549 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addReference() local
551 return NewCtx; in addReference()
559 Context NewCtx = ContextFactory.remove(Ctx, D); in updateDefinition() local
560 NewCtx = ContextFactory.add(NewCtx, D, newID); in updateDefinition()
562 return NewCtx; in updateDefinition()
570 Context NewCtx = Ctx; in clearDefinition() local
571 if (NewCtx.contains(D)) { in clearDefinition()
572 NewCtx = ContextFactory.remove(NewCtx, D); in clearDefinition()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DThreadSafeModule.h43 ThreadSafeContext(std::unique_ptr<LLVMContext> NewCtx) in ThreadSafeContext() argument
44 : S(std::make_shared<State>(std::move(NewCtx))) { in ThreadSafeContext()