addRequiredID is only used when PassName is not statically known. There's an example in PassPrinters.cpp. I agree with John that you should use addRequired<PassName> whenever possible. <br><div><br></div><div>Jingyue</div><br><div class="gmail_quote">On Mon Sep 29 2014 at 4:26:25 PM John Criswell <<a href="mailto:jtcriswel@gmail.com">jtcriswel@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 9/29/14, 5:51 PM, songlh wrote:<br>
> Hi,<br>
><br>
>   I notice that there are several different methods called inside<br>
> getAnalysisUsage(). The parameters of addRequiredID and addPreservedID<br>
> are passID. What is the difference between Required and Preserved?<br>
<br>
A Required pass is one that must be run before the pass requiring it.<br>
The required pass is an analysis pass that your pass will query for<br>
analysis information.  This information is used by the PassManager to<br>
determine which analysis passes must be run before another analysis or<br>
optimization pass.<br>
<br>
<br>
A Preserved pass is an analysis pass whose analysis results your pass<br>
does not modify.  For example, a pass may modify the code in a way that<br>
does not modify the results of a dominator analysis.  The PassManager<br>
uses this information to avoid rerunning expensive analyses unnecessarily.<br>
<br>
> There are also function named addRequired<PassName>() called. What is<br>
> the difference between addRequired<PassName>() and addRequiredID(PassID)?<br>
<br>
I suspect that addRequired<PassName>() and addRequiredID() do the same<br>
thing but have different inputs.  When writing a pass, you should just<br>
use addRequired<PassName>(); I've never seen anyone use addRequiredID().<br>
<br>
Regards,<br>
<br>
John Criswell<br>
<br>
______________________________<u></u>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu" target="_blank">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/llvmdev</a><br>
</blockquote></div>