HomeSort by: relevance | last modified time | path
    Searched defs:CreateMalloc (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 624 static Instruction *createMalloc(Instruction *InsertBefore,
631 "createMalloc needs either InsertBefore or InsertAtEnd");
706 /// CreateMalloc - Generate the IR for a call to malloc:
712 Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
717 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
720 Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
726 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
730 /// CreateMalloc - Generate the IR for a call to malloc:
738 Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
742 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go 1613 func (b Builder) CreateMalloc(t Type, name string) (v Value) {

Completed in 182 milliseconds