X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=lib%2FTarget%2FXCore%2FXCoreMachineFunctionInfo.h;h=212a5cfecc3019a189d5677b5c3bd0a3e11a26a2;hp=69d5de3e03ad4880149c0e78a6a5edece8f65b77;hb=7d7d99622fa1aa9445f3da1171b79ba2641efbc4;hpb=a1514e24cc24b050f53a12650e047799358833a1 diff --git a/lib/Target/XCore/XCoreMachineFunctionInfo.h b/lib/Target/XCore/XCoreMachineFunctionInfo.h index 69d5de3e03a..212a5cfecc3 100644 --- a/lib/Target/XCore/XCoreMachineFunctionInfo.h +++ b/lib/Target/XCore/XCoreMachineFunctionInfo.h @@ -27,40 +27,77 @@ class Function; /// XCore target-specific information for each MachineFunction. class XCoreFunctionInfo : public MachineFunctionInfo { virtual void anchor(); - bool UsesLR; + bool LRSpillSlotSet; int LRSpillSlot; + bool FPSpillSlotSet; int FPSpillSlot; + bool EHSpillSlotSet; + int EHSpillSlot[2]; + unsigned ReturnStackOffset; + bool ReturnStackOffsetSet; int VarArgsFrameIndex; - std::vector > SpillLabels; + mutable int CachedEStackSize; + std::vector> + SpillLabels; public: XCoreFunctionInfo() : - UsesLR(false), - LRSpillSlot(0), - FPSpillSlot(0), - VarArgsFrameIndex(0) {} + LRSpillSlotSet(false), + FPSpillSlotSet(false), + EHSpillSlotSet(false), + ReturnStackOffsetSet(false), + VarArgsFrameIndex(0), + CachedEStackSize(-1) {} explicit XCoreFunctionInfo(MachineFunction &MF) : - UsesLR(false), - LRSpillSlot(0), - FPSpillSlot(0), - VarArgsFrameIndex(0) {} + LRSpillSlotSet(false), + FPSpillSlotSet(false), + EHSpillSlotSet(false), + ReturnStackOffsetSet(false), + VarArgsFrameIndex(0), + CachedEStackSize(-1) {} ~XCoreFunctionInfo() {} void setVarArgsFrameIndex(int off) { VarArgsFrameIndex = off; } int getVarArgsFrameIndex() const { return VarArgsFrameIndex; } - - void setUsesLR(bool val) { UsesLR = val; } - bool getUsesLR() const { return UsesLR; } - - void setLRSpillSlot(int off) { LRSpillSlot = off; } - int getLRSpillSlot() const { return LRSpillSlot; } - - void setFPSpillSlot(int off) { FPSpillSlot = off; } - int getFPSpillSlot() const { return FPSpillSlot; } - - std::vector > &getSpillLabels() { + + int createLRSpillSlot(MachineFunction &MF); + bool hasLRSpillSlot() { return LRSpillSlotSet; } + int getLRSpillSlot() const { + assert(LRSpillSlotSet && "LR Spill slot not set"); + return LRSpillSlot; + } + + int createFPSpillSlot(MachineFunction &MF); + bool hasFPSpillSlot() { return FPSpillSlotSet; } + int getFPSpillSlot() const { + assert(FPSpillSlotSet && "FP Spill slot not set"); + return FPSpillSlot; + } + + const int* createEHSpillSlot(MachineFunction &MF); + bool hasEHSpillSlot() { return EHSpillSlotSet; } + const int* getEHSpillSlot() const { + assert(EHSpillSlotSet && "EH Spill slot not set"); + return EHSpillSlot; + } + + void setReturnStackOffset(unsigned value) { + assert(!ReturnStackOffsetSet && "Return stack offset set twice"); + ReturnStackOffset = value; + ReturnStackOffsetSet = true; + } + + unsigned getReturnStackOffset() const { + assert(ReturnStackOffsetSet && "Return stack offset not set"); + return ReturnStackOffset; + } + + bool isLargeFrame(const MachineFunction &MF) const; + + std::vector> & + getSpillLabels() { return SpillLabels; } };