Home
last modified time | relevance | path

Searched refs:MCall (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDTrustNonnullChecker.cpp170 const auto *MCall = cast<ObjCMethodCall>(&Call); in isNonNullPtr() local
171 const ObjCMethodDecl *MD = MCall->getDecl(); in isNonNullPtr()
183 if (!MCall->isInstanceMessage()) in isNonNullPtr()
187 SVal Receiver = MCall->getReceiverSVal(); in isNonNullPtr()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
HDInstructions.cpp575 CallInst *MCall = nullptr; in createMalloc() local
578 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall", in createMalloc()
580 Result = MCall; in createMalloc()
583 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore); in createMalloc()
585 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall"); in createMalloc()
586 Result = MCall; in createMalloc()
588 InsertAtEnd->getInstList().push_back(MCall); in createMalloc()
590 Result = new BitCastInst(MCall, AllocPtrType, Name); in createMalloc()
593 MCall->setTailCall(); in createMalloc()
595 MCall->setCallingConv(F->getCallingConv()); in createMalloc()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
HDConsumed.cpp824 if (const auto *MCall = dyn_cast<CXXMemberCallExpr>(Call)) in VisitCXXOperatorCallExpr() local
825 handleCall(MCall, MCall->getImplicitObjectArgument(), FunDecl); in VisitCXXOperatorCallExpr()
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
HDRetainCountChecker.cpp658 } else if (const auto *MCall = dyn_cast<CXXMemberCall>(&CallOrMsg)) { in checkSummary() local
659 if (SymbolRef Sym = MCall->getCXXThisVal().getAsLocSymbol()) { in checkSummary()
664 ErrorRange = MCall->getOriginExpr()->getSourceRange(); in checkSummary()