<div dir="ltr"><div style>If all your IR is in a single module, and you're willing to reoptimize the entire module every time you want to do inlining, you can use the existing machinery pretty easily.</div><div style><br>

</div><div style>But unless those are both true, the situation is more complicated: my understanding is the inlining machinery (at least for non-builtins, not sure how those work) assumes that 1) you're inlining functions from the same module, and 2) you're optimizing an entire module at a time.  I ended up writing a custom inlining FunctionPass: I initialize an InlineCostAnalysis object (which ends up being quite hacky since it expects to be part of a passmanager even though that's not what we want here), use that to determine when to inline, call llvm::InlineFunction() when it says I should, and then use a custom ValueMaterializer to remap references from objects in the other module (ex global variables, function declarations, etc) to the correct references in the current module.</div>

</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Jan 6, 2014 at 9:46 AM, Timothy Baldridge <span dir="ltr"><<a href="mailto:tbaldridge@gmail.com" target="_blank">tbaldridge@gmail.com</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">Let's say I'm using LLVM to JIT compile a function. Inside that function I make a call to a runtime method in a currently loaded library. Is there any way to get LLVM to inline that function call?<br>


<br>As an example, let's say my jitted function calls memcpy, can I get memcpy's body inlined somehow? Or can that only be done via lto and aot compilation?<br><br>Thanks,<br><br>Timothy Baldridge</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>