<div dir="ltr">DominatorTree has a method 'verifyDomTree`, which can be called by transformations that change dominator trees (in particular LoopUnroll). These calls occur always when expensive checks are enabled. If we don't want to call to call this expensive check always, we need some way to call it conditionally depending on some command line option. The option `-verify-dom-info` does this job but it can be used only in one source file, because corresponding flag is a static variable. By making the flag a global variable we can put the domtree checks into any file. Otherwise each transformation had to introduce its own option as in <a href="https://github.com/llvm-mirror/llvm/blob/master/lib/Transforms/Utils/LoopUnroll.cpp#L54:L56">https://github.com/llvm-mirror/llvm/blob/master/lib/Transforms/Utils/LoopUnroll.cpp#L54:L56</a> .</div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature">Thanks,<br>--Serge<br></div></div>
<br><div class="gmail_quote">2017-01-25 1:01 GMT+07:00 Philip Reames <span dir="ltr"><<a href="mailto:listmail@philipreames.com" target="_blank">listmail@philipreames.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Sorry, I'm confused by this change.  Doesn't the DominatorTree have an verifyAnalysis method which is invoked by the pass manager?  Why does any other pass need to directly interact with these variables?<span class="HOEnZb"><font color="#888888"><br>
<br>
Philip</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
<br>
On 01/23/2017 09:52 PM, Serge Pavlov via llvm-commits wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Author: sepavloff<br>
Date: Mon Jan 23 23:52:07 2017<br>
New Revision: 292889<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=292889&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-pr<wbr>oject?rev=292889&view=rev</a><br>
Log:<br>
Make VerifyDomInfo and VerifyLoopInfo global variables<br>
<br>
Verifications of dominator tree and loop info are expensive operations<br>
so they are disabled by default. They can be enabled by command line<br>
options -verify-dom-info and -verify-loop-info. These options however<br>
enable checks only in files Dominators.cpp and LoopInfo.cpp. If some<br>
transformation changes dominaror tree and/or loop info, it would be<br>
convenient to place similar checks to the files implementing the<br>
transformation.<br>
<br>
This change makes corresponding flags global, so they can be used in<br>
any file to optionally turn verification on.<br>
<br>
Modified:<br>
     llvm/trunk/include/llvm/Suppo<wbr>rt/Debug.h<br>
     llvm/trunk/lib/Analysis/LoopI<wbr>nfo.cpp<br>
     llvm/trunk/lib/IR/Dominators.<wbr>cpp<br>
<br>
Modified: llvm/trunk/include/llvm/Suppor<wbr>t/Debug.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Debug.h?rev=292889&r1=292888&r2=292889&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-pr<wbr>oject/llvm/trunk/include/llvm/<wbr>Support/Debug.h?rev=292889&r1=<wbr>292888&r2=292889&view=diff</a><br>
==============================<wbr>==============================<wbr>==================<br>
--- llvm/trunk/include/llvm/Suppor<wbr>t/Debug.h (original)<br>
+++ llvm/trunk/include/llvm/Suppor<wbr>t/Debug.h Mon Jan 23 23:52:07 2017<br>
@@ -33,11 +33,6 @@ namespace llvm {<br>
  class raw_ostream;<br>
    #ifndef NDEBUG<br>
-/// DebugFlag - This boolean is set to true if the '-debug' command line option<br>
-/// is specified.  This should probably not be referenced directly, instead, use<br>
-/// the DEBUG macro below.<br>
-///<br>
-extern bool DebugFlag;<br>
    /// isCurrentDebugType - Return true if the specified string is the debug type<br>
  /// specified on the command line, or if none was specified on the command line<br>
@@ -77,6 +72,29 @@ void setCurrentDebugTypes(const char **T<br>
  #define DEBUG_WITH_TYPE(TYPE, X) do { } while (false)<br>
  #endif<br>
  +/// This boolean is set to true if the '-debug' command line option<br>
+/// is specified.  This should probably not be referenced directly, instead, use<br>
+/// the DEBUG macro below.<br>
+///<br>
+extern bool DebugFlag;<br>
+<br>
+/// \name Verification flags.<br>
+///<br>
+/// These flags turns on/off that are expensive and are turned off by default,<br>
+/// unless macro EXPENSIVE_CHECKS is defined. The flags allow selectively<br>
+/// turning the checks on without need to recompile.<br>
+/// \{<br>
+<br>
+/// Enables verification of dominator trees.<br>
+///<br>
+extern bool VerifyDomInfo;<br>
+<br>
+/// Enables verification of loop info.<br>
+///<br>
+extern bool VerifyLoopInfo;<br>
+<br>
+///\}<br>
+<br>
  /// EnableDebugBuffering - This defaults to false.  If true, the debug<br>
  /// stream will install signal handlers to dump any buffered debug<br>
  /// output.  It allows clients to selectively allow the debug stream<br>
<br>
Modified: llvm/trunk/lib/Analysis/LoopIn<wbr>fo.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LoopInfo.cpp?rev=292889&r1=292888&r2=292889&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-pr<wbr>oject/llvm/trunk/lib/Analysis/<wbr>LoopInfo.cpp?rev=292889&r1=<wbr>292888&r2=292889&view=diff</a><br>
==============================<wbr>==============================<wbr>==================<br>
--- llvm/trunk/lib/Analysis/LoopIn<wbr>fo.cpp (original)<br>
+++ llvm/trunk/lib/Analysis/LoopIn<wbr>fo.cpp Mon Jan 23 23:52:07 2017<br>
@@ -40,9 +40,9 @@ template class llvm::LoopInfoBase<BasicB<br>
    // Always verify loopinfo if expensive checking is enabled.<br>
  #ifdef EXPENSIVE_CHECKS<br>
-static bool VerifyLoopInfo = true;<br>
+bool llvm::VerifyLoopInfo = true;<br>
  #else<br>
-static bool VerifyLoopInfo = false;<br>
+bool llvm::VerifyLoopInfo = false;<br>
  #endif<br>
  static cl::opt<bool,true><br>
  VerifyLoopInfoX("verify-loop-i<wbr>nfo", cl::location(VerifyLoopInfo),<br>
<br>
Modified: llvm/trunk/lib/IR/Dominators.c<wbr>pp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Dominators.cpp?rev=292889&r1=292888&r2=292889&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-pr<wbr>oject/llvm/trunk/lib/IR/Domina<wbr>tors.cpp?rev=292889&r1=292888&<wbr>r2=292889&view=diff</a><br>
==============================<wbr>==============================<wbr>==================<br>
--- llvm/trunk/lib/IR/Dominators.c<wbr>pp (original)<br>
+++ llvm/trunk/lib/IR/Dominators.c<wbr>pp Mon Jan 23 23:52:07 2017<br>
@@ -29,9 +29,9 @@ using namespace llvm;<br>
    // Always verify dominfo if expensive checking is enabled.<br>
  #ifdef EXPENSIVE_CHECKS<br>
-static bool VerifyDomInfo = true;<br>
+bool llvm::VerifyDomInfo = true;<br>
  #else<br>
-static bool VerifyDomInfo = false;<br>
+bool llvm::VerifyDomInfo = false;<br>
  #endif<br>
  static cl::opt<bool,true><br>
  VerifyDomInfoX("verify-dom-inf<wbr>o", cl::location(VerifyDomInfo),<br>
<br>
<br>
______________________________<wbr>_________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-commits</a><br>
</blockquote>
<br>
</div></div></blockquote></div><br></div>