<div dir="ltr">Hi,<div>The patchpoint intrinsic just takes a pointer to the function it should call. It doesn't care where the address points to e.g. could by a function in the same module or the address of some functions inside the application. When the machine code gets emitted the patchpoint will get replaced with a call instruction to the address specified inside the intrinsic before + additional nop instructions depending on the numBytes param of the patchpoint. So you don't actually have to patch the patchpoint if calling the supplied address is fine.</div><div><br></div><div>Pyston uses the patchpoint intrinsic to emit a call to the slowpath function (e.g. a function which can handle all object types). This function when called will determine from where it got called to retrieve the corresponding stackmap entry and determine the actual types of the args it got called. It will then replace the call+nop from the patchpoint with a type check and a call to the faster type dependent function and a call to the slowpath function in case the types change. You will have to do the patching on you own.</div><div><br></div><div>Hope this helps.</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, May 30, 2015 at 3:24 PM, <a href="mailto:marwayusuf@feng.bu.edu.eg">marwayusuf@feng.bu.edu.eg</a> <span dir="ltr"><<a href="mailto:marwayusuf@feng.bu.edu.eg" target="_blank">marwayusuf@feng.bu.edu.eg</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 style="font-size:12pt;color:#000000;background-color:#ffffff;font-family:Calibri,Arial,Helvetica,sans-serif">
<p>Dear All</p>
<p>I have some questions about how to use patchpoint intrinsic:<br>
</p>
<p>1- The function that is provided as argument to the intrinsic call, where does it belong? I'm making a pass to change a given IR file and add call to patchpoint. Where should I put this function? In the pass or in the same IR file or in another IR and include
 it or what?<br>
</p>
<p>2- When actually this code is patched into the original code and executed? Upon some condition or signal or it's patched by default whenever it's met in code? If it's patched automatically, what is its advantage then?<br>
</p>
<p>Thanks in advance.<br>
</p>
<p><br>
</p>
<div>
<div><font size="2"><span style="font-size:10pt">
<div>Regards,<br>
Marwa Yusuf<br>
Teaching Assistant - Computer Engineering Department<br>
Faculty of Engineering - Benha University<br>
E-JUST MSc Student<br>
Computer Science & Engineering Dept.</div>
</span></font></div>
</div>
</div>
</div>

<br>_______________________________________________<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" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
<br></blockquote></div><br></div>