[llvm] r218163 - Converting SpillPlacement's BlockFrequency threshold to a ManagedStatic to avoid static constructors and destructors.

Chris Bieneman beanz at apple.com
Fri Sep 19 15:46:28 PDT 2014


Author: cbieneman
Date: Fri Sep 19 17:46:28 2014
New Revision: 218163

URL: http://llvm.org/viewvc/llvm-project?rev=218163&view=rev
Log:
Converting SpillPlacement's BlockFrequency threshold to a ManagedStatic to avoid static constructors and destructors.

Modified:
    llvm/trunk/lib/CodeGen/SpillPlacement.cpp

Modified: llvm/trunk/lib/CodeGen/SpillPlacement.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SpillPlacement.cpp?rev=218163&r1=218162&r2=218163&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SpillPlacement.cpp (original)
+++ llvm/trunk/lib/CodeGen/SpillPlacement.cpp Fri Sep 19 17:46:28 2014
@@ -37,6 +37,7 @@
 #include "llvm/CodeGen/Passes.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/Format.h"
+#include "llvm/Support/ManagedStatic.h"
 
 using namespace llvm;
 
@@ -61,12 +62,12 @@ void SpillPlacement::getAnalysisUsage(An
 }
 
 namespace {
-static BlockFrequency Threshold;
+static ManagedStatic<BlockFrequency> Threshold;
 }
 
 /// Decision threshold. A node gets the output value 0 if the weighted sum of
 /// its inputs falls in the open interval (-Threshold;Threshold).
-static BlockFrequency getThreshold() { return Threshold; }
+static BlockFrequency getThreshold() { return *Threshold; }
 
 /// \brief Set the threshold for a given entry frequency.
 ///
@@ -78,7 +79,7 @@ static void setThreshold(const BlockFreq
   // it.  Divide by 2^13, rounding as appropriate.
   uint64_t Freq = Entry.getFrequency();
   uint64_t Scaled = (Freq >> 13) + bool(Freq & (1 << 12));
-  Threshold = std::max(UINT64_C(1), Scaled);
+  *Threshold = std::max(UINT64_C(1), Scaled);
 }
 
 /// Node - Each edge bundle corresponds to a Hopfield node.





More information about the llvm-commits mailing list