Temporarily revert r104655 as it's breaking the bots.
authorEric Christopher <echristo@apple.com>
Wed, 26 May 2010 01:59:55 +0000 (01:59 +0000)
committerEric Christopher <echristo@apple.com>
Wed, 26 May 2010 01:59:55 +0000 (01:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104664 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineFunction.h
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
lib/CodeGen/StackSlotColoring.cpp

index ec25bc13199ba474344d48afaa3dd9b4b2dcc2db..595872ad2d742b84807c415a4adb6ec578a14e69 100644 (file)
@@ -114,13 +114,9 @@ class MachineFunction {
   ///
   unsigned FunctionNumber;
   
-  /// Alignment - The alignment of the function.
+  /// The alignment of the function.
   unsigned Alignment;
 
-  /// HasReturnsTwiceCall - Returns true if there's a call with a
-  /// "returns_twice" attribute, like setjmp.
-  bool HasReturnsTwiceCall;
-
   MachineFunction(const MachineFunction &); // DO NOT IMPLEMENT
   void operator=(const MachineFunction&);   // DO NOT IMPLEMENT
 public:
@@ -185,15 +181,6 @@ public:
   void EnsureAlignment(unsigned A) {
     if (Alignment < A) Alignment = A;
   }
-
-  /// hasReturnsTwiceCall - Returns true if there's a call with a
-  /// "returns_twice" attribute, like setjmp.
-  bool hasReturnsTwiceCall() const {
-    return HasReturnsTwiceCall;
-  }
-  void setReturnsTwiceCall(bool B) {
-    HasReturnsTwiceCall = B;
-  }
   
   /// getInfo - Keep track of various per-function pieces of information for
   /// backends that would like to do so.
index 7e40cb9c6402c7df7a378dfcb66d213c0709ccbe..6d789a674cf6b6ffd4b0374c4548fbbf149c40e2 100644 (file)
@@ -25,7 +25,6 @@
 #include "llvm/Intrinsics.h"
 #include "llvm/IntrinsicInst.h"
 #include "llvm/LLVMContext.h"
-#include "llvm/Module.h"
 #include "llvm/CodeGen/FastISel.h"
 #include "llvm/CodeGen/GCStrategy.h"
 #include "llvm/CodeGen/GCMetadata.h"
@@ -254,39 +253,6 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
   done:;
   }
 
-  // Set a flag indicating if the machine function makes a call to setjmp /
-  // sigsetjmp (i.e., a function marked "returns_twice"). We'll use this to
-  // disable certain optimizations which cannot handle such control flows.
-  // 
-  // FIXME: This goes beyond the setjmp/sigsetjmp functions. We should check for
-  // the GCC "returns twice" attribute.
-  const Module *M = Fn.getParent();
-  const Function *SetJmp = M->getFunction("setjmp");
-  const Function *SigSetJmp = M->getFunction("sigsetjmp");
-  bool HasReturnsTwiceCall = false;
-
-  if (SetJmp || SigSetJmp) {
-    if (SetJmp && !SetJmp->use_empty())
-      for (Value::const_use_iterator
-             I = SetJmp->use_begin(), E = SetJmp->use_end(); I != E; ++I)
-        if (const CallInst *CI = dyn_cast<CallInst>(I))
-          if (CI->getParent()->getParent() == &Fn) {
-            HasReturnsTwiceCall = true;
-            break;
-          }
-
-    if (!HasReturnsTwiceCall && SigSetJmp && !SigSetJmp->use_empty())
-      for (Value::const_use_iterator
-             I = SigSetJmp->use_begin(), E = SigSetJmp->use_end(); I != E; ++I)
-        if (const CallInst *CI = dyn_cast<CallInst>(I))
-          if (CI->getParent()->getParent() == &Fn) {
-            HasReturnsTwiceCall = true;
-            break;
-          }
-
-    mf.setReturnsTwiceCall(HasReturnsTwiceCall);
-  }
-
   // Release function-specific state. SDB and CurDAG are already cleared
   // at this point.
   FuncInfo->clear();
index 354878aa4260421f683d0452c599fd28b29d763c..8043556349808b18b78c801d88d1488b6548f3db 100644 (file)
@@ -118,6 +118,7 @@ namespace {
 
   private:
     void InitializeSlots();
+    bool CheckForSetJmpCall(const MachineFunction &MF) const;
     void ScanForSpillSlotRefs(MachineFunction &MF);
     bool OverlapWithAssignments(LiveInterval *li, int Color) const;
     int ColorSlot(LiveInterval *li);
@@ -161,6 +162,34 @@ namespace {
   };
 }
 
+/// CheckForSetJmpCall - Return true if there's a call to setjmp/sigsetjmp in
+/// this function.
+bool StackSlotColoring::CheckForSetJmpCall(const MachineFunction &MF) const {
+  const Function *F = MF.getFunction();
+  const Module *M = F->getParent();
+  const Function *SetJmp = M->getFunction("setjmp");
+  const Function *SigSetJmp = M->getFunction("sigsetjmp");
+
+  if (!SetJmp && !SigSetJmp)
+    return false;
+
+  if (SetJmp && !SetJmp->use_empty())
+    for (Value::const_use_iterator
+           I = SetJmp->use_begin(), E = SetJmp->use_end(); I != E; ++I)
+      if (const CallInst *CI = dyn_cast<CallInst>(I))
+        if (CI->getParent()->getParent() == F)
+          return true;
+
+  if (SigSetJmp && !SigSetJmp->use_empty())
+    for (Value::const_use_iterator
+           I = SigSetJmp->use_begin(), E = SigSetJmp->use_end(); I != E; ++I)
+      if (const CallInst *CI = dyn_cast<CallInst>(I))
+        if (CI->getParent()->getParent() == F)
+          return true;
+
+  return false;
+}
+
 /// ScanForSpillSlotRefs - Scan all the machine instructions for spill slot
 /// references and update spill slot weights.
 void StackSlotColoring::ScanForSpillSlotRefs(MachineFunction &MF) {
@@ -724,11 +753,14 @@ bool StackSlotColoring::runOnMachineFunction(MachineFunction &MF) {
       return false;
   }
 
-  // If there is a call to a function with the attribute "returns_twice" (like
-  // setjmp or sigsetjmp), don't perform stack slot coloring. The stack could be
-  // modified before the the second return, resulting in the wrong value being
-  // used afterwards. (See <rdar://problem/8007500>.)
-  if (MF.hasReturnsTwiceCall())
+  // If there are calls to setjmp or sigsetjmp, don't perform stack slot
+  // coloring. The stack could be modified before the longjmp is executed,
+  // resulting in the wrong value being used afterwards. (See
+  // <rdar://problem/8007500>.)
+  //
+  // FIXME: This goes beyond the setjmp/sigsetjmp functions. Ideally, we should
+  // check for the GCC "returns twice" attribute.
+  if (CheckForSetJmpCall(MF))
     return false;
 
   // Gather spill slot references