Lines Matching refs:CLI
85 bool fastLowerCall(CallLoweringInfo &CLI) override;
182 bool processCallArgs(CallLoweringInfo &CLI, SmallVectorImpl<MVT> &ArgVTs,
184 bool finishCall(CallLoweringInfo &CLI, MVT RetVT, unsigned NumBytes);
1073 bool MipsFastISel::processCallArgs(CallLoweringInfo &CLI, in processCallArgs() argument
1076 CallingConv::ID CC = CLI.CallConv; in processCallArgs()
1079 CCInfo.AnalyzeCallOperands(OutVTs, CLI.OutFlags, CCAssignFnForCall(CC)); in processCallArgs()
1091 const Value *ArgVal = CLI.OutVals[VA.getValNo()]; in processCallArgs()
1163 CLI.OutRegs.push_back(VA.getLocReg()); in processCallArgs()
1207 bool MipsFastISel::finishCall(CallLoweringInfo &CLI, MVT RetVT, in finishCall() argument
1209 CallingConv::ID CC = CLI.CallConv; in finishCall()
1231 CLI.InRegs.push_back(RVLocs[0].getLocReg()); in finishCall()
1233 CLI.ResultReg = ResultReg; in finishCall()
1234 CLI.NumResultRegs = 1; in finishCall()
1239 bool MipsFastISel::fastLowerCall(CallLoweringInfo &CLI) { in fastLowerCall() argument
1243 CallingConv::ID CC = CLI.CallConv; in fastLowerCall()
1244 bool IsTailCall = CLI.IsTailCall; in fastLowerCall()
1245 bool IsVarArg = CLI.IsVarArg; in fastLowerCall()
1246 const Value *Callee = CLI.Callee; in fastLowerCall()
1247 MCSymbol *Symbol = CLI.Symbol; in fastLowerCall()
1263 if (CLI.RetTy->isVoidTy()) in fastLowerCall()
1265 else if (!isTypeSupported(CLI.RetTy, RetVT)) in fastLowerCall()
1268 for (auto Flag : CLI.OutFlags) in fastLowerCall()
1274 OutVTs.reserve(CLI.OutVals.size()); in fastLowerCall()
1276 for (auto *Val : CLI.OutVals) { in fastLowerCall()
1295 if (!processCallArgs(CLI, OutVTs, NumBytes)) in fastLowerCall()
1313 for (auto Reg : CLI.OutRegs) in fastLowerCall()
1320 CLI.Call = MIB; in fastLowerCall()
1323 return finishCall(CLI, RetVT, NumBytes); in fastLowerCall()