2012-07-31 23:41:32 +00:00
|
|
|
//===-- Mips16RegisterInfo.h - Mips16 Register Information ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the Mips16 implementation of the TargetRegisterInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef MIPS16REGISTERINFO_H
|
|
|
|
#define MIPS16REGISTERINFO_H
|
|
|
|
|
|
|
|
#include "MipsRegisterInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2012-08-22 23:58:53 +00:00
|
|
|
class Mips16InstrInfo;
|
2012-07-31 23:41:32 +00:00
|
|
|
|
|
|
|
class Mips16RegisterInfo : public MipsRegisterInfo {
|
2012-10-31 05:21:10 +00:00
|
|
|
const Mips16InstrInfo &TII;
|
2012-07-31 23:41:32 +00:00
|
|
|
public:
|
2013-01-04 19:38:05 +00:00
|
|
|
Mips16RegisterInfo(const MipsSubtarget &Subtarget,
|
|
|
|
const Mips16InstrInfo &TII);
|
2012-07-31 23:41:32 +00:00
|
|
|
|
2012-12-20 04:44:58 +00:00
|
|
|
bool requiresRegisterScavenging(const MachineFunction &MF) const;
|
|
|
|
|
|
|
|
bool requiresFrameIndexScavenging(const MachineFunction &MF) const;
|
|
|
|
|
|
|
|
bool useFPForScavengingIndex(const MachineFunction &MF) const;
|
|
|
|
|
|
|
|
bool saveScavengerRegister(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I,
|
|
|
|
MachineBasicBlock::iterator &UseMI,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
unsigned Reg) const;
|
|
|
|
|
2012-07-31 23:41:32 +00:00
|
|
|
private:
|
|
|
|
virtual void eliminateFI(MachineBasicBlock::iterator II, unsigned OpNo,
|
|
|
|
int FrameIndex, uint64_t StackSize,
|
|
|
|
int64_t SPOffset) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|