<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Hi Markus,<br><div apple-content-edited="true">

</div>
<br><div><div>On Jan 28, 2014, at 3:30 PM, Markus Timpl <<a href="mailto:tima0900@googlemail.com">tima0900@googlemail.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr"><div>Hello,</div><div>I'm writing a backend for an architecture that only has LOAD Instructions that first copy the old value of the target register in another register and after that load the provided value into the register. </div></div></blockquote><div>If I understand correctly, your load performs in parallel a copy and a load:</div><div>loadedVal<dstReg> load addr || <someReg> copy <dstReg> </div><div><br></div><div>If you forget about the copy part, you can simply model your load like this:</div><div><dstReg>, <someReg> load addr</div><div><br></div><div><someReg> will be an implicit definition and your good to go.</div><div>Obviously, this is not optimal.</div><div><br></div><div>Note that, the original code (dot = load addr) does not define <someReg>, so I guess you have some rules to assign it (like <sameReg> = <dstReg> + 1).</div><div>Therefore you may have to create a specific register class for that:</div><div><BigDstReg> load addr</div><div><dstReg> = BigDstReg.subIdx</div><div>And have a pattern using a EXTRACT_SUBREG (see ARM NEON).</div><div><br></div><div><br></div><div>Now, if you want to remember that <someReg> is not some trash value but contains the value of <dstReg> before this instruction, this is a different story.</div><div><br></div><div>The tricky part here is how do you tell the compiler where does dstReg come from? Indeed, you will know that, only when you will choose it.</div><div>You could make this choice a priori, but this is not optimal either.</div><div>Anyhow, I do not think there is a straight answer for your case.</div><div><br></div><div>Note: I was assuming that reg2 depends on the choice of reg1, if it is not the case, then, this is slightly a different story.</div><div><br></div><div>-Quentin</div><div><br></div><br><blockquote type="cite"><div dir="ltr">
<div> </div><div>Example of an addition:</div><div>load a, reg1; // -> copies old value of reg1 in reg2 and loads value from a into reg1</div><div>load b, reg1; // -> copies old value of reg1 in reg2 and loads value from b into reg1</div>
<div>add reg1, reg2; // adds values from a and b and saves the result into reg1</div><div> </div><div>So I need to describe the "load X, reg1" Instruction so that LLVM understands it correctly.</div><div>How can I do that in LLVM? Where is the best place to do that(TableGen, Instruction Selection, Instruction Lowering)?</div>
<div> </div><div>It would be fine if I could tell LLVM that reg2 is invalid after a load Operation, but I don#t know how to do that...</div><div>I tried the following in TableGen to let LLVM know that Resg2 isn't valid anymore after a load but it didn't produce the desired result:</div></div></blockquote><blockquote type="cite"><div dir="ltr"><div> </div><div>let Defs = [Regs2] in</div><div>{</div><div><font face="Consolas"><font face="Consolas"><p>  def LD: Inst<(outs Regs1:$dst), (ins MEM:$addr),</p><p>                       "load $addr, $dst;",</p><p>                       [(set Regs1:$dst, (load addr:$addr))]>;</p><p>}</p></font></font></div><div> </div><div>Thanks in advance,</div><div>Markus</div></div>
_______________________________________________<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">http://llvm.cs.uiuc.edu</a><br><a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br></blockquote></div><br></body></html>