Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/clang-analyzer/
H A Dosx.cocoa.Dealloc.rst1 .. title:: clang-tidy - clang-analyzer-osx.cocoa.Dealloc
5 clang-analyzer-osx.cocoa.Dealloc
8 The clang-analyzer-osx.cocoa.Dealloc check is an alias, please see
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/Shared/
H A DAllocationActions.cpp25 if (AA.Dealloc) in runFinalizeActions()
26 DeallocActions.push_back(std::move(AA.Dealloc)); in runFinalizeActions()
/llvm-project-15.0.7/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp334 this->RetconLowering.Dealloc = ContinuationId->getDeallocFunction(); in buildFrom()
478 auto Dealloc = RetconLowering.Dealloc; in emitDealloc() local
480 Dealloc->getFunctionType()->getParamType(0)); in emitDealloc()
481 auto *Call = Builder.CreateCall(Dealloc, Ptr); in emitDealloc()
482 propagateCallAttrsFromCallee(Call, Dealloc); in emitDealloc()
483 addCallToCallGraph(CG, Call, Dealloc); in emitDealloc()
H A DCoroInternal.h120 Function *Dealloc; member
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang/test/Analysis/
H A DMissingDealloc.m1 // RUN: %clang_analyze_cc1 -analyzer-checker=osx.cocoa.Dealloc -fblocks -verify %s
2 // RUN: %clang_analyze_cc1 -analyzer-checker=osx.cocoa.Dealloc -fblocks -verify -triple x86_64-appl…
H A DDeallocMissingRelease.m1 // RUN: %clang_analyze_cc1 -analyzer-checker=osx.cocoa.Dealloc -fblocks -triple x86_64-apple-ios4.0…
2 // RUN: %clang_analyze_cc1 -analyzer-checker=osx.cocoa.Dealloc -fblocks -triple x86_64-apple-macosx…
3 // RUN: %clang_analyze_cc1 -analyzer-checker=osx.cocoa.Dealloc -fblocks -triple x86_64-apple-darwin…
785 // The Dealloc checker needs to take particular care to not warn about missing
H A DPR2978.m1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,alpha.core,osx.cocoa.Dealloc %s -verify
H A Dproperties.m1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,osx.cocoa.RetainCount,osx.cocoa.Dealloc,debug.Exp…
2 // RUN: %clang_analyze_cc1 -analyzer-checker=core,osx.cocoa.RetainCount,osx.cocoa.Dealloc,debug.Exp…
/llvm-project-15.0.7/clang/lib/Analysis/
H A DRetainSummaryManager.cpp582 case Dealloc: in getStopTrackingHardEquivalent()
583 return E.withKind(Dealloc); in getStopTrackingHardEquivalent()
832 /*ThisEff=*/ArgEffect(Dealloc, ObjKind::OS)); in getOSSummaryFreeRule()
1086 ReceiverEff = ArgEffect(Dealloc, ObjKind::ObjC); in getStandardMethodSummary()
1232 Summ = getPersistentSummary(NoRet, ScratchArgs, ArgEffect(Dealloc, in InitializeMethodSummaries()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp634 } else if (Effect.getKind() == Dealloc) { in checkSummary()
653 } else if (Summ.getReceiverEffect().getKind() == Dealloc) { in checkSummary()
748 case Dealloc: // NB. we only need to add a note in a non-error case. in updateSymbol()
/llvm-project-15.0.7/clang/include/clang/Analysis/
H A DRetainSummaryManager.h62 Dealloc, enumerator
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/
H A Dlist.rst419 …`clang-analyzer-osx.cocoa.Dealloc <clang-analyzer/osx.cocoa.Dealloc.html>`_, `Clang Static Analyze…
/llvm-project-15.0.7/clang/docs/analyzer/
H A Dcheckers.rst1061 .. _osx-cocoa-Dealloc:
1063 osx.cocoa.Dealloc (ObjC)
/llvm-project-15.0.7/mlir/test/Dialect/Bufferization/Transforms/
H A Dbuffer-deallocation.mlir284 // DeallocOp for %0 should occur after the last BufferBasedOp. The Dealloc for
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td1193 def ObjCDeallocChecker : Checker<"Dealloc">,