<p dir="ltr">Is it really necessary? </p>
<p dir="ltr">Why not handle module loading in the primordial thread, which would be the first boot thread for global data structures and then the boot thread per VM for concurrent initialization.</p>
<p dir="ltr">The programmer can then load modules explicitly per VM. All that is needed is an API to select the target VM.</p>
<p dir="ltr">-- vyzo</p>
<p dir="ltr">PS: a performance related suggestion: use __thread for TLS with gcc/glibc if you are planning a 1-1 VM to OS thread mapping (instead of pthread tls).<br>
</p>
<div class="gmail_quote">On Nov 5, 2013 9:11 AM, "Marc Feeley" <<a href="mailto:feeley@iro.umontreal.ca">feeley@iro.umontreal.ca</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Currently a Gambit executable program is a list of modules, with the "main" program as the last module.  During the setup phase (function ___setup) these modules are initialized sequentially (as though they were "load"ed in turn).  For example, the Gambit interpreter, gsi, consists of these modules ("_kernel" "_system" "_num" "_std" "_eval" "_io" "_nonstd" "_thread" "_repl" "_gsilib" "_gsi").  The module "_gsi" contains the code which starts the REPL.<br>

<br>
This is fine in the context of a single Gambit VM instance per OS process.  However, for the upcoming multithreaded Gambit, I want to support multiple VM instances per OS process, so the current linking model is not ideal.  If the current linking model isn't changed, each VM instance will have to run the same program (requiring all VMs to initialize all the modules of the program), and the programmer will have to create custom logic in the "main" program to select the appropriate VM behaviour.  This is clumsy.<br>

<br>
So I'm considering changing the linker data structures to record module dependencies.  Something like "before initializing module A, it is necessary to initialize modules B, C, and D".  An executable program would thus be a set of modules with dependencies, and the name of the main module.  The setup phase would do a depth first traversal of the dependency graph starting at the main module.<br>

<br>
This would enable a few interesting features:<br>
<br>
1) Allow the instantiation of a VM with a "main" module different from the other VMs, e.g. (start-new-vm "other-main").<br>
<br>
2) Lazy initialization of modules (only the modules actually relevant to the main program need to be initialized).<br>
<br>
3) Multiple modules could be bundled this way in a single executable program.  The "load" procedure could be changed to lookup modules in the bundled set before going out to the file system to dynamically load a .o1 file.  This would simplify the installation of multi-module applications and give better startup performance.<br>

<br>
Note that for this to work, it will be necessary for the compiler to record module dependencies with each module and to output these dependencies in the linker data structures.  A new special form, such as (depends-on <module>), will have to be added so that the programmer can express initialization dependencies in the source code.  For consistency, the interpreter will also have to support this form.<br>

<br>
Before going forward with this change, I would like to have some feedback.  Do you see problems with this or suggestions?<br>
<br>
Marc<br>
<br>
_______________________________________________<br>
Gambit-list mailing list<br>
<a href="mailto:Gambit-list@iro.umontreal.ca">Gambit-list@iro.umontreal.ca</a><br>
<a href="https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list" target="_blank">https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list</a><br>
</blockquote></div>