Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstructions.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 …]