<div dir="ltr"><div><div><div><div>It would appear that what you're after here is the ability to specify defs and uses of parts of registers. Namely, you'd like to model the fact that loading into one lane of a register redefines only that lane and instructions that use other lanes need not be concerned with that.<br><br></div>I believe that there is no way to model this using subregisters only. A def of a subregister is a def of the super register since it certainly does modify that register.<br></div>If I'm not mistaken, the only way you'd be able to model such a setup is to have separate register classes for the lanes that can be defined/used separately. The registers in those classes can then be subregisters of the full vector register. In this way, single-lane defs affect users of that lane and users of the full vector register.<br></div>However, there was some work recently to allow parameterized register classes, so this may be simpler to accomplish now.<br><br></div><div>I'm not sure there are targets that you can use for examples of how to accomplish this. I work on PPC where our floating point values go into one lane of vector registers. However, there is no way in the ISA to use the other part of the vector register, so we don't model that. But this at least gives you half of the story. You can look at PPC's VSRC/VSFRC register classes. What you would add is register classes for all the lanes. Then instructions that use a single lane would use a register from the appropriate class.<br><br></div><div>This may not be what you're after at all, in which case I hope at least some of this is helpful in some way.<br><br></div><div>Nemanja<br></div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Sep 19, 2017 at 5:26 PM, Saurabh Verma via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</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,<div><br></div><div>We are using a vector_insert in our target, to describe an instruction performing a lane-load of a vector register as:</div><div><br></div><div>set $dstReg, (vector_insert $dstReg, (load $addr)), imm:$lane)<br></div><div><br></div><div>However, this means that the dstReg is also marked as used in the instruction, which we do not want. We can do a direct lane-load to a part of the vector register without disturbing the rest, and hence would like to do a subregister-load. </div><div><br></div><div>Is there a way to achieve that? </div><div><br></div><div>Best regards</div><span class="HOEnZb"><font color="#888888"><div>Saurabh</div></font></span></div>
<br>______________________________<wbr>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">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/<wbr>mailman/listinfo/llvm-dev</a><br>
<br></blockquote></div><br></div>