Home
last modified time | relevance | path

Searched refs:Dealloc (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DAllocationActions.h37 WrapperFunctionCall Dealloc; member
52 AAs, [](const AllocActionCallPair &P) { return !!P.Dealloc; }); in numDeallocActions()
83 return AL::size(AAP.Finalize, AAP.Dealloc); in size()
88 return AL::serialize(OB, AAP.Finalize, AAP.Dealloc); in serialize()
93 return AL::deserialize(IB, AAP.Finalize, AAP.Dealloc); in deserialize()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/Shared/
H A DAllocationActions.cpp25 if (AA.Dealloc) in runFinalizeActions()
26 DeallocActions.push_back(std::move(AA.Dealloc)); in runFinalizeActions()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp340 this->RetconLowering.Dealloc = ContinuationId->getDeallocFunction(); in buildFrom()
484 auto Dealloc = RetconLowering.Dealloc; in emitDealloc() local
486 Dealloc->getFunctionType()->getParamType(0)); in emitDealloc()
487 auto *Call = Builder.CreateCall(Dealloc, Ptr); in emitDealloc()
488 propagateCallAttrsFromCallee(Call, Dealloc); in emitDealloc()
489 addCallToCallGraph(CG, Call, Dealloc); in emitDealloc()
H A DCoroInternal.h121 Function *Dealloc; member
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleExecutorMemoryManager.cpp55 if (ActPair.Dealloc) in finalize()
56 DeallocationActions.push_back(ActPair.Dealloc); in finalize()
99 .Dealloc.runWithSPSRetErrorMerged()); in finalize()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DRetainSummaryManager.cpp583 case Dealloc: in getStopTrackingHardEquivalent()
584 return E.withKind(Dealloc); in getStopTrackingHardEquivalent()
833 /*ThisEff=*/ArgEffect(Dealloc, ObjKind::OS)); in getOSSummaryFreeRule()
1087 ReceiverEff = ArgEffect(Dealloc, ObjKind::ObjC); in getStandardMethodSummary()
1233 Summ = getPersistentSummary(NoRet, ScratchArgs, ArgEffect(Dealloc, in InitializeMethodSummaries()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp635 } else if (Effect.getKind() == Dealloc) { in checkSummary()
654 } else if (Summ.getReceiverEffect().getKind() == Dealloc) { in checkSummary()
749 case Dealloc: // NB. we only need to add a note in a non-error case. in updateSymbol()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DRetainSummaryManager.h63 Dealloc, enumerator
/openbsd-src/gnu/llvm/clang/docs/analyzer/
H A Dcheckers.rst1077 .. _osx-cocoa-Dealloc:
1079 osx.cocoa.Dealloc (ObjC)
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td1197 def ObjCDeallocChecker : Checker<"Dealloc">,