HomeSort by: relevance | last modified time | path
    Searched defs:MCall (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
TrustNonnullChecker.cpp 170 const auto *MCall = cast<ObjCMethodCall>(&Call);
171 const ObjCMethodDecl *MD = MCall->getDecl();
183 if (!MCall->isInstanceMessage())
187 SVal Receiver = MCall->getReceiverSVal();
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 677 CallInst *MCall = nullptr;
680 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall",
682 Result = MCall;
685 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
687 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall");
688 Result = MCall;
690 InsertAtEnd->getInstList().push_back(MCall);
692 Result = new BitCastInst(MCall, AllocPtrType, Name);
695 MCall->setTailCall();
697 MCall->setCallingConv(F->getCallingConv())
    [all...]

Completed in 16 milliseconds