[Sparc] Implements hasReservedCallFrame and hasFP.
authorVenkatraman Govindaraju <venkatra@cs.wisc.edu>
Fri, 17 May 2013 15:14:34 +0000 (15:14 +0000)
committerVenkatraman Govindaraju <venkatra@cs.wisc.edu>
Fri, 17 May 2013 15:14:34 +0000 (15:14 +0000)
 This is to generate correct framesetup code when the function
 has variable sized allocas.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182108 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Sparc/SparcFrameLowering.cpp
lib/Target/Sparc/SparcFrameLowering.h
test/CodeGen/SPARC/2013-05-17-CallFrame.ll [new file with mode: 0644]

index 7874240f5983e7c5a0c03741360e45e17713bb7f..afa8411802d3da3ec941a84bb39aecaa6e860c67 100644 (file)
@@ -106,3 +106,18 @@ void SparcFrameLowering::emitEpilogue(MachineFunction &MF,
   BuildMI(MBB, MBBI, dl, TII.get(SP::RESTORErr), SP::G0).addReg(SP::G0)
     .addReg(SP::G0);
 }
+
+bool SparcFrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
+  //Reserve call frame if there are no variable sized objects on the stack
+  return !MF.getFrameInfo()->hasVarSizedObjects();
+}
+
+// hasFP - Return true if the specified function should have a dedicated frame
+// pointer register.  This is true if the function has variable sized allocas or
+// if frame pointer elimination is disabled.
+bool SparcFrameLowering::hasFP(const MachineFunction &MF) const {
+  const MachineFrameInfo *MFI = MF.getFrameInfo();
+  return MF.getTarget().Options.DisableFramePointerElim(MF) ||
+    MFI->hasVarSizedObjects() || MFI->isFrameAddressTaken();
+}
+
index c375662016131ffee12f42833979f3df3c382ebb..4a3cef703ff4acf2a1401a563334ad1447eb0443 100644 (file)
@@ -38,7 +38,8 @@ public:
                                      MachineBasicBlock &MBB,
                                      MachineBasicBlock::iterator I) const;
 
-  bool hasFP(const MachineFunction &MF) const { return false; }
+  bool hasReservedCallFrame(const MachineFunction &MF) const;
+  bool hasFP(const MachineFunction &MF) const;
 };
 
 } // End llvm namespace
diff --git a/test/CodeGen/SPARC/2013-05-17-CallFrame.ll b/test/CodeGen/SPARC/2013-05-17-CallFrame.ll
new file mode 100644 (file)
index 0000000..9e9e821
--- /dev/null
@@ -0,0 +1,16 @@
+; RUN: llc -march=sparc < %s | FileCheck %s
+
+; CHECK: variable_alloca_with_adj_call_stack
+; CHECK: save %sp, -96, %sp
+; CHECK: add %sp, -16, %sp
+; CHECK: call foo
+; CHECK: add %sp, 16, %sp
+define void @variable_alloca_with_adj_call_stack(i32 %num) {
+entry:
+  %0 = alloca i8, i32 %num, align 8
+  call void @foo(i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0)
+  ret void
+}
+
+
+declare void @foo(i8* , i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*);