[PATCH] D45209: [LoopInterchange] Add stats counter for number of interchanged loops.

Florian Hahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 5 03:44:22 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL329269: [LoopInterchange] Add stats counter for number of interchanged loops. (authored by fhahn, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D45209?vs=141118&id=141123#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D45209

Files:
  llvm/trunk/lib/Transforms/Scalar/LoopInterchange.cpp
  llvm/trunk/test/Transforms/LoopInterchange/call-instructions.ll


Index: llvm/trunk/lib/Transforms/Scalar/LoopInterchange.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopInterchange.cpp
+++ llvm/trunk/lib/Transforms/Scalar/LoopInterchange.cpp
@@ -15,6 +15,7 @@
 
 #include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/SmallVector.h"
+#include "llvm/ADT/Statistic.h"
 #include "llvm/ADT/StringRef.h"
 #include "llvm/Analysis/AliasAnalysis.h"
 #include "llvm/Analysis/DependenceAnalysis.h"
@@ -51,6 +52,8 @@
 
 #define DEBUG_TYPE "loop-interchange"
 
+STATISTIC(LoopsInterchanged, "Number of loops interchanged");
+
 static cl::opt<int> LoopInterchangeCostThreshold(
     "loop-interchange-threshold", cl::init(0), cl::Hidden,
     cl::desc("Interchange if you gain more than this number"));
@@ -616,6 +619,7 @@
                                  LoopNestExit, LIL.hasInnerLoopReduction());
     LIT.transform();
     DEBUG(dbgs() << "Loops interchanged.\n");
+    LoopsInterchanged++;
     return true;
   }
 };
Index: llvm/trunk/test/Transforms/LoopInterchange/call-instructions.ll
===================================================================
--- llvm/trunk/test/Transforms/LoopInterchange/call-instructions.ll
+++ llvm/trunk/test/Transforms/LoopInterchange/call-instructions.ll
@@ -1,4 +1,5 @@
-; RUN: opt < %s -basicaa -loop-interchange -pass-remarks-missed='loop-interchange' -pass-remarks-output=%t -verify-loop-info -verify-dom-info
+; RUN: opt < %s -basicaa -loop-interchange -pass-remarks-missed='loop-interchange' -pass-remarks-output=%t -S \
+; RUN:     -stats 2>&1 | FileCheck -check-prefix=STATS %s
 ; RUN: FileCheck --input-file=%t %s
 
 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
@@ -113,3 +114,6 @@
 exit:
   ret void
 }
+
+; Check stats, we interchanged 1 out of 2 loops.
+; STATS: 1 loop-interchange - Number of loops interchanged


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45209.141123.patch
Type: text/x-patch
Size: 1867 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180405/bf320566/attachment-0001.bin>


More information about the llvm-commits mailing list