<div dir="ltr">Thank you for your replies. So I guess, the only way to implement this is to create a port-ra MachineScheduler pass. Basically, for my pass I just want to take the result of LLVM scheduler (Sequence vector) and do some modification on the scheduling order of instructions for blocks inside the loops. Therefore, in addition to MachineLoopInfo, I need the sequence of scheduling Units and their relations. Could you please give me a start point on how to include Sunits information in my pass. Is this information from the scheduler still available?<div>Regards,</div><div>Fami</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Feb 11, 2016 at 2:59 PM, Matthias Braun <span dir="ltr"><<a href="mailto:mbraun@apple.com" target="_blank">mbraun@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I thinkt MachineLoopInfo requires the program to be in MI representation which it isn't yet when the selection DAG schedulers run. You may be able to hack around that by using the IR level loopinfo and trying to associate that information with the machine basic blocks (though that is probably tricky as well as I think expansion of pseudos may have created additional blocks which are not necessarily present in the IR).<br>
<br>
In any way the selection DAG schedulers are usually not the place where you want to do advanced scheduling. The long term plan for the selection dag schedulers is to make them as simple as a reverse postorder walk on the selection DAG (we are not quite there yet) or not require them at all anymore with the upcoming GlobalISel. Scheduling for machine specifics is done with the MachineScheduler infrastructure, have you looked at implementing a pre-ra or post-ra MachineScheduler instead of creating a new ScheduleDAG scheduler?<br>
<span class="HOEnZb"><font color="#888888"><br>
- Matthias<br>
</font></span><span class="im HOEnZb"><br>
> On Feb 11, 2016, at 10:40 AM, via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
><br>
> Hi,<br>
> I read your post in LLVM forum. I want to use getAnalysisUsage(AnalysisUsage &AU) to get MachineLoopInfo. I have used this on my passes before but, this time I am trying to get this information in ScheduleDAGRRList scheduler class. There is no runonmachinefunction function. Do you know how I can implement this?<br>
</span><div class="HOEnZb"><div class="h5">> Regards,<br>
> Fateme<br>
> I will appreciate it you can help me with this problem.<br>
> <quote author='Mehdi Amini via llvm-dev'><br>
> Hello,<br>
><br>
> I am used to specifying dependence on other LLVM passes in the<br>
> `getAnalysisUsage(AnalysisUsage &)` method of my pass. However, it doesn't<br>
> seem that there is a header file that exposes the `mem2reg` pass - it is<br>
> implemented in `Mem2Reg.cpp` as a wrapper.<br>
><br>
> Is there an easy way to reuse this pass, or should I, in essence, duplicate<br>
> `Mem2Reg.cpp` in my project?<br>
><br>
> Cheers,<br>
> - Stan<br>
><br>
> _______________________________________________<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>
><br>
> </quote><br>
> Quoted from:<br>
> <a href="http://llvm.1065342.n5.nabble.com/llvm-dev-Writing-an-LLVM-Pass-that-depends-on-mem2reg-tp91085.html" rel="noreferrer" target="_blank">http://llvm.1065342.n5.nabble.com/llvm-dev-Writing-an-LLVM-Pass-that-depends-on-mem2reg-tp91085.html</a><br>
><br>
><br>
> _____________________________________<br>
> Sent from <a href="http://llvm.1065342.n5.nabble.com" rel="noreferrer" target="_blank">http://llvm.1065342.n5.nabble.com</a><br>
><br>
> _______________________________________________<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>
<br>
</div></div></blockquote></div><br></div>