diff options
author | Tom Stellard <[email protected]> | 2012-07-30 15:57:50 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-07-30 21:10:14 +0000 |
commit | 2f921101c0826dc52a2c69f85c3da0f7f6e8212a (patch) | |
tree | b0e58be6d20eee06df83a94571e149d73a401c15 /src/gallium/drivers/radeon/AMDILFrameLowering.cpp | |
parent | b72ab79d73b29ec087d90cf2c698adbab4db5def (diff) |
radeon/llvm: Rename all AMDIL* classes to AMDGPU*
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILFrameLowering.cpp')
-rw-r--r-- | src/gallium/drivers/radeon/AMDILFrameLowering.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gallium/drivers/radeon/AMDILFrameLowering.cpp b/src/gallium/drivers/radeon/AMDILFrameLowering.cpp index 87eca87e301..f2a0fe5a39c 100644 --- a/src/gallium/drivers/radeon/AMDILFrameLowering.cpp +++ b/src/gallium/drivers/radeon/AMDILFrameLowering.cpp @@ -14,40 +14,40 @@ #include "llvm/CodeGen/MachineFrameInfo.h" using namespace llvm; -AMDILFrameLowering::AMDILFrameLowering(StackDirection D, unsigned StackAl, +AMDGPUFrameLowering::AMDGPUFrameLowering(StackDirection D, unsigned StackAl, int LAO, unsigned TransAl) : TargetFrameLowering(D, StackAl, LAO, TransAl) { } -AMDILFrameLowering::~AMDILFrameLowering() +AMDGPUFrameLowering::~AMDGPUFrameLowering() { } /// getFrameIndexOffset - Returns the displacement from the frame register to /// the stack frame of the specified index. -int AMDILFrameLowering::getFrameIndexOffset(const MachineFunction &MF, +int AMDGPUFrameLowering::getFrameIndexOffset(const MachineFunction &MF, int FI) const { const MachineFrameInfo *MFI = MF.getFrameInfo(); return MFI->getObjectOffset(FI); } const TargetFrameLowering::SpillSlot * -AMDILFrameLowering::getCalleeSavedSpillSlots(unsigned &NumEntries) const +AMDGPUFrameLowering::getCalleeSavedSpillSlots(unsigned &NumEntries) const { NumEntries = 0; return 0; } void -AMDILFrameLowering::emitPrologue(MachineFunction &MF) const +AMDGPUFrameLowering::emitPrologue(MachineFunction &MF) const { } void -AMDILFrameLowering::emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const +AMDGPUFrameLowering::emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const { } bool -AMDILFrameLowering::hasFP(const MachineFunction &MF) const +AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const { return false; } |