Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DThreadSafety.cpp532 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addDefinition() local
534 return NewCtx; in addDefinition()
540 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addReference() local
542 return NewCtx; in addReference()
550 Context NewCtx = ContextFactory.remove(Ctx, D); in updateDefinition() local
551 NewCtx = ContextFactory.add(NewCtx, D, newID); in updateDefinition()
553 return NewCtx; in updateDefinition()
561 Context NewCtx = Ctx; in clearDefinition() local
562 if (NewCtx.contains(D)) { in clearDefinition()
563 NewCtx = ContextFactory.remove(NewCtx, D); in clearDefinition()
[all …]
/openbsd-src/gnu/llvm/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()