<div dir="ltr">I don't think register class to register class copy instructions are supposed to have patterns. Those instructions should be selected by the copyPhysReg in your InstrInfo class. I believe your immediate instructions should also be marked as isRematerializable.<div><br></div><div>As to your question about pattern ordering. All patterns are first put into a list based on declared order and then sorted by various criteria. One of those criteria is a concept of "complexity" which is a rough approximation of how many nodes in the selection dag the pattern will replace. More complex patterns are ordered first. Two patterns with the same complexity will tend to stay in the order they were declared. I believe all of your patterns have the same complexity so they stay in their original order. If you open the DAGISel.inc for your target you can see a line that contains "Complexity = " that shows the complexity for each pattern.</div><div><br></div><div>It's possible the forcibly increase or decrease the complexity by adding a "let AddedComplexity = <some number>" to your instruction definition. This number will be added to the calculated complexity before the sort. I believe it can also be negative to lower the priority though thats way less common. You can find examples in many of the in tree targets. I'm most familiar with X86 and I know its used in many places there.</div><div><br></div><div>Hope this helps.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Dec 10, 2015 at 5:08 PM, Tyro Software 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"><div class="gmail_quote"><div dir="ltr">I'm building a backend based on LLVM 3.6 (because that was the head when I started) for a target architecture with instructions for copying between registers of different classes and also for copying literal values to registers, e.g. roughly:<div><br></div><div>TAX X A  ; copy from A to X</div><div>TXA A X  ; copy from X to A</div><div>TIX 42 X  ; set X to 42</div><div><div>TIA 42 A  ; set A to 42</div></div><div><br></div><div>with the instructions .TD contents roughly (omitting instruction formats, etc)</div><div><br></div><div>def TAX { ins aRegs:$A, outs xRegs:$X, [(set xRegs:$X, aRegs:$A)]</div><div>def TXA { ins xRegs:$X, outs aRegs:$A, [(set aRegs:$A, xRegs:$X)]</div><div>def TIX { ins imm:$val, outs xRegs:$X, [(set xRegs:$X, (imm:$val))]<br></div><div><div>def TIA { ins imm:$val, outs aRegs:$A, [(set aRegs:$A, (imm:$val))]<br></div></div><div><br></div><div>then when doing instruction selection for a CopyToReg(X, val) node (produced by an IR "ret i8"; calling convention has result in X0 register):</div><div><br></div><div>(a) with the immediate instructions TIX+TIA defined first it works, though sub-optimally:</div><div>   </div><div><div>        %vreg0<def> = TIX 42; aRegs:%vreg0</div><div>        %X0<def> = COPY %vreg0; aRegs:%vreg0</div></div><div><br></div><div>(b) but when TAX+TAX are defined first it selects this circular pair:</div><div><br></div><div>        %vreg1<def> = COPY %vreg0; xRegs:%vreg1 aRegs:%vreg0
<br>        %vreg0<def> = TAX %vreg1; aRegs:%vreg0 xRegs:%vreg1 <br></div><div><br></div><div>and subsequently aborts when determining liveness ("Use not jointly dominated 
by defs").</div><div><br></div><div>Very naively I'm surprised that the order of the rule definitions matters, i.e. that it chooses the inter-register copy at all rather than finding the better-fitting literal copy. Adding cost hints such as isAsCheapAsAMove didn't change this behaviour.</div><div><br></div><div>Is this the expected behaviour, or is defining TIX first just a crude workaround for some deeper problem with my code?</div><div><br></div><div>Thanks for whatever light you can shed...</div></div><span class="HOEnZb"><font color="#888888">
</font></span></div><span class="HOEnZb"><font color="#888888"><br><div>/Tyro</div></font></span></div>
<br>_______________________________________________<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/mailman/listinfo/llvm-dev</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">~Craig</div>
</div>