2011-04-15 21:51:11 +00:00
|
|
|
//===-- MipsMachineFunctionInfo.h - Private data used for Mips ----*- C++ -*-=//
|
2007-07-11 22:44:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-07-11 22:44:21 +00:00
|
|
|
//
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-07-11 22:44:21 +00:00
|
|
|
//
|
|
|
|
// This file declares the Mips specific subclass of MachineFunctionInfo.
|
|
|
|
//
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-07-11 22:44:21 +00:00
|
|
|
|
|
|
|
#ifndef MIPS_MACHINE_FUNCTION_INFO_H
|
|
|
|
#define MIPS_MACHINE_FUNCTION_INFO_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2007-08-28 05:04:41 +00:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2012-03-17 18:46:09 +00:00
|
|
|
#include <utility>
|
2007-07-11 22:44:21 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// MipsFunctionInfo - This class is derived from MachineFunction private
|
|
|
|
/// Mips target-specific information for each MachineFunction.
|
|
|
|
class MipsFunctionInfo : public MachineFunctionInfo {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2007-07-11 22:44:21 +00:00
|
|
|
|
2011-06-21 00:40:49 +00:00
|
|
|
MachineFunction& MF;
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53146 91177308-0d34-0410-b5e6-96231b3b80d8
2008-07-05 19:05:21 +00:00
|
|
|
/// SRetReturnReg - Some subtargets require that sret lowering includes
|
|
|
|
/// returning the value of the returned struct in a register. This field
|
|
|
|
/// holds the virtual register into which the sret argument is passed.
|
|
|
|
unsigned SRetReturnReg;
|
|
|
|
|
2009-06-03 20:30:14 +00:00
|
|
|
/// GlobalBaseReg - keeps track of the virtual register initialized for
|
|
|
|
/// use as the global base register. This is used for PIC in some PIC
|
|
|
|
/// relocation models.
|
|
|
|
unsigned GlobalBaseReg;
|
|
|
|
|
2010-04-17 14:41:14 +00:00
|
|
|
/// VarArgsFrameIndex - FrameIndex for start of varargs area.
|
|
|
|
int VarArgsFrameIndex;
|
|
|
|
|
2011-05-20 01:17:58 +00:00
|
|
|
// Range of frame object indices.
|
|
|
|
// InArgFIRange: Range of indices of all frame objects created during call to
|
|
|
|
// LowerFormalArguments.
|
|
|
|
// OutArgFIRange: Range of indices of all frame objects created during call to
|
2012-02-28 07:46:26 +00:00
|
|
|
// LowerCall except for the frame object for restoring $gp.
|
2011-05-20 01:17:58 +00:00
|
|
|
std::pair<int, int> InArgFIRange, OutArgFIRange;
|
2012-02-28 07:46:26 +00:00
|
|
|
int GPFI; // Index of the frame object for restoring $gp
|
|
|
|
mutable int DynAllocFI; // Frame index of dynamically allocated stack area.
|
2011-05-25 17:52:48 +00:00
|
|
|
unsigned MaxCallFrameSize;
|
2011-05-31 02:54:07 +00:00
|
|
|
|
2012-03-27 19:08:42 +00:00
|
|
|
bool EmitNOAT;
|
|
|
|
|
2007-07-11 22:44:21 +00:00
|
|
|
public:
|
2010-09-28 10:06:53 +00:00
|
|
|
MipsFunctionInfo(MachineFunction& MF)
|
2011-06-21 00:40:49 +00:00
|
|
|
: MF(MF), SRetReturnReg(0), GlobalBaseReg(0),
|
2011-05-20 01:17:58 +00:00
|
|
|
VarArgsFrameIndex(0), InArgFIRange(std::make_pair(-1, 0)),
|
2011-06-21 00:40:49 +00:00
|
|
|
OutArgFIRange(std::make_pair(-1, 0)), GPFI(0), DynAllocFI(0),
|
2012-03-27 19:08:42 +00:00
|
|
|
MaxCallFrameSize(0), EmitNOAT(false)
|
2007-07-11 22:44:21 +00:00
|
|
|
{}
|
|
|
|
|
2011-05-20 01:17:58 +00:00
|
|
|
bool isInArgFI(int FI) const {
|
|
|
|
return FI <= InArgFIRange.first && FI >= InArgFIRange.second;
|
|
|
|
}
|
|
|
|
void setLastInArgFI(int FI) { InArgFIRange.second = FI; }
|
|
|
|
|
2012-02-28 07:46:26 +00:00
|
|
|
bool isOutArgFI(int FI) const {
|
2011-05-20 01:17:58 +00:00
|
|
|
return FI <= OutArgFIRange.first && FI >= OutArgFIRange.second;
|
|
|
|
}
|
|
|
|
void extendOutArgFIRange(int FirstFI, int LastFI) {
|
|
|
|
if (!OutArgFIRange.second)
|
|
|
|
// this must be the first time this function was called.
|
|
|
|
OutArgFIRange.first = FirstFI;
|
|
|
|
OutArgFIRange.second = LastFI;
|
|
|
|
}
|
|
|
|
|
2011-05-23 20:16:59 +00:00
|
|
|
int getGPFI() const { return GPFI; }
|
|
|
|
void setGPFI(int FI) { GPFI = FI; }
|
|
|
|
bool needGPSaveRestore() const { return getGPFI(); }
|
2011-05-20 01:17:58 +00:00
|
|
|
bool isGPFI(int FI) const { return GPFI && GPFI == FI; }
|
2007-10-09 03:01:19 +00:00
|
|
|
|
2011-06-21 00:40:49 +00:00
|
|
|
// The first call to this function creates a frame object for dynamically
|
|
|
|
// allocated stack area.
|
|
|
|
int getDynAllocFI() const {
|
|
|
|
if (!DynAllocFI)
|
|
|
|
DynAllocFI = MF.getFrameInfo()->CreateFixedObject(4, 0, true);
|
|
|
|
|
|
|
|
return DynAllocFI;
|
|
|
|
}
|
|
|
|
bool isDynAllocFI(int FI) const { return DynAllocFI && DynAllocFI == FI; }
|
|
|
|
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53146 91177308-0d34-0410-b5e6-96231b3b80d8
2008-07-05 19:05:21 +00:00
|
|
|
unsigned getSRetReturnReg() const { return SRetReturnReg; }
|
|
|
|
void setSRetReturnReg(unsigned Reg) { SRetReturnReg = Reg; }
|
2009-06-03 20:30:14 +00:00
|
|
|
|
2012-02-24 22:34:47 +00:00
|
|
|
bool globalBaseRegFixed() const;
|
|
|
|
bool globalBaseRegSet() const;
|
|
|
|
unsigned getGlobalBaseReg();
|
2010-04-17 14:41:14 +00:00
|
|
|
|
|
|
|
int getVarArgsFrameIndex() const { return VarArgsFrameIndex; }
|
|
|
|
void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
|
2011-05-20 01:17:58 +00:00
|
|
|
|
2011-05-25 17:52:48 +00:00
|
|
|
unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
|
|
|
|
void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
|
2012-03-27 19:08:42 +00:00
|
|
|
|
|
|
|
bool getEmitNOAT() const { return EmitNOAT; }
|
|
|
|
void setEmitNOAT() { EmitNOAT = true; }
|
2007-07-11 22:44:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end of namespace llvm
|
|
|
|
|
2007-08-28 05:04:41 +00:00
|
|
|
#endif // MIPS_MACHINE_FUNCTION_INFO_H
|