<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><br><div><div>Il giorno 12/gen/2015, alle ore 16:30, Daniel Berlin <<a href="mailto:dberlin@dberlin.org">dberlin@dberlin.org</a>> ha scritto:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jan 12, 2015 at 4:09 AM, Nicola Gigante <span dir="ltr"><<a href="mailto:nicola.gigante@gmail.com" target="_blank">nicola.gigante@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hi all.<br>
<br>
I’ve heard a couple of times that some of the problems solved by various<br>
passes in the optimizer are indeed NP-hard, even though the instances<br>
are small enough to be tractable (and very quickly).<br>
<br>
Is this true?</blockquote><div><br>Some are NP-Hard, some are NP-complete.</div></div></div></div></blockquote><blockquote type="cite"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div> <br></div><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex; position: static; z-index: auto;"> If so, which are these problems?<br>
Register allocation? Instruction scheduling?<br></blockquote><div>Depends on how you define register allocation (IE optimal register coloring, optimal spilling, optimal copy coalescing, optimal dematerialization, etc), but even some of the subtasks are np-complete for normal programs.</div><div><br></div></div></div></div></blockquote><blockquote type="cite"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>You can also prove that strict SSA programs have some properties that make some of these subtasks *not* NP-complete when taken in isolation, for example, register coloring can be done optimally because strict SSA programs produce chordal graphs, *despite* the fact that register coloring is an NP-complete problem in general.</div><div><br></div><div>But in general, even the simple task of "figuring out the smallest number of registers it takes to color a given register interference graph" is NP-complete </div><div><br></div><div>Scheduling is also full of NP-complete and np-hard problems.</div><div>Even if you restrict scheduling instructions to assume a fixed 2-cycle latency (IE no funky pipeline constraints, etc), it's *still* np hard (see <a href="http://dl.acm.org/citation.cfm?id=155183.155190">http://dl.acm.org/citation.cfm?id=155183.155190</a>)</div><div><br></div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<br>
Are they solved exactly or by approximations?<br></blockquote><div><br></div><div>Approximations in some cases, not trying in others (IE not even approximating optimal, or considering optimal in the formulation, but just trying to do something that seems to turn out good in practice. I wouldn't call these approximations since they are not related to solving the NP complete problems, just generating good code).</div><div><br></div><div>The only case i'm aware of using real exact/approximation solutions is PBQP, which solves a subclass of the NP complete problem it attacks in linear time.</div><div>I believe it uses heuristics to approximate an optimal answer in the rest, but don't quote me on that :)</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Or not solved at all (the need of solving them is avoided in some way)?<br></blockquote><div><br></div><div>It only avoids them in the sense that it simply ignores optimality as a constraint.</div><div><br></div></div></div></div>
</blockquote><br></div><div>Thank you very much for your reply!</div><div><br></div><div>Can you point me to more papers where to find out more details</div><div>about optimization problems involved in optimization (sigh) of program’s code?</div><div><br></div><div>Thank you very much again,</div><div>Nicola</div><br></body></html>