An stdcall function calling a non-stdcall function
authorDale Johannesen <dalej@apple.com>
Mon, 25 Oct 2010 22:17:05 +0000 (22:17 +0000)
committerDale Johannesen <dalej@apple.com>
Mon, 25 Oct 2010 22:17:05 +0000 (22:17 +0000)
cannot use tailcall.  PR 8461.

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

lib/Target/X86/X86ISelLowering.cpp
test/CodeGen/X86/stdcall-notailcall.ll [new file with mode: 0644]

index ca812c84bd6ed0ac132f2fd087e32a849a0f1ace..f698ceceac52f3ea6bdf1da47887e29863fdc860 100644 (file)
@@ -2532,6 +2532,11 @@ X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
     }
   }
 
+  // An stdcall caller is expected to clean up its arguments; the callee
+  // isn't going to do that.   PR 8461.
+  if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
+    return false;
+
   return true;
 }
 
diff --git a/test/CodeGen/X86/stdcall-notailcall.ll b/test/CodeGen/X86/stdcall-notailcall.ll
new file mode 100644 (file)
index 0000000..8e33c30
--- /dev/null
@@ -0,0 +1,13 @@
+; RUN: llc -mtriple=i386-apple-darwin11 -O2 < %s | FileCheck %s
+
+%struct.I = type { i32 (...)** }
+define x86_stdcallcc void @bar(%struct.I* nocapture %this) ssp align 2 {
+; CHECK: bar:
+; CHECK-NOT: jmp
+; CHECK: ret $4
+entry:
+  tail call void @foo()
+  ret void
+}
+
+declare void @foo()