HomeSort by relevance Sort by last modified time
    Searched refs:createMalloc (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/IR/
Instructions.cpp 441 static Instruction *createMalloc(Instruction *InsertBefore,
448 "createMalloc needs either InsertBefore or InsertAtEnd");
522 /// CreateMalloc - Generate the IR for a call to malloc:
528 Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
533 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
536 Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
542 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
547 /// CreateMalloc - Generate the IR for a call to malloc:
555 Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
559 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp 353 static Instruction *createMalloc(Instruction *InsertBefore,
359 "createMalloc needs either InsertBefore or InsertAtEnd");
432 /// CreateMalloc - Generate the IR for a call to malloc:
438 Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
443 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
447 /// CreateMalloc - Generate the IR for a call to malloc:
455 Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
459 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
    [all...]

Completed in 1081 milliseconds