1//===- lib/Target/AMDGPU/AMDGPUCallLowering.h - Call lowering -*- C++ -*---===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file describes how to lower LLVM calls to machine code calls.
11///
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUCALLLOWERING_H
15#define LLVM_LIB_TARGET_AMDGPU_AMDGPUCALLLOWERING_H
16
17#include "llvm/CodeGen/GlobalISel/CallLowering.h"
18
19namespace llvm {
20
21class AMDGPUTargetLowering;
22class GCNSubtarget;
23class MachineInstrBuilder;
24class SIMachineFunctionInfo;
25
26class AMDGPUCallLowering final : public CallLowering {
27 void lowerParameterPtr(Register DstReg, MachineIRBuilder &B,
28 uint64_t Offset) const;
29
30 void lowerParameter(MachineIRBuilder &B, ArgInfo &AI, uint64_t Offset,
31 Align Alignment) const;
32
33 bool canLowerReturn(MachineFunction &MF, CallingConv::ID CallConv,
34 SmallVectorImpl<BaseArgInfo> &Outs,
35 bool IsVarArg) const override;
36
37 bool lowerReturnVal(MachineIRBuilder &B, const Value *Val,
38 ArrayRef<Register> VRegs, MachineInstrBuilder &Ret) const;
39
40public:
41 AMDGPUCallLowering(const AMDGPUTargetLowering &TLI);
42
43 bool lowerReturn(MachineIRBuilder &B, const Value *Val,
44 ArrayRef<Register> VRegs,
45 FunctionLoweringInfo &FLI) const override;
46
47 bool lowerFormalArgumentsKernel(MachineIRBuilder &B, const Function &F,
48 ArrayRef<ArrayRef<Register>> VRegs) const;
49
50 bool lowerFormalArguments(MachineIRBuilder &B, const Function &F,
51 ArrayRef<ArrayRef<Register>> VRegs,
52 FunctionLoweringInfo &FLI) const override;
53
54 bool passSpecialInputs(MachineIRBuilder &MIRBuilder,
55 CCState &CCInfo,
56 SmallVectorImpl<std::pair<MCRegister, Register>> &ArgRegs,
57 CallLoweringInfo &Info) const;
58
59 bool
60 doCallerAndCalleePassArgsTheSameWay(CallLoweringInfo &Info,
61 MachineFunction &MF,
62 SmallVectorImpl<ArgInfo> &InArgs) const;
63
64 bool
65 areCalleeOutgoingArgsTailCallable(CallLoweringInfo &Info, MachineFunction &MF,
66 SmallVectorImpl<ArgInfo> &OutArgs) const;
67
68 /// Returns true if the call can be lowered as a tail call.
69 bool
70 isEligibleForTailCallOptimization(MachineIRBuilder &MIRBuilder,
71 CallLoweringInfo &Info,
72 SmallVectorImpl<ArgInfo> &InArgs,
73 SmallVectorImpl<ArgInfo> &OutArgs) const;
74
75 void handleImplicitCallArguments(
76 MachineIRBuilder &MIRBuilder, MachineInstrBuilder &CallInst,
77 const GCNSubtarget &ST, const SIMachineFunctionInfo &MFI,
78 CallingConv::ID CalleeCC,
79 ArrayRef<std::pair<MCRegister, Register>> ImplicitArgRegs) const;
80
81 bool lowerTailCall(MachineIRBuilder &MIRBuilder, CallLoweringInfo &Info,
82 SmallVectorImpl<ArgInfo> &OutArgs) const;
83 bool lowerChainCall(MachineIRBuilder &MIRBuilder,
84 CallLoweringInfo &Info) const;
85 bool lowerCall(MachineIRBuilder &MIRBuilder,
86 CallLoweringInfo &Info) const override;
87
88 static CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool IsVarArg);
89 static CCAssignFn *CCAssignFnForReturn(CallingConv::ID CC, bool IsVarArg);
90};
91} // End of namespace llvm;
92#endif
93

source code of llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h