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

  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp 405 CallInst *MCall = NULL;
408 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
409 Result = MCall;
412 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
414 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
415 Result = MCall;
417 InsertAtEnd->getInstList().push_back(MCall);
419 Result = new BitCastInst(MCall, AllocPtrType, Name);
422 MCall->setTailCall();
424 MCall->setCallingConv(F->getCallingConv())
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 838 if (const CXXMemberCallExpr *MCall = dyn_cast<CXXMemberCallExpr>(Call))
839 handleCall(MCall, MCall->getImplicitObjectArgument(), FunDecl);
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp 494 CallInst *MCall = nullptr;
497 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall",
499 Result = MCall;
502 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
504 MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall");
505 Result = MCall;
507 InsertAtEnd->getInstList().push_back(MCall);
509 Result = new BitCastInst(MCall, AllocPtrType, Name);
512 MCall->setTailCall();
514 MCall->setCallingConv(F->getCallingConv())
    [all...]

Completed in 374 milliseconds