2011-12-13 05:14:40 +08:00
|
|
|
//=- HexagonFrameLowering.h - Define frame lowering for Hexagon --*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONFRAMELOWERING_H
|
|
|
|
#define LLVM_LIB_TARGET_HEXAGON_HEXAGONFRAMELOWERING_H
|
2011-12-13 05:14:40 +08:00
|
|
|
|
|
|
|
#include "Hexagon.h"
|
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2015-04-23 00:43:53 +08:00
|
|
|
class HexagonInstrInfo;
|
|
|
|
|
2011-12-13 05:14:40 +08:00
|
|
|
class HexagonFrameLowering : public TargetFrameLowering {
|
|
|
|
private:
|
2015-04-23 00:43:53 +08:00
|
|
|
void expandAlloca(MachineInstr *AI, const HexagonInstrInfo &TII,
|
|
|
|
unsigned SP, unsigned CF) const;
|
2011-12-13 05:14:40 +08:00
|
|
|
|
|
|
|
public:
|
2015-04-23 00:43:53 +08:00
|
|
|
explicit HexagonFrameLowering()
|
|
|
|
: TargetFrameLowering(StackGrowsDown, 8, 0, 1, true) {}
|
2011-12-13 05:14:40 +08:00
|
|
|
|
2014-04-29 15:58:16 +08:00
|
|
|
void emitPrologue(MachineFunction &MF) const override;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
|
2015-04-23 00:43:53 +08:00
|
|
|
bool targetHandlesStackFrameRounding() const override {
|
|
|
|
return true;
|
|
|
|
}
|
2014-04-29 15:58:16 +08:00
|
|
|
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
|
|
|
const TargetRegisterInfo *TRI) const override;
|
|
|
|
|
|
|
|
void
|
|
|
|
eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const override;
|
|
|
|
|
|
|
|
bool
|
2011-12-13 05:14:40 +08:00
|
|
|
restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
2014-04-29 15:58:16 +08:00
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2015-04-23 00:43:53 +08:00
|
|
|
void processFunctionBeforeFrameFinalized(MachineFunction &MF,
|
|
|
|
RegScavenger *RS = NULL) const override;
|
|
|
|
void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
|
|
|
|
RegScavenger *RS) const override;
|
2014-04-29 15:58:16 +08:00
|
|
|
int getFrameIndexOffset(const MachineFunction &MF, int FI) const override;
|
|
|
|
bool hasFP(const MachineFunction &MF) const override;
|
2011-12-13 05:14:40 +08:00
|
|
|
bool hasTailCall(MachineBasicBlock &MBB) const;
|
2015-04-23 00:43:53 +08:00
|
|
|
void adjustForCalleeSavedRegsSpillCall(MachineFunction &MF) const;
|
|
|
|
bool replacePredRegPseudoSpillCode(MachineFunction &MF) const;
|
|
|
|
|
|
|
|
const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries)
|
|
|
|
const override {
|
|
|
|
static const SpillSlot Offsets[] = {
|
|
|
|
{ Hexagon::R17, -4 }, { Hexagon::R16, -8 }, { Hexagon::D8, -8 },
|
|
|
|
{ Hexagon::R19, -12 }, { Hexagon::R18, -16 }, { Hexagon::D9, -16 },
|
|
|
|
{ Hexagon::R21, -20 }, { Hexagon::R20, -24 }, { Hexagon::D10, -24 },
|
|
|
|
{ Hexagon::R23, -28 }, { Hexagon::R22, -32 }, { Hexagon::D11, -32 },
|
|
|
|
{ Hexagon::R25, -36 }, { Hexagon::R24, -40 }, { Hexagon::D12, -40 },
|
|
|
|
{ Hexagon::R27, -44 }, { Hexagon::R26, -48 }, { Hexagon::D13, -48 }
|
|
|
|
};
|
|
|
|
|
|
|
|
NumEntries = array_lengthof(Offsets);
|
|
|
|
return Offsets;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool assignCalleeSavedSpillSlots(MachineFunction &MF,
|
|
|
|
const TargetRegisterInfo *TRI,
|
|
|
|
std::vector<CalleeSavedInfo> &CSI) const override;
|
|
|
|
|
|
|
|
bool needsAligna(const MachineFunction &MF) const;
|
|
|
|
MachineInstr *getAlignaInstr(MachineFunction &MF) const;
|
2011-12-13 05:14:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|