<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Two options:<div class=""><br class=""></div><div class="">1) Do the instrumentation at the MachineInstr level but before register allocation and let normal regalloc handle things for you.</div><div class="">2) Do it late, being careful to use only a very small number of registers, and use the RegisterScavenger to fix up the allocation (ARM does this for materializing stack offset immediates, e.g.)</div><div class=""><br class=""></div><div class="">Option 1 is easier, but may not work well depending on the details of your instrumentation and whether later passes might muck about with them. You might be able to work around that w/ clever pseudo-instructions, though, so I’d definitely encourage experimenting a bit along this route. Option 2 allows doing things much later, but is trickier in general and more likely to expose odd corner cases both in the new code you’ll be inserting and in the rest of the backend.</div><div class=""><br class=""></div><div class="">-Jim</div><div class=""> </div><div class=""><div><blockquote type="cite" class=""><div class="">On Sep 23, 2014, at 8:14 AM, Rahman Lavaee <<a href="mailto:rlavaee@cs.rochester.edu" class="">rlavaee@cs.rochester.edu</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class=""><div class="">Thanks John,<br class=""><br class=""></div>The reason I want to do this is that register allocator works only on SSA form, and if you instrument regallocated code with non-regallocated machine instructions, then you cannot regallocate the result.<br class=""><br class=""></div>A workaround is to assign physical registers while doing the instrumentation, which I don't think is as easy as the above.<br class=""></div><div class="gmail_extra"><br class=""><div class="gmail_quote">On Tue, Sep 23, 2014 at 11:01 AM, John Criswell <span dir="ltr" class=""><<a href="mailto:jtcriswel@gmail.com" target="_blank" class="">jtcriswel@gmail.com</a>></span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 9/23/14, 10:52 AM, Rahman Lavaee wrote:<br class="">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br class="">
<br class="">
I'm wondering how I can convert "register allocated" code back to SSA form. I realized from MachineRegisterInfo.h that a function leaves SSA form only once and cannot be taken back to it.<br class="">
</blockquote>
<br class=""></span>
Are you wanting to put MachineInstr's into SSA form?  If you want to do that, you'll need to implement the SSA construction algorithm yourself so that it works on MachineInstrs.  Also, such a pass will need to work with virtual registers as you'll need an unlimited supply of temporary variables.  In essence, you'll be undoing register allocation.<br class="">
<br class="">
Can you describe why you want to put MachineInstrs into SSA form?  I suspect that putting MachineIntrs back into SSA form is not what you want to do.<br class="">
<br class="">
Regards,<br class="">
<br class="">
John Criswell<br class="">
<br class="">
</blockquote></div><br class=""></div>
_______________________________________________<br class="">LLVM Developers mailing list<br class=""><a href="mailto:LLVMdev@cs.uiuc.edu" class="">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" class="">http://llvm.cs.uiuc.edu</a><br class=""><a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" class="">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br class=""></div></blockquote></div><br class=""></div></body></html>