Home | History | Annotate | Download | only in IR

Lines Matching refs:CreateMalloc

371 static Instruction *createMalloc(Instruction *InsertBefore,
377 "createMalloc needs either InsertBefore or InsertAtEnd");
450 /// CreateMalloc - Generate the IR for a call to malloc:
456 Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
461 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
465 /// CreateMalloc - Generate the IR for a call to malloc:
473 Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
477 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,