Lines Matching refs:CallerCall
544 void updateCall(CallInfo &CallerCall, FuncInfo CalleeFunc) { in updateCall() argument
545 static_cast<DerivedCCG *>(this)->updateCall(CallerCall, CalleeFunc); in updateCall()
677 void updateCall(CallInfo &CallerCall, FuncInfo CalleeFunc);
754 void updateCall(CallInfo &CallerCall, FuncInfo CalleeFunc);
2858 void ModuleCallsiteContextGraph::updateCall(CallInfo &CallerCall, in updateCall() argument
2861 cast<CallBase>(CallerCall.call())->setCalledFunction(CalleeFunc.func()); in updateCall()
2862 OREGetter(CallerCall.call()->getFunction()) in updateCall()
2863 .emit(OptimizationRemark(DEBUG_TYPE, "MemprofCall", CallerCall.call()) in updateCall()
2864 << ore::NV("Call", CallerCall.call()) << " in clone " in updateCall()
2865 << ore::NV("Caller", CallerCall.call()->getFunction()) in updateCall()
2870 void IndexCallsiteContextGraph::updateCall(CallInfo &CallerCall, in updateCall() argument
2872 auto *CI = CallerCall.call().dyn_cast<CallsiteInfo *>(); in updateCall()
2875 assert(CI->Clones.size() > CallerCall.cloneNo()); in updateCall()
2876 CI->Clones[CallerCall.cloneNo()] = CalleeFunc.cloneNo(); in updateCall()