1 //===-- MipsFrameLowering.h - Define frame lowering for Mips ----*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_MIPS_MIPSFRAMELOWERING_H
14 #define LLVM_LIB_TARGET_MIPS_MIPSFRAMELOWERING_H
17 #include "llvm/CodeGen/TargetFrameLowering.h"
22 class MipsFrameLowering
: public TargetFrameLowering
{
24 const MipsSubtarget
&STI
;
27 explicit MipsFrameLowering(const MipsSubtarget
&sti
, Align Alignment
)
28 : TargetFrameLowering(StackGrowsDown
, Alignment
, 0, Alignment
), STI(sti
) {
31 static const MipsFrameLowering
*create(const MipsSubtarget
&ST
);
33 bool hasFP(const MachineFunction
&MF
) const override
;
35 bool hasBP(const MachineFunction
&MF
) const;
37 bool isFPCloseToIncomingSP() const override
{ return false; }
39 bool enableShrinkWrapping(const MachineFunction
&MF
) const override
{
43 MachineBasicBlock::iterator
44 eliminateCallFramePseudoInstr(MachineFunction
&MF
,
45 MachineBasicBlock
&MBB
,
46 MachineBasicBlock::iterator I
) const override
;
49 uint64_t estimateStackSize(const MachineFunction
&MF
) const;
52 /// Create MipsFrameLowering objects.
53 const MipsFrameLowering
*createMips16FrameLowering(const MipsSubtarget
&ST
);
54 const MipsFrameLowering
*createMipsSEFrameLowering(const MipsSubtarget
&ST
);
56 } // End llvm namespace