Lines Matching refs:CLI
126 bool fastLowerCall(CallLoweringInfo &CLI) override;
187 bool finishCall(MVT RetVT, CallLoweringInfo &CLI, unsigned &NumBytes);
1381 bool PPCFastISel::finishCall(MVT RetVT, CallLoweringInfo &CLI, unsigned &NumBytes) { in finishCall() argument
1382 CallingConv::ID CC = CLI.CallConv; in finishCall()
1439 CLI.InRegs.push_back(SourcePhysReg); in finishCall()
1440 CLI.ResultReg = ResultReg; in finishCall()
1441 CLI.NumResultRegs = 1; in finishCall()
1447 bool PPCFastISel::fastLowerCall(CallLoweringInfo &CLI) { in fastLowerCall() argument
1448 CallingConv::ID CC = CLI.CallConv; in fastLowerCall()
1449 bool IsTailCall = CLI.IsTailCall; in fastLowerCall()
1450 bool IsVarArg = CLI.IsVarArg; in fastLowerCall()
1451 const Value *Callee = CLI.Callee; in fastLowerCall()
1452 const MCSymbol *Symbol = CLI.Symbol; in fastLowerCall()
1467 Type *RetTy = CLI.RetTy; in fastLowerCall()
1491 unsigned NumArgs = CLI.OutVals.size(); in fastLowerCall()
1510 ISD::ArgFlagsTy Flags = CLI.OutFlags[i]; in fastLowerCall()
1514 Value *ArgValue = CLI.OutVals[i]; in fastLowerCall()
1551 if (CLI.IsPatchPoint) in fastLowerCall()
1577 CLI.Call = MIB; in fastLowerCall()
1580 return finishCall(RetVT, CLI, NumBytes); in fastLowerCall()