<div dir="ltr">This is expected if those analysis are not preserved.<div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jan 22, 2016 at 12:49 PM, Syed Rafiul Hussain via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I have added -debug-pass=Structure, and found the following:<br>
<br>
ModulePass Manager<br>
    X Analysis<br>
      Unnamed pass: implement Pass::getPassName()<br>
    FunctionPass Manager<br>
      Module Verifier<br>
    Bitcode Writer<br>
Pass Arguments:  -x -y -z<br>
  FunctionPass Manager<br>
    X Analysis<br>
    Y Construction<br>
    Z Construction<br>
<br>
Even for getAnalysis<Y>(*F) and getAnalysis<Z>(&F), all the passes X,<br>
Y, Z are executed again. In total there are three places where<br>
getAnalysis() directive has been used for X, Y, Z. However, for each<br>
getAnalysis() call, all three passes are scheduled/executed.<br>
<span class="im HOEnZb"><br>
<br>
<br>
<br>
On Fri, Jan 22, 2016 at 12:24 PM, Mehdi Amini <<a href="mailto:mehdi.amini@apple.com">mehdi.amini@apple.com</a>> wrote:<br>
><br>
>> On Jan 21, 2016, at 9:05 PM, Syed Rafiul Hussain via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
>><br>
>> Hi,<br>
>><br>
>> I am using llvm-3.8 for my project. Following is my getAnalysisUsage() method:<br>
>><br>
>> virtual void getAnalysisUsage(AnalysisUsage &AU) const override<br>
>> {<br>
>>   AU.setPreservesAll();<br>
>>   AU.addRequired<X>();<br>
>>   AU.addRequired<Y>();<br>
>>   AU.addRequired<Z>();<br>
>> }<br>
>><br>
>> Now, if I call getAnalysis<X>(*F), instead of invoking just the X<br>
>> pass, all the passes, i.e., X, Y and Z are being invoked. Could anyone<br>
>> help me in this regard?<br>
><br>
> This is expected. With the current pass manager, the scheduling is done upfront. The “addRequired” directive tells the pass manager that before even starting to run your pass, it needs to schedule X, Y, and Z.<br>
> They will run even without the call to  getAnalysis<X>(*F). The new pass manager (not complete yet but almost) will change that.<br>
><br>
> When running your pass with opt, you can add —debug-pass=Structure to see what the scheduling is.<br>
><br>
> I hope I didn’t misunderstand your question.<br>
><br>
> —<br>
> Mehdi<br>
><br>
<br>
<br>
<br>
</span><span class="HOEnZb"><font color="#888888">--<br>
Rafi<br>
</font></span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</div></div></blockquote></div><br></div>