]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.h
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r301441, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / AMDGPU / SIFrameLowering.h
1 //===--------------------- SIFrameLowering.h --------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_LIB_TARGET_AMDGPU_SIFRAMELOWERING_H
11 #define LLVM_LIB_TARGET_AMDGPU_SIFRAMELOWERING_H
12
13 #include "AMDGPUFrameLowering.h"
14
15 namespace llvm {
16
17 class SIInstrInfo;
18 class SIMachineFunctionInfo;
19 class SIRegisterInfo;
20 class SISubtarget;
21
22 class SIFrameLowering final : public AMDGPUFrameLowering {
23 public:
24   SIFrameLowering(StackDirection D, unsigned StackAl, int LAO,
25                   unsigned TransAl = 1) :
26     AMDGPUFrameLowering(D, StackAl, LAO, TransAl) {}
27   ~SIFrameLowering() override = default;
28
29   void emitPrologue(MachineFunction &MF,
30                     MachineBasicBlock &MBB) const override;
31   void emitEpilogue(MachineFunction &MF,
32                     MachineBasicBlock &MBB) const override;
33   int getFrameIndexReference(const MachineFunction &MF, int FI,
34                              unsigned &FrameReg) const override;
35
36   void processFunctionBeforeFrameFinalized(
37     MachineFunction &MF,
38     RegScavenger *RS = nullptr) const override;
39
40 private:
41   void emitFlatScratchInit(const SISubtarget &ST,
42                            MachineFunction &MF,
43                            MachineBasicBlock &MBB) const;
44
45   unsigned getReservedPrivateSegmentBufferReg(
46     const SISubtarget &ST,
47     const SIInstrInfo *TII,
48     const SIRegisterInfo *TRI,
49     SIMachineFunctionInfo *MFI,
50     MachineFunction &MF) const;
51
52   std::pair<unsigned, unsigned> getReservedPrivateSegmentWaveByteOffsetReg(
53     const SISubtarget &ST,
54     const SIInstrInfo *TII,
55     const SIRegisterInfo *TRI,
56     SIMachineFunctionInfo *MFI,
57     MachineFunction &MF) const;
58
59   /// \brief Emits debugger prologue.
60   void emitDebuggerPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const;
61 };
62
63 } // end namespace llvm
64
65 #endif // LLVM_LIB_TARGET_AMDGPU_SIFRAMELOWERING_H