<div dir="ltr">Many CPU instruction sets have "autoincrement" / "postincrement" (pop) / "predecrement" (push) instructions that dereference a pointer register and also alter it by the size of the load or store.<div><br></div><div>The PowerPC has "load byte/short/word with update" instructions that add an arbitrary positive or negative literal offset (unrelated to the load/store size) to the pointer register BEFORE the load or store, and update the register with the final address.</div><div><br></div><div>So maybe the PowerPC back end is worth looking at? </div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Oct 24, 2014 at 1:30 AM, Johnny Val <span dir="ltr"><<a href="mailto:johnnydval@gmail.com" target="_blank">johnnydval@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi Steve,<br><br>Thanks for the tip regarding MIOperandInfo, I didn't think of that part of the tablegen description.<br><br>Sadly, I did actually mean: r1 = *(i0 += m0).<br><br>So increment i0 by m0. Read memory the memory location "pointed" to by i0. Store in r1. Sadly I am not too familiar with compiler terminology, so I don't know if there is a proper term for such a load.<br><br></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 23, 2014 at 12:23 PM, Steve Montgomery <span dir="ltr"><<a href="mailto:stephen.montgomery3@btinternet.com" target="_blank">stephen.montgomery3@btinternet.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>You might need to modify selectAddr so it doesn't fold the add node but instead returns two operands: one for the pointer and one for the offset. You can control the register classes for the two components of the address using MIOperandInfo so your base pointer can be IClass and the offset MClass. See SparcInstrInfo.td (and probably others) for examples.<br>
<br>
I'm assuming you meant r1 = *(i0 + m0) rather than r1 = *(i0 += m0)? I don't know how you'd achieve that latter.<br>
<br>
Steve Montgomery<br>
<br>
On 21 Oct 2014, at 17:15, Johnny Val <<a href="mailto:johnnydval@gmail.com" target="_blank">johnnydval@gmail.com</a>> wrote:<br>
<br>
</span><div><div>> Hi,<br>
><br>
> I am writing a backend and having issues with properly lowering the result of getElementPtr ( specifically the add node that it generates).<br>
><br>
> If we take this IR:<br>
><br>
> %struct.rectangle = type { i24, i24 }<br>
><br>
> ; Function Attrs: nounwind readonly<br>
> define i24 @area(%struct.rectangle* nocapture readonly %r) #0 {<br>
> entry:<br>
>  %width = getelementptr inbounds %struct.rectangle* %r, i16 0, i32 0<br>
>  %0 = load i24* %width, align 4, !tbaa !1<br>
>  %height = getelementptr inbounds %struct.rectangle* %r, i16 0, i32 1<br>
>  %1 = load i24* %height, align 4, !tbaa !6<br>
>  %mul = mul nsw i24 %1, %0<br>
>  ret i24 %mul<br>
> }<br>
><br>
> The DAG before isel would look like isel.png.<br>
><br>
> I would then pattern match the load nodes with:<br>
><br>
> [(set i24:$val, (load addr:$addr))]<br>
><br>
> Where addr is a complex pattern. This is fine for the 0th element in the struct, as there is no offset so the resultant assembly would be (which works fine):<br>
><br>
> r0 = *(i0)<br>
><br>
> The issue I have is with the second load. I need the result to be:<br>
><br>
> m0 = 4<br>
> r1 = *(i0 += m0) (offset is stored in a register(m0), and modifies the original pointer)<br>
><br>
> rather than<br>
><br>
> r1 = *(i0 + 4) (immediate)<br>
><br>
> (The specific registers numbers don't matter).<br>
><br>
> I'm not sure how to achieve that. Currently addr gets matched in SelectAddr in XYZISelDAGToDAG.cpp. It will match the add node and "combine" (I'm not sure this is the correct terminology) it into my LDR node. The result of this can be seen sched.png<br>
><br>
> So instead of that TargetConst<4> I need a something that copies 4 into an M register, and then LDR uses that.<br>
><br>
> I'm not sure if I should put logic in SelectAddr to create a virtual register and create a series of copyfromreg/copytoreg to copy the constant into an M register and then pass that to the node? I feel like that is fairly ugly (as no other back-end does this), but I'm not sure what a better way would be.<br>
><br>
> I have tried looking through other backends for an example, but couldn't find something similar. That could be due to me not knowing where to look.<br>
><br>
> Thanks in advance for any help.<br>
><br>
> Johnny<br>
</div></div><div><div>> <isel.png><sched.png>_______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:LLVMdev@cs.uiuc.edu" target="_blank">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
<br>
</div></div></blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
<br></blockquote></div><br></div>