]> granicus.if.org Git - llvm/commitdiff
[GVNHoist] Sink HoistedCtr into GVNHoist
authorDavid Majnemer <david.majnemer@gmail.com>
Mon, 18 Jul 2016 00:35:01 +0000 (00:35 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Mon, 18 Jul 2016 00:35:01 +0000 (00:35 +0000)
HoistedCtr cannot be a mutated global variable, that will open us up to
races between threads compiling code in parallel.

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

lib/Transforms/Scalar/GVNHoist.cpp

index 16fc4850715f49f3c310e2709214b7fd94b3d084..57f27731e1c8917e8937e9937902e73ab2277075 100644 (file)
@@ -47,8 +47,6 @@ static cl::opt<int> MaxNumberOfBBSInPath(
     cl::desc("Max number of basic blocks on the path between "
              "hoisting locations (default = 4, unlimited = -1)"));
 
-static int HoistedCtr = 0;
-
 namespace {
 
 // Provides a sorting function based on the execution order of two instructions.
@@ -183,11 +181,13 @@ public:
   DenseMap<const BasicBlock *, unsigned> DFSNumber;
   BBSideEffectsSet BBSideEffects;
   MemorySSA *MSSA;
+  int HoistedCtr;
+
   enum InsKind { Unknown, Scalar, Load, Store };
 
   GVNHoist(DominatorTree *Dt, AliasAnalysis *Aa, MemoryDependenceResults *Md,
            bool OptForMinSize)
-      : DT(Dt), AA(Aa), MD(Md), OptForMinSize(OptForMinSize) {}
+      : DT(Dt), AA(Aa), MD(Md), OptForMinSize(OptForMinSize), HoistedCtr(0) {}
 
   // Return true when there are exception handling in BB.
   bool hasEH(const BasicBlock *BB) {