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

  /external/llvm/lib/IR/
Instructions.cpp 423 CallInst *MCall = nullptr;
426 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
427 Result = MCall;
430 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
432 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
433 Result = MCall;
435 InsertAtEnd->getInstList().push_back(MCall);
437 Result = new BitCastInst(MCall, AllocPtrType, Name);
440 MCall->setTailCall();
442 MCall->setCallingConv(F->getCallingConv())
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 832 if (const CXXMemberCallExpr *MCall = dyn_cast<CXXMemberCallExpr>(Call))
833 handleCall(MCall, MCall->getImplicitObjectArgument(), FunDecl);
    [all...]

Completed in 62 milliseconds