• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/

Lines Matching defs:CLI

152   bool fastLowerCall(CallLoweringInfo &CLI) override;
282 bool processCallArgs(CallLoweringInfo &CLI, SmallVectorImpl<MVT> &ArgVTs,
284 bool finishCall(CallLoweringInfo &CLI, MVT RetVT, unsigned NumBytes);
3060 bool AArch64FastISel::processCallArgs(CallLoweringInfo &CLI,
3063 CallingConv::ID CC = CLI.CallConv;
3066 CCInfo.AnalyzeCallOperands(OutVTs, CLI.OutFlags, CCAssignFnForCall(CC));
3078 const Value *ArgVal = CLI.OutVals[VA.getValNo()];
3115 CLI.OutRegs.push_back(VA.getLocReg());
3150 bool AArch64FastISel::finishCall(CallLoweringInfo &CLI, MVT RetVT,
3152 CallingConv::ID CC = CLI.CallConv;
3180 CLI.InRegs.push_back(RVLocs[0].getLocReg());
3182 CLI.ResultReg = ResultReg;
3183 CLI.NumResultRegs = 1;
3189 bool AArch64FastISel::fastLowerCall(CallLoweringInfo &CLI) {
3190 CallingConv::ID CC = CLI.CallConv;
3191 bool IsTailCall = CLI.IsTailCall;
3192 bool IsVarArg = CLI.IsVarArg;
3193 const Value *Callee = CLI.Callee;
3194 MCSymbol *Symbol = CLI.Symbol;
3223 if (CLI.RetTy->isVoidTy())
3225 else if (!isTypeLegal(CLI.RetTy, RetVT))
3228 for (auto Flag : CLI.OutFlags)
3235 OutVTs.reserve(CLI.OutVals.size());
3237 for (auto *Val : CLI.OutVals) {
3263 if (!processCallArgs(CLI, OutVTs, NumBytes))
3313 for (auto Reg : CLI.OutRegs)
3320 CLI.Call = MIB;
3323 return finishCall(CLI, RetVT, NumBytes);
3616 CallLoweringInfo CLI;
3618 CLI.setCallee(DL, Ctx, TLI.getLibcallCallingConv(LC), II->getType(),
3620 if (!lowerCallTo(CLI))
3622 updateValueMap(II, CLI.ResultReg);
4915 CallLoweringInfo CLI;
4917 CLI.setCallee(DL, Ctx, TLI.getLibcallCallingConv(LC), I->getType(),
4919 if (!lowerCallTo(CLI))
4921 updateValueMap(I, CLI.ResultReg);