<div dir="ltr"><div dir="ltr"><div>> I don't follow -- if we continue to carry based-on aliasing semantics in GEPs (as you mention below), then it seems like the same kinds of motivations fro non-inbounds GEPs would motivate non-inbounds pointer subtraction (without degrading to integers and losing all "based on" aliasing information).</div><div><br></div><div>> As a concrete example, one use case for non-inbounds GEPs is to allow two displacements to be applied to a pointer that may move it outside the allocation, but combined will return to the allocation and be valid. It would seem useful to be able to *compute* such displacements as well.</div><div><br></div><div>> I think an important design point is that any valid pointer and any *intermediate* pointers in a GEP computation should be valid operands to pointer subtraction.</div><div><br></div><div>I see - so if my understanding is correct, having 'inbounds' flag to psub may give benefit which is analogous to GEP inbounds:</div><div><br></div><div>a = alloca [10 x i8]</div><div>p = f(a)</div><div>i = psub inbounds p, a // We can assume that 0 <= i <= 10</div><div><br></div><div>To synchronize, this is the semantics including psub inbounds:</div><div><br></div><div>'psub inbounds p q' returns poison if (p and q point to different objects) \/ (either p or q is not in-bounds). Otherwise, it returns 'sub(ptrtoint p, ptrtoint q)'.</div><div>'psub p q' returns poison if p and q point to different objects. Otherwise, it returns 'sub(ptrtoint p, ptrtoint q)'.</div><div>sub(ptrtoint p, ptrtoint q) returns non-poison integer unless either p or q is poison.</div><div><br></div><div>> I understand that the LangRef currently says all of these things. But I am not sure that it reflects reality in the face of CSE-like transformations. Those tend to break "based on" aliasing systems in many cases.</div><div><br></div><div>> I'd appreciate the folks who have been studying the failure to fully formally specify the aliasing semantics to chime in -- maybe all of the issues here have been thoroughly addressed. If so, great. If not, then I think we will need to be careful here. I've already suggested several patterns for how you could evaluate the safety in practical ways (as opposed to citing the language reference), and I think that plus hearing from folks who have worked on these formalizing conflicts in the IR are the next steps.</div><div><br></div><div>Yep, discussing with people about more LLVM IR patterns that possibly involve psub would be great.</div><div>I believe gradually changing use of sub(ptrtoint ,ptrtoint) to psub can somehow satisfy people's concerns.</div><div>Regarding the CSE-like transformation: if we introduce 'psub', we can again support replacing a pointer with another in this case:</div><div><br></div><div>i = psub p, q // i is poison if p and q are based on different objects</div><div>if (i == 0) {</div><div> use(p) // replace this with q is fine, because p and q are guaranteed to point to the same object } else {</div><div>  use(q)</div><div>}</div><div><br></div><div>This transformation is correct because psub returns poison if p and q point to different objects.</div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Jan 15, 2019 at 9:52 PM Chandler Carruth <<a href="mailto:chandlerc@gmail.com">chandlerc@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr">On Tue, Jan 15, 2019 at 8:11 AM Juneyoung Lee <<a href="mailto:juneyoung.lee@sf.snu.ac.kr" target="_blank">juneyoung.lee@sf.snu.ac.kr</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div>Hello Chandler,</div><div><br></div><div><div>> ```</div><div>> void f(int *arr1, int *arr2, int length) {</div><div>>   intptr_t rel_offset = arr2 - arr1;</div><div>>   int *arr1_end = arr1 + length;</div><div>>   for (int *p = arr1; p < arr1_end; p += sizeof(int)) {</div><div>>     do_something(p, p + rel_offset);</div><div>>   }</div><div>> }</div><div>> ```</div></div><div>></div><div>> For example, a common loop optimization technique is something like the following in *pseudocode* (note that this is</div><div>> not necessarily valid C but we might reasonably want to express this kind of optimization within LLVM:</div><div><br></div><div>When LLVM need to insert subtraction between two pointers, like the example you wrote, I believe we can use 'sub(ptrtoint p, ptrtoint q)' as before. This addresses concerns regarding correctness of existing pointer analysis. So you don't lose expressiveness, while you gain precision when possible.<br></div><div><br></div><div>A concrete suggestion is to add a parameter like 'bool use_psub' to IRBuilder::CreatePtrDiff. When Clang inserts  a pointer subtraction, use_psub is set to true. When LLVM inserts it, it is set as false. Default value of use_psub is false, so existing LLVM passes will still insert sub (ptrtoint, ptrtoint) but most of ptrtoints are inserted from Clang, so # of ptrtoint will significantly decrease as well.</div><div><br></div><div>Adding an "inbounds" flag to psub doesn't seem necessary since you can achieve the same thing with sub(ptrtoint, ptrtoint).</div></div></div></blockquote><div><br></div><div>I don't follow -- if we continue to carry based-on aliasing semantics in GEPs (as you mention below), then it seems like the same kinds of motivations fro non-inbounds GEPs would motivate non-inbounds pointer subtraction (without degrading to integers and losing all "based on" aliasing information).</div><div><br></div><div>As a concrete example, one use case for non-inbounds GEPs is to allow two displacements to be applied to a pointer that may move it outside the allocation, but combined will return to the allocation and be valid. It would seem useful to be able to *compute* such displacements as well.</div><div><br></div><div>I think an important design point is that any valid pointer and any *intermediate* pointers in a GEP computation should be valid operands to pointer subtraction.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div><br>> This doesn't make a lot of sense to me... the pointer subtractions semantics depend on whether the </div><div>> input was rinsed through `inttoptr`? It also doesn't handle the case I describe above.</div><div><br></div><div>The motivation is that (as far as I understand) LLVM already treat pointers casted from inttoptr differently from pointers from gep.</div><div>We tentatively call these "physical pointers" (as opposed to "logical pointers").</div><div>For example, GEP document says that inttoptr(i + ptrtoint p) is different from gep(p, i) - it says 'most of GEP’s special aliasing rules</div><div>do not apply to pointers computed from ptrtoint, arithmetic, and inttoptr sequences', implying that it can touch any object in LLVM.</div></div></div></blockquote><div><br></div><div>I understand that the LangRef currently says all of these things. But I am not sure that it reflects reality in the face of CSE-like transformations. Those tend to break "based on" aliasing systems in many cases.</div><div><br></div><div>I'd appreciate the folks who have been studying the failure to fully formally specify the aliasing semantics to chime in -- maybe all of the issues here have been thoroughly addressed. If so, great. If not, then I think we will need to be careful here. I've already suggested several patterns for how you could evaluate the safety in practical ways (as opposed to citing the language reference), and I think that plus hearing from folks who have worked on these formalizing conflicts in the IR are the next steps.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div><br></div><div>Juneyoung Lee</div></div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jan 14, 2019 at 10:59 PM Chandler Carruth <<a href="mailto:chandlerc@gmail.com" target="_blank">chandlerc@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Note that we should keep the discussion of instcombine and canonicalization completely separate. It is an independent question IMO. Only responding to the pointer subtraction point here.</div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jan 14, 2019 at 12:56 PM Juneyoung Lee <<a href="mailto:juneyoung.lee@sf.snu.ac.kr" target="_blank">juneyoung.lee@sf.snu.ac.kr</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr">> First and foremost - how do you address correctness issues here? Because the subtraction `A - B` can escape/capture more things. Specifically, if one of `A` or `B` is escaped/captured, the<br></div><div dir="ltr"><div>> subtraction can be used to escape or capture the other pointer. So *some* of the conservative treatment is necessary. What is the plan to update all the analyses to remain correct? What</div><div>> correctness testing have you done?</div><div><br></div><div>Correctness of psub is guaranteed by the specification of pointer subtraction of C/C++. </div></div></div></div></blockquote><div><br></div><div>LLVM is not a C/C++ compiler backend. We cannot rely on frontend language semantics to make the optimizer correct.</div><div><br></div><div>LLVM has its own semantic model and we need *it* to be correct.</div><div><br></div><div>Also, the reality is that we *do* have the case I described. Even if the source language does not form this directly, LLVM itself can form the exact pattern I describe? We would need rules in LLVM's IR that preclude this at a semantic level and to find and remove optimizations that violate that. Have we done this?</div><div><br></div><div>I think this may be much harder than it seems due to fundamental transformations. If we prove that `C = (A - B)`, even though we originally got `C` directly, we might replace it with `A - B`. This subtraction doesn't even have to be something we can compute, we just need a proof that it is equivalent.</div><div><br></div><div>For example, a common loop optimization technique is something like the following in *pseudocode* (note that this is not necessarily valid C but we might reasonably want to express this kind of optimization within LLVM:</div><div><br></div><div>```</div><div>void f(int *arr1, int *arr2, int length) {</div><div>  intptr_t rel_offset = arr2 - arr1;</div><div>  int *arr1_end = arr1 + length;</div><div>  for (int *p = arr1; p < arr1_end; p += sizeof(int)) {</div><div>    do_something(p, p + rel_offset);</div><div>  }</div><div>}</div><div>```</div><div><br></div><div>This kind of thing should be representable in LLVM's IR in my opinion.</div><div><br></div><div>An analogous situation is with `getelementptr` vs `getelementptr inbounds`. I think you'll need something similar, and you'll want to update the optimizer to track the non-inbounds version as potentially escaping (much as ptrtoint is potentially escaping). This is still distinct from ptrtoint as things like address spaces and other properties of the pointers are not necessarily lost by this operation.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div>When two pointers are subtracted, both shall point to elements of the same array object, or one past the last element of the array object (6.5.6.9).</div><div>So, if the two pointers p and q point to different objects, we can define llvm.psub(p,q) as poison.</div><div><div>Other than meeting C specification, correctness of llvm.psub is tested with SPEC CPU2017 and LLVM Nightly Tests as well.</div></div></div></div></div></blockquote><div><br></div><div>SPEC and the nightly test suite are great at finding problems, but quite bad at giving confindence that there are not problems. For subtle things like this, I would expect you need to look an a much larger sampling of real-world application code.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div><br class="gmail-m_-1719013394946368768gmail-m_-6771928033610218143gmail-m_2022190158050990478gmail-m_-3297305196850690136gmail-Apple-interchange-newline"></div><div>But it is true that sometimes pointer subtraction is used to get distance between two objects.</div><div>Most common case is doing something like 'p - NULL', and this pattern exists in SPEC CPU2017, for example spec_qsort.c in mcf_r .</div><div>Our suggestion is to define 'p - q' correctly return the distance between p and q if either p or q is based on inttoptr(i). This naturally explains 'p - NULL' because NULL is equivalent to inttoptr(0).</div></div></div></div></blockquote><div><br></div><div>This doesn't make a lot of sense to me... the pointer subtractions semantics depend on whether the input was rinsed through `inttoptr`? It also doesn't handle the case I describe above.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div><br></div><div>Regarding analysis - what I've observed is that analysis was done after pointer subtraction was optimized into another form.</div><div>For example, if '(p - q) == 0' was given, this is transformed into 'p == q', and then some analysis was done.</div><div>Good thing is that these transformations can be simply applied to llvm.psub as well, which will reenable analysis.<br></div><div>Also we're adding a new operation here, so existing analysis wouldn't be incorrect, but wouldn't fire.</div><div>Fortunately, the performance impact after changing llvm.psub wasn't big.</div><div><br></div><div>> Second - an intrinsic seems a poor fit here given the significance of this operation. We have an instruction that covers most pointer arithmetic (`getelementptr`), and I can imagine growing </div><div>> pointer subtraction, but it seems like it should be an instruction if we're going to have it. Based on the above, we will need to use it very often in analysis.<br></div><div><br></div><div>I also think that defining psub as instruction is fine. :)</div><div><br></div><div>> Regarding the instcombine, it should be very easy to keep loads and stores of pointers as pointer typed in instcombine. Likely just a missing case in the code I added/touched there. </div><div><br></div><div>That's really good. :) I found that  combineLoadToOperationType from InstCombineLoadStoreAlloca was responsible for the transformation.</div><div>I can upload a patch for that if ok.<br></div><div><br></div><div>Best Regards,</div><div>Juneyoung Lee</div></div></div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jan 14, 2019 at 5:36 PM Chandler Carruth <<a href="mailto:chandlerc@gmail.com" target="_blank">chandlerc@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">While I'm very interested in the end result here, I have some questions that don't seem well answered yet around pointer subtraction...<div><br></div><div>First and foremost - how do you address correctness issues here? Because the subtraction `A - B` can escape/capture more things. Specifically, if one of `A` or `B` is escaped/captured, the subtraction can be used to escape or capture the other pointer. So *some* of the conservative treatment is necessary. What is the plan to update all the analyses to remain correct? What correctness testing have you done?</div><div><br></div><div>Second - an intrinsic seems a poor fit here given the significance of this operation. We have an instruction that covers most pointer arithmetic (`getelementptr`), and I can imagine growing pointer subtraction, but it seems like it should be an instruction if we're going to have it. Based on the above, we will need to use it very often in analysis.</div><div><br></div><div><br></div><div>Regarding the instcombine, it should be very easy to keep loads and stores of pointers as pointer typed in instcombine. Likely just a missing case in the code I added/touched there.</div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jan 14, 2019 at 3:23 AM Juneyoung Lee via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div>Hello all,</div><div><br></div><div>This is a proposal for reducing # of ptrtoint/inttoptr casts which are not</div><div>written by programmers but rather generated by LLVM passes.</div><div>Currently the majority of ptrtoint/inttoptr casts are generated by LLVM;</div><div>when compiling SPEC 2017 with LLVM r348082 (Dec 2 2018) with -O3,</div><div>the output IR contains 22,771 inttoptr instructions. However, when</div><div>compiling it with -O0, there are only 1048 inttoptrs, meaning that 95.4%</div><div>of them are generated by LLVM passes.</div><div><br></div><div>This trend is similar in ptrtoint instruction as well. When compiling SPEC 2017</div><div>with -O0, there are 23,208 ptrtoint instructions, but among them 22,016 (94.8%)</div><div>are generated by Clang frontend to represent pointer subtraction.</div><div>They aren't effectively optimized out because there are even more ptrtoints (31,721) after -O3.</div><div>This is bad for performance because existence of ptrtoint makes analysis return conservative</div><div>result as a pointer can be escaped through the cast.</div><div>Memory accesses to a pointer came from inttoptr is assumed</div><div>to possibly access anywhere, therefore it may block</div><div>store-to-load forwarding, merging two same loads, etc.</div><div><br></div><div>I believe this can be addressed by applying two patches - first one is representing pointer subtraction with a dedicated intrinsic function, llvm.psub, and second one is disabling InstCombine transformation</div><div><br></div><div>    %q = load i8*, i8** %p1</div><div>    store i8* %q, i8** %p2</div><div>=></div><div>  %1 = bitcast i8** %p1 to i64*</div><div>  %q1 = load i64, i64* %1, align 8</div><div>  %2 = bitcast i8** %p2 to i64*</div><div>  store i64 %q1, i64* %2, align 8</div><div><br></div><div>This transformation can introduce inttoptrs later if loads are followed (<a href="https://godbolt.org/z/wsZ3II" target="_blank">https://godbolt.org/z/wsZ3II</a> ). Both are discussed in <a href="https://bugs.llvm.org/show_bug.cgi?id=39846" target="_blank">https://bugs.llvm.org/show_bug.cgi?id=39846</a> as well.</div><div>After llvm.psub is used & this transformation is disabled, # of inttoptrs decreases from 22,771 to 1,565 (6.9%), and # of ptrtoints decreases from 31,721 to 7,772 (24.5%).</div><div><br></div><div>I'll introduce llvm.psub patch first.</div><div><br></div><div><br></div><div>--- Adding llvm.psub ---</div><div><br></div><div>By defining pointer subtraction intrinsic, we can get performance gain because it gives more undefined behavior than just subtracting two ptrtoints.</div><div><br></div><div>Patch <a href="https://reviews.llvm.org/D56598" target="_blank">https://reviews.llvm.org/D56598</a> adds llvm.psub(p1,p2) intrinsic function, which subtracts two pointers and returns the difference. Its semantic is as follows.</div><div>If p1 and p2 point to different objects, and neither of them is based on a pointer casted from an integer, `llvm.psub(p1, p2)` returns poison. For example,</div><div><br></div><div>%p = alloca</div><div>%q = alloca</div><div>%i = llvm.psub(p, q) ; %i is poison</div><div><br></div><div>This allows aggressive escape analysis on pointers. Given i = llvm.psub(p1, p2), if neither of p1 and p2 is based on a pointer casted from an integer, the llvm.psub call does not make p1 or p2 escape. (<a href="https://reviews.llvm.org/D56601" target="_blank">https://reviews.llvm.org/D56601</a> )</div><div><br></div><div>If either p1 or p2 is based on a pointer casted from integer, or p1 and p2 point to a same object, it returns the result of subtraction (in bytes); for example,</div><div><br></div><div>%p = alloca</div><div>%q = inttoptr %x</div><div>%i = llvm.psub(p, q) ; %i is equivalent to (ptrtoint %p) - %x</div><div><br></div><div>`null` is regarded as a pointer casted from an integer because</div><div>it is equivalent to `inttoptr 0`.</div><div><br></div><div>Adding llvm.psub allows LLVM to utilize significant portion of ptrtoints & reduce a portion of inttoptrs. After llvm.psub is used, when SPECrate 2017 is compiled with -O3, # of inttoptr decreases to ~13,500 (59%) and # of ptrtoint decreases to ~14,300 (45%).</div><div><br></div><div>To see the performance change, I ran SPECrate 2017 (thread # = 1) with three versions of LLVM, which are r313797 (Sep 21, 2017), LLVM 6.0 official, and r348082 (Dec 2, 2018). </div><div>Running r313797 shows that 505.mcf_r has consistent 2.0% speedup over 3 different machines (which are i3-6100, i5-6600, i7-7700). For LLVM 6.0 and r348082, there's neither consistent speedup nor slowdown, but the average speedup is near 0. I believe there's still a room of improvement because there are passes which are not aware of llvm.psub.</div><div><br></div><div>Thank you for reading this, and any comment is welcome.</div><div><br></div><div>Best Regards,</div><div>Juneyoung Lee</div></div></div></div>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">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>
</blockquote></div>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail-m_-1719013394946368768gmail-m_-6771928033610218143gmail-m_2022190158050990478gmail-m_-3297305196850690136gmail_signature"><div dir="ltr"><div><br></div><font size="1">Juneyoung Lee</font><div><font size="1">Software Foundation Lab, Seoul National University</font></div></div></div>
</blockquote></div></div>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail-m_-1719013394946368768gmail-m_-6771928033610218143gmail_signature"><div dir="ltr"><div><br></div><font size="1">Juneyoung Lee</font><div><font size="1">Software Foundation Lab, Seoul National University</font></div></div></div>
</blockquote></div></div>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><br></div><font size="1">Juneyoung Lee</font><div><font size="1">Software Foundation Lab, Seoul National University</font></div></div></div>