Home | History | Annotate | Download | only in VMCore

Lines Matching full:createmalloc

271 static Instruction *createMalloc(Instruction *InsertBefore,
277 "createMalloc needs either InsertBefore or InsertAtEnd");
350 /// CreateMalloc - Generate the IR for a call to malloc:
356 Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
361 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
365 /// CreateMalloc - Generate the IR for a call to malloc:
373 Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
377 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,