blob: 513848a1d8871900575fa97e9ba49a7eacb1372b [file] [log] [blame]
Tom Stellardf3b2a1e2013-02-06 17:32:29 +00001//===--------------------- AMDGPUFrameLowering.h ----------------*- C++ -*-===//
Tom Stellard75aadc22012-12-11 21:25:42 +00002//
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/// \file
Matt Arsenault0c90e952015-11-06 18:17:45 +000011/// \brief Interface to describe a layout of a stack frame on an AMDGPU target.
Tom Stellard75aadc22012-12-11 21:25:42 +000012//
13//===----------------------------------------------------------------------===//
Matt Arsenault0c90e952015-11-06 18:17:45 +000014#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUFRAMELOWERING_H
15#define LLVM_LIB_TARGET_AMDGPU_AMDGPUFRAMELOWERING_H
Tom Stellard75aadc22012-12-11 21:25:42 +000016
Tom Stellard75aadc22012-12-11 21:25:42 +000017#include "llvm/Target/TargetFrameLowering.h"
18
19namespace llvm {
20
21/// \brief Information about the stack frame layout on the AMDGPU targets.
22///
23/// It holds the direction of the stack growth, the known stack alignment on
24/// entry to each function, and the offset to the locals area.
25/// See TargetFrameInfo for more comments.
26class AMDGPUFrameLowering : public TargetFrameLowering {
27public:
28 AMDGPUFrameLowering(StackDirection D, unsigned StackAl, int LAO,
29 unsigned TransAl = 1);
30 virtual ~AMDGPUFrameLowering();
Tom Stellardf3b2a1e2013-02-06 17:32:29 +000031
32 /// \returns The number of 32-bit sub-registers that are used when storing
33 /// values to the stack.
Craig Topperee7b0f32014-04-30 05:53:27 +000034 unsigned getStackWidth(const MachineFunction &MF) const;
Matt Arsenault43e92fe2016-06-24 06:30:11 +000035
James Y Knight5567baf2015-08-15 02:32:35 +000036 int getFrameIndexReference(const MachineFunction &MF, int FI,
37 unsigned &FrameReg) const override;
Matt Arsenault43e92fe2016-06-24 06:30:11 +000038
Matt Arsenault43e92fe2016-06-24 06:30:11 +000039 bool hasFP(const MachineFunction &MF) const override {
40 return false;
41 }
Tom Stellard75aadc22012-12-11 21:25:42 +000042};
43} // namespace llvm
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000044#endif