Searched refs:MCall (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/IR/ |
D | Instructions.cpp | 436 CallInst *MCall = nullptr; in createMalloc() local 439 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore); in createMalloc() 440 Result = MCall; in createMalloc() 443 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore); in createMalloc() 445 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall"); in createMalloc() 446 Result = MCall; in createMalloc() 448 InsertAtEnd->getInstList().push_back(MCall); in createMalloc() 450 Result = new BitCastInst(MCall, AllocPtrType, Name); in createMalloc() 453 MCall->setTailCall(); in createMalloc() 455 MCall->setCallingConv(F->getCallingConv()); in createMalloc() [all …]
|
/external/clang/lib/Analysis/ |
D | Consumed.cpp | 832 if (const CXXMemberCallExpr *MCall = dyn_cast<CXXMemberCallExpr>(Call)) in VisitCXXOperatorCallExpr() local 833 handleCall(MCall, MCall->getImplicitObjectArgument(), FunDecl); in VisitCXXOperatorCallExpr()
|