On 09/08/2015 01:40 PM, Vladimir Makarov wrote:

As I remember it is was written by Mike Tiemann.
Correct.


  Bottom-up scheduler as
a rule generates worse code than top-down one.
Indeed that was one of the key things we were looking to get from the Haifa scheduler along with improved superscalar support some support for region scheduling & speculation.

Yes, that is true for OOO execution processors which can rearrange insns
and execute them speculatively looking through several branches.  For
such processors, software pipelining is more important as the processors
can look only through a few branches as software pipelining could look
through any number of branches.  That is why Intel compiler did not have
any insn scheduler (but had software pipelining) until Intel Atom
introduction which was originally in-order processor.
Correct. Latency scheduling just isn't that important for OOO and instead you look at scheduling to mitigate costs for large latency operations (ie, cache miss and transcendental functions). You might also attack secondary issues like throughput at the retirement stage for example.


Actually, I believe dealing with variable/unknown latency of load insns
(depending where data are placed in a cache or memory) would be more
important than bottom-up or hybrid scheduler.
Agreed. This is in-line with what the HP guys were seeing as they transitioned to the PA8000.


  A balanced scheduling
dealing with this problem was implemented by Alexander Monakov about 7-8
years ago as a google internship work but it was not included as at that
time its advantages was not confirmed on SPEC2000.  It would be
interesting to reconsider and re-evaluate it on modern processors and
scientific benchmarks with big data.
Agreed.


For in-order processors, we also have another scheduler (selective one)
which does additional transformations (like register renaming and
non-modulo software pipelining) which could be more important than
top-down/bottom-up scheduling.  And it gave 1-2% improvement on Itanium
SPEC2000 in comparison with haifa scheduler.
Right.

Jeff

Reply via email to