Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/VMCore/
DInstructions.cpp405 CallInst *MCall = NULL; in createMalloc() local
408 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore); in createMalloc()
409 Result = MCall; in createMalloc()
412 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore); in createMalloc()
414 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall"); in createMalloc()
415 Result = MCall; in createMalloc()
417 InsertAtEnd->getInstList().push_back(MCall); in createMalloc()
419 Result = new BitCastInst(MCall, AllocPtrType, Name); in createMalloc()
422 MCall->setTailCall(); in createMalloc()
424 MCall->setCallingConv(F->getCallingConv()); in createMalloc()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DInstructions.cpp456 CallInst *MCall = nullptr; in createMalloc() local
459 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall", in createMalloc()
461 Result = MCall; in createMalloc()
464 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore); in createMalloc()
466 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall"); in createMalloc()
467 Result = MCall; in createMalloc()
469 InsertAtEnd->getInstList().push_back(MCall); in createMalloc()
471 Result = new BitCastInst(MCall, AllocPtrType, Name); in createMalloc()
474 MCall->setTailCall(); in createMalloc()
476 MCall->setCallingConv(F->getCallingConv()); in createMalloc()
[all …]
/external/llvm/lib/IR/
DInstructions.cpp494 CallInst *MCall = nullptr; in createMalloc() local
497 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall", in createMalloc()
499 Result = MCall; in createMalloc()
502 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore); in createMalloc()
504 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall"); in createMalloc()
505 Result = MCall; in createMalloc()
507 InsertAtEnd->getInstList().push_back(MCall); in createMalloc()
509 Result = new BitCastInst(MCall, AllocPtrType, Name); in createMalloc()
512 MCall->setTailCall(); in createMalloc()
514 MCall->setCallingConv(F->getCallingConv()); in createMalloc()
[all …]
/external/clang/lib/Analysis/
DConsumed.cpp838 if (const CXXMemberCallExpr *MCall = dyn_cast<CXXMemberCallExpr>(Call)) in VisitCXXOperatorCallExpr() local
839 handleCall(MCall, MCall->getImplicitObjectArgument(), FunDecl); in VisitCXXOperatorCallExpr()