<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On May 8, 2017, at 4:03 PM, David Blaikie <<a href="mailto:dblaikie@gmail.com" class="">dblaikie@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><br class=""><br class=""><div class="gmail_quote"><div dir="ltr" class="">On Wed, May 3, 2017 at 1:57 PM Greg Clayton <<a href="mailto:clayborg@gmail.com" class="">clayborg@gmail.com</a>> wrote:<br class=""></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class=""><blockquote type="cite" class=""><div class="">On May 3, 2017, at 1:45 PM, David Blaikie <<a href="mailto:dblaikie@gmail.com" target="_blank" class="">dblaikie@gmail.com</a>> wrote:</div><br class="m_-8909822520519760362Apple-interchange-newline"><div class=""><div dir="ltr" class=""><br class=""><br class=""><div class="gmail_quote"><div dir="ltr" class="">On Wed, May 3, 2017 at 1:32 PM Greg Clayton via Phabricator <<a href="mailto:reviews@reviews.llvm.org" target="_blank" class="">reviews@reviews.llvm.org</a>> wrote:<br class=""></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">clayborg added a comment.<br class="">
<br class="">
In <a href="https://reviews.llvm.org/D32821#745213" rel="noreferrer" target="_blank" class="">https://reviews.llvm.org/D32821#745213</a>, @dblaikie wrote:<br class="">
<br class="">
> I haven't followed some of the design direction Adrian's been pointing this work in - so all of this is subject to discussion, etc:<br class="">
><br class="">
> 1. I'd expect not to build an entire representation of all ranges up-front, then verify them (uses more memory, etc) - but rather verify during a traversal of the DIEs instead<br class="">
<br class="">
<br class="">
The whole reason we need this is to look for overlapping functions between all CUs. This helps us to identify exactly which DIEs overlap.</blockquote><div class=""><br class="">If it's true that no DIEs should overlap, and all DIEs should be a subset of their parent - then there's no need to compare two DIEs that aren't siblings* because they can't overlap. The only comparisons that should be needed would be between immediate siblings, and siblings and parents - not all possible pairs of nodes. Right?<br class=""></div></div></div></div></blockquote><div class=""><br class=""></div></div></div><div style="word-wrap:break-word" class=""><div class="">That is how this is coded. Only top DW_TAG_subprogram DIEs get added to the AllFunctionRangeInfos. So when checking for overlap, we just check between adjacent DW_TAG_subprogram. Since these are in a std::set, they are ordered already. So we just check:</div><div class=""><br class=""></div><div class="">for I in AllFunctionRangeInfos.size():</div><div class="">  AllFunctionRangeInfos[I].Contains(AllFunctionRangeInfos[I+1])</div></div></blockquote><div class=""><br class="">Ah, that makes loads of sense - nice!<br class=""><br class="">So why aren't the lexical blocks scopes handled the same way?<br class=""></div></div></div></div></blockquote><div><br class=""></div>They are now. The new <span style="font-size: 11px;" class="">NonOverlappingRanges class does this by storing things a std::set. We now check everything on the fly.</span><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="gmail_quote"><div class=""><br class="">(& indeed, this is what I'm getting at about the duplicate code across this - I'm not understanding why there are two different ways of testing intersects or subset - and two different codepaths for the error messages too)<br class=""><br class="">What I'm picturing is a single device, much like what I wrote in the patch I provided last week, I think. That device/class represents a scope (in the general sense, not the lexical_scope sense), with an optional parent node + range and a list of children node+ranges. There would be an explicit instance for the file level (with no parent) that is used by every compile_unit's ranges. Another (hopefully local/non-member version, passed down - but it could be a member) created when visiting a top level compile unit - for its subprograms. And any number more created on the stack for the lexical scopes.<br class=""></div></div></div></div></blockquote><div><br class=""></div>That is essentially what we have now, we just have a const class and one in/out class.<br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="gmail_quote"><div class=""><br class="">This object would handle error message printing for both sibling overlap and not-contained-in-parent errors, in one place with one message/handling/etc.<br class=""></div></div></div></div></blockquote><div><br class=""></div>I guess we could switch over to using NonOverlappingRanges in the DieRangeInfo as well. I didn't want to put the error handling inside these classes because they need to access the error count. This is pretty close to what is there now, I just don't use <span style="font-size: 11px;" class="">NonOverlappingRanges in the DieRangeInfo currently... I will switch that over and see what simplifies out.</span></div><div><span style="font-size: 11px;" class=""><br class=""></span></div><div><span style="font-size: 11px;" class="">Greg</span></div><div><br class=""></div></body></html>