<div dir="ltr"><div><div><div><div><div>In our generated asm code we've got a constraint such that two registers in a ternary op have to be in different "banks", best illustrated with an example:<br><br></div>   add  r1,r2,r1 # r1 <- r2 + r1<br><br></div>The problem here is that the first operand (the receiver of the value) is in the same "bank" as the 3rd operand (r1 again). This will cause an extra cycle to be burned. As it turns out the first and second operands can be in the same bank, so the issue is with the first and third operand being in the same bank.<br><br>This example is easily "fixed" (the performance is optimized) by swapping the 2nd and 3rd operands:<br></div><br></div>  add  r1, r1, r2 # r1 <- r1 + r2<br><br><br></div><div>There are four banks and the formula to figure out which bank a register is in is just: r%4<br><br></div><div>Which brings me to tablegen:<br><br></div><div>We've got this in our specialized ArchInstrInfo.td:<br><br>// r1 = r2 op r3<br>//<br>class ArithOp_RR< bits<7> op,<br>                  string instr_asm,<br>                  SDNode opNode,<br>                  OperandInfo info,<br>                  InstrItinClass itin ><br>  : FR3< op,<br>        (outs info.regClass:$r1),<br>        (ins info.regClass:$r2, info.regClass:$r3),<br>        instr_asm # "\t\t$r1, $r2, $r3, " # info.sizeStr,<br>        [(set info.regClass:$r1, (opNode info.regClass:$r2, info.regClass:$r3))],<br>        itin > {<br>          let isFloat = info.isFloat;<br>          let opsize = info.sizeCode;<br>        }<br><br></div><div>Is there a way to do something like:<br><br><br></div><div><div><div><div><div>// r1 = r2 op r3<br>//<br>class ArithOp_RR< bits<7> op,<br>                  string instr_asm,<br>                  SDNode opNode,<br>                  OperandInfo info,<br>                  InstrItinClass itin ><br>  : FR3< op,<br>        (outs info.regClass:$r1),<br>        (ins info.regClass:$r2, info.regClass:$r3),<br></div><div>if( $r1%4 == $r3%4 ) {<br></div><div>       instr_asm # "\t\t$r1, $r3, $r2, " # info.sizeStr,<br>        [(set info.regClass:$r1, (opNode info.regClass:$r3, info.regClass:$r2))],<br>} else { <br></div><div>       instr_asm # "\t\t$r1, $r2, $r3, " # info.sizeStr,<br>        [(set info.regClass:$r1, (opNode info.regClass:$r2, info.regClass:$r3))],<br>}<br>        itin > {<br>          let isFloat = info.isFloat;<br>          let opsize = info.sizeCode;<br>        }<br><br><br></div><div>Is that even remotely possible? If not, are there other ways to achieve this sort of thing? Would I be better off doing it in the ArchASMPrinter.cpp (I would think this could be problematic)? Or is there somewhere "further up" which would be more appropriate?<br><br></div><div>Phil<br></div></div></div></div></div></div>