Revamp supported ops. Instead of just being supported or not, we now keep
[oota-llvm.git] / lib / Target / TargetFrameInfo.cpp
index d9f8a575e28722fe42438050c03c7389fd07fabe..7a695c8594752d768587a88899134198f10a0f56 100644 (file)
@@ -21,12 +21,6 @@ using namespace llvm;
 // are Sparc specific.
 //===--------------------------------------------------------------------===//
 
-int TargetFrameInfo::getStackFrameSizeAlignment() const { abort(); }
-int TargetFrameInfo::getMinStackFrameSize() const { abort(); }
-int TargetFrameInfo::getNumFixedOutgoingArgs() const { abort(); }
-int TargetFrameInfo::getSizeOfEachArgOnStack() const { abort(); }
-bool TargetFrameInfo::argsOnStackHaveFixedSize() const { abort(); }
-
 // This method adjusts a stack offset to meet alignment rules of target.
 int 
 TargetFrameInfo::adjustAlignment(int unalignedOffset, bool growUp,
@@ -45,18 +39,6 @@ int
 TargetFrameInfo::getOutgoingArgOffset(MachineFunction& mcInfo,
                                       unsigned argNum) const { abort(); }
 
-int
-TargetFrameInfo::getFirstIncomingArgOffset(MachineFunction& mcInfo,
-                                           bool& growUp) const { abort(); }
-
-int
-TargetFrameInfo::getFirstOutgoingArgOffset(MachineFunction& mcInfo,
-                                           bool& growUp) const { abort(); }
-
-int
-TargetFrameInfo::getFirstOptionalOutgoingArgOffset(MachineFunction&,
-                                                bool& growUp) const { abort(); }
-
 int
 TargetFrameInfo::getFirstAutomaticVarOffset(MachineFunction& mcInfo,
                                             bool& growUp) const { abort(); }
@@ -73,14 +55,3 @@ int
 TargetFrameInfo::getDynamicAreaOffset(MachineFunction& mcInfo, bool& growUp)
   const { abort(); }
 
-//
-// These methods specify the base register used for each stack area
-// (generally FP or SP)
-// 
-int TargetFrameInfo::getIncomingArgBaseRegNum() const { abort(); }
-int TargetFrameInfo::getOutgoingArgBaseRegNum() const { abort(); }
-int TargetFrameInfo::getOptionalOutgoingArgBaseRegNum() const {abort();}
-int TargetFrameInfo::getAutomaticVarBaseRegNum() const { abort(); }
-int TargetFrameInfo::getRegSpillAreaBaseRegNum() const { abort(); }
-int TargetFrameInfo::getDynamicAreaBaseRegNum()  const { abort(); }
-