<div dir="ltr">You might want <a href="http://llvm.org/doxygen/Cloning_8h.html" target="_blank">http://llvm.org/doxygen/Cloning_8h.html</a> to copy the Module before you link it in?<br><br>Looks like this functionality was removed a few years ago because it had bitrotted/was broken: <a href="http://llvm.org/viewvc/llvm-project?view=revision&revision=220741">http://llvm.org/viewvc/llvm-project?view=revision&revision=220741</a> <br><br>- Dave<br><br><div class="gmail_quote"><div dir="ltr">On Mon, Nov 12, 2018 at 10:10 PM Riyaz Puthiyapurayil via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div lang="EN-US" link="#0563C1" vlink="#954F72">
<div class="m_-7602404520629734464m_199041333526208788WordSection1">
<p class="MsoNormal">We have some LLVM 3.4 based code that we are now trying to upgrade. There used to be the following API in LLVM 3.4 which is now gone:<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">Linker::LinkModules(dst, src, Linker::PreserveSource, &error);<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">The current function Linker::linkModules wants to take ownership of src and destroys it on return.<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">In our use case, src is a module containing a predefined set of inline functions. We link src with dst, optimize dst, emit object code for dst, destroy dst and then create a new dst module from our code generator and repeat this process.
 The src module is a constant throughout. What is the recommended way of doing something like this in current version of LLVM? Is there a way of copying only what is needed from src into dst and then updating all the call instructions in dst that refer to src
 functions? <u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">Or do I just have to write something like this myself and not use linkModules?<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">/Riyaz<u></u><u></u></p>
</div>
</div>

_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">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>
</blockquote></div></div>