<div dir="ltr"><div><div>Hi Andrew. <br><br></div>I really hadn't realized the existence of overlap methods in LiveInterval. I've just implemented it by myself (and my implementation probably is wrong :-()... I'll pay more attention next time :-)<br>


<br></div>I really apreciate your help. Thx a lot!<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On 17 September 2013 12:56, Andrew Trick <span dir="ltr"><<a href="mailto:atrick@apple.com" target="_blank">atrick@apple.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5"><br>
On Sep 17, 2013, at 5:15 AM, Leandro Santiago <<a href="mailto:leandrosansilva@gmail.com">leandrosansilva@gmail.com</a>> wrote:<br>
<br>
> Hello to all. I'm trying to implement a simple register allocator using graph colouring (I know, everyone has already done that :-)) and I'm also using LLVM 3.4 from master branch.<br>
><br>
> The algorithm I'm using is based on the one described on the "Modern Compiler Implementation in C". My implementation is totally experimental and doesn't aim to be fast, eficient or even faster than the current allocators (so please don't say "you'd better use a better algorithm" :-)).<br>


><br>
> I've been reading the code of current allocators as well some documentation about them in blogs, etc., but I still have some doubts.<br>
><br>
> I need to create a graph with the interference between LiveIntervals, where each node is a LiveInterval and an edge between two of them means they interfere.<br>
><br>
> By "X interferes Y" I mean: "LiveInterval X and Y must me mapped to some register of a class Z AND there's an interception between the ranges of X and ranges of Y", that's something like "X overlaps Y, which are the same type".<br>


><br>
> This deffinition differs from the definition I've found reading the source code. In the class LiveRegMatrix, which is queried to check interferences you ask something "does virtual register X interfere in physical register Y?". But I realized the answer is yes only if register Y has been already assigned to another virtual register.<br>


><br>
> I confess I couldn't understand why it was implemented in that way. That means I must first assign the virtual do physical in order to be able to apply my allocation heuristic (please correct me if I'm wrong (what's very likely to be true)).<br>


><br>
> Do you have any ideas about how to implement the initial idea, of checking interferences between virtual regs regardless have already assigned them to physical registers?<br>
><br>
> Thanks<br>
<br>
</div></div>Hi Leandro,<br>
<br>
LiveRegMatrix is a data structure that allows â€œincremental" register allocation by summarizing the liveness of physical register units. LLVM regalloc is fast because it uses this data structure instead of computing an interference graph.<br>


<br>
Checking interference between to virtual registers should be as simply as calling LiveInterval::overlaps(LI). You may want to refer to the LLVM RegisterCoalescer which has more in common with text-book register allocators.<br>


<br>
-Andy</blockquote></div><br><br clear="all"><br>-- <br>Sent from my mind
</div>