<div dir="ltr">Adding Lang here in case he's got some insight.<br><br>I take it the system you're targeting doesn't have the memory limitations that some systems have, where once memory is set executable, it can never be written to? & so you'd like to write some code into a page, execute it, write some more code into the same page and have that execute too?<br><br>(I don't know teh JIT architecture well enough to know if that's supported, or if I'm accurately understanding your situation, etc)<br><br><div class="gmail_quote"><div dir="ltr">On Thu, Nov 1, 2018 at 11:49 PM Gaier, Bjoern 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_4032642392748750136m_6418038251297209284WordSection1">
<p class="MsoNormal">Hello everyone,<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">I want to use the LLVM to write a JIT client, that works with shared memory. Currently I proceed as following:<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">I wrote an own class that inherits "<i>RTDyldMemoryManager</i>". The functions "<i>allocateCodeSection</i>" and "<i>allocateDataSection</i>" are allocating local non-shared memory. I store there addresses in a std::vector.<u></u><u></u></p>
<p class="MsoNormal">When the function "<i>notifyObjectLoaded</i>" is invoked, I allocate the shared memory - I'm getting the size from the local non-shared memory - and apply the address mapping.<u></u><u></u></p>
<p class="MsoNormal">When the function "<i>finalizeMemory</i>" is invoked I copy the code from the local non-shared memory to the shared memory but only one time.
<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">So far so good, this works actually good! Yippie x3<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">BUT... There is one problem. The shared memory can't be dynamical adjusted. So if I add another module to the current module, then I would go through this process again! Not the "<i>finalizeMemory</i>" process though, but I would allocate
 another shared memory. This is not what I want! Currently I use the linker first, to work around this problem, but this will not help me if I add object files or libraries to the JIT process - or does it?<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">So is there any way to work around this?<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">Kind greetings<u></u><u></u></p>
<p class="MsoNormal">Björn<u></u><u></u></p>
</div>
Als GmbH eingetragen im Handelsregister Bad Homburg v.d.H. HRB 9816, USt.ID-Nr. DE 114 165 789 Geschäftsführer: Dr. Hiroshi Nakamura, Dr. Robert Plank, Markus Bode, Heiko Lampert, Takashi Nagano, Takeshi Fukushima. Junichi Tajika
</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>