Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/
H A DAllocationActions.cpp25 if (AA.Dealloc) in runFinalizeActions()
26 DeallocActions.push_back(std::move(AA.Dealloc)); in runFinalizeActions()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp343 this->RetconLowering.Dealloc = ContinuationId->getDeallocFunction(); in buildFrom()
487 auto Dealloc = RetconLowering.Dealloc; in emitDealloc() local
489 Dealloc->getFunctionType()->getParamType(0)); in emitDealloc()
490 auto *Call = Builder.CreateCall(Dealloc, Ptr); in emitDealloc()
491 propagateCallAttrsFromCallee(Call, Dealloc); in emitDealloc()
492 addCallToCallGraph(CG, Call, Dealloc); in emitDealloc()
H A DCoroInternal.h130 Function *Dealloc; member
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp633 } else if (Effect.getKind() == Dealloc) { in checkSummary()
652 } else if (Summ.getReceiverEffect().getKind() == Dealloc) { in checkSummary()
747 case Dealloc: // NB. we only need to add a note in a non-error case. in updateSymbol()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DRetainSummaryManager.h63 Dealloc, enumerator
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td1235 def ObjCDeallocChecker : Checker<"Dealloc">,