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

  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp 400 Value *MallocFunc = MallocF;
401 if (!MallocFunc)
403 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
408 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
414 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
423 if (Function *F = dyn_cast<Function>(MallocFunc)) {
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp 489 Value *MallocFunc = MallocF;
490 if (!MallocFunc)
492 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, nullptr);
497 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall",
504 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall");
513 if (Function *F = dyn_cast<Function>(MallocFunc)) {
    [all...]

Completed in 539 milliseconds