2006-06-06 23:30:24 +00:00
|
|
|
//====- X86MachineFuctionInfo.h - X86 machine function info -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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.
|
2006-06-06 23:30:24 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares X86-specific per-machine-function information.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86MACHINEFUNCTIONINFO_H
|
|
|
|
#define X86MACHINEFUNCTIONINFO_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2006-09-20 22:03:51 +00:00
|
|
|
enum NameDecorationStyle {
|
|
|
|
None,
|
|
|
|
StdCall,
|
|
|
|
FastCall
|
|
|
|
};
|
|
|
|
|
2007-04-17 17:21:52 +00:00
|
|
|
/// X86MachineFunctionInfo - This class is derived from MachineFunction private
|
2006-06-09 06:25:10 +00:00
|
|
|
/// X86 target-specific information for each MachineFunction.
|
2007-04-17 17:21:52 +00:00
|
|
|
class X86MachineFunctionInfo : public MachineFunctionInfo {
|
2006-09-20 22:03:51 +00:00
|
|
|
/// ForceFramePointer - True if the function is required to use of frame
|
|
|
|
/// pointer for reasons other than it containing dynamic allocation or
|
|
|
|
/// that FP eliminatation is turned off. For example, Cygwin main function
|
|
|
|
/// contains stack pointer re-alignment code which requires FP.
|
2006-06-09 06:25:10 +00:00
|
|
|
bool ForceFramePointer;
|
2006-09-20 22:03:51 +00:00
|
|
|
|
2007-07-17 07:59:08 +00:00
|
|
|
/// CalleeSavedFrameSize - Size of the callee-saved register portion of the
|
|
|
|
/// stack frame in bytes.
|
|
|
|
unsigned CalleeSavedFrameSize;
|
|
|
|
|
2008-01-05 00:41:47 +00:00
|
|
|
/// BytesToPopOnReturn - Number of bytes function pops on return.
|
2006-09-20 22:03:51 +00:00
|
|
|
/// Used on windows platform for stdcall & fastcall name decoration
|
|
|
|
unsigned BytesToPopOnReturn;
|
|
|
|
|
2008-01-05 00:41:47 +00:00
|
|
|
/// DecorationStyle - If the function requires additional name decoration,
|
|
|
|
/// DecorationStyle holds the right way to do so.
|
2006-09-20 22:03:51 +00:00
|
|
|
NameDecorationStyle DecorationStyle;
|
2007-08-15 17:12:32 +00:00
|
|
|
|
2008-01-05 00:41:47 +00:00
|
|
|
/// ReturnAddrIndex - FrameIndex for return slot.
|
2007-08-15 17:12:32 +00:00
|
|
|
int ReturnAddrIndex;
|
2007-10-11 19:40:01 +00:00
|
|
|
|
2008-01-05 00:41:47 +00:00
|
|
|
/// TailCallReturnAddrDelta - Delta the ReturnAddr stack slot is moved
|
|
|
|
/// Used for creating an area before the register spill area on the stack
|
|
|
|
/// the returnaddr can be savely move to this area
|
2007-10-11 19:40:01 +00:00
|
|
|
int TailCallReturnAddrDelta;
|
|
|
|
|
2008-04-21 23:59:07 +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;
|
|
|
|
|
2006-06-06 23:30:24 +00:00
|
|
|
public:
|
2007-04-17 17:21:52 +00:00
|
|
|
X86MachineFunctionInfo() : ForceFramePointer(false),
|
2007-07-17 07:59:08 +00:00
|
|
|
CalleeSavedFrameSize(0),
|
2007-04-17 17:21:52 +00:00
|
|
|
BytesToPopOnReturn(0),
|
2007-08-15 17:12:32 +00:00
|
|
|
DecorationStyle(None),
|
2007-10-11 19:40:01 +00:00
|
|
|
ReturnAddrIndex(0),
|
2008-04-21 23:59:07 +00:00
|
|
|
TailCallReturnAddrDelta(0),
|
|
|
|
SRetReturnReg(0) {}
|
2006-09-20 22:03:51 +00:00
|
|
|
|
2007-04-17 17:21:52 +00:00
|
|
|
X86MachineFunctionInfo(MachineFunction &MF) : ForceFramePointer(false),
|
2007-07-17 07:59:08 +00:00
|
|
|
CalleeSavedFrameSize(0),
|
2007-04-17 17:21:52 +00:00
|
|
|
BytesToPopOnReturn(0),
|
2007-08-15 17:12:32 +00:00
|
|
|
DecorationStyle(None),
|
2007-10-11 19:40:01 +00:00
|
|
|
ReturnAddrIndex(0),
|
2008-04-21 23:59:07 +00:00
|
|
|
TailCallReturnAddrDelta(0),
|
|
|
|
SRetReturnReg(0) {}
|
2006-09-20 22:03:51 +00:00
|
|
|
|
2006-06-06 23:30:24 +00:00
|
|
|
bool getForceFramePointer() const { return ForceFramePointer;}
|
|
|
|
void setForceFramePointer(bool forceFP) { ForceFramePointer = forceFP; }
|
2006-09-20 22:03:51 +00:00
|
|
|
|
2007-07-17 07:59:08 +00:00
|
|
|
unsigned getCalleeSavedFrameSize() const { return CalleeSavedFrameSize; }
|
|
|
|
void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; }
|
|
|
|
|
2006-09-20 22:03:51 +00:00
|
|
|
unsigned getBytesToPopOnReturn() const { return BytesToPopOnReturn; }
|
|
|
|
void setBytesToPopOnReturn (unsigned bytes) { BytesToPopOnReturn = bytes;}
|
|
|
|
|
|
|
|
NameDecorationStyle getDecorationStyle() const { return DecorationStyle; }
|
|
|
|
void setDecorationStyle(NameDecorationStyle style) { DecorationStyle = style;}
|
2007-08-15 17:12:32 +00:00
|
|
|
|
|
|
|
int getRAIndex() const { return ReturnAddrIndex; }
|
|
|
|
void setRAIndex(int Index) { ReturnAddrIndex = Index; }
|
2007-10-11 19:40:01 +00:00
|
|
|
|
|
|
|
int getTCReturnAddrDelta() const { return TailCallReturnAddrDelta; }
|
|
|
|
void setTCReturnAddrDelta(int delta) {TailCallReturnAddrDelta = delta;}
|
2008-04-21 23:59:07 +00:00
|
|
|
|
|
|
|
unsigned getSRetReturnReg() const { return SRetReturnReg; }
|
|
|
|
void setSRetReturnReg(unsigned Reg) { SRetReturnReg = Reg; }
|
2006-06-06 23:30:24 +00:00
|
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|