[Vm-dev] An event driven Squeak VM

Eliot Miranda eliot.miranda at gmail.com
Wed Nov 11 03:09:28 UTC 2009


On Tue, Nov 10, 2009 at 6:45 PM, John M McIntosh <
johnmci at smalltalkconsulting.com> wrote:

>
> On 2009-11-10, at 6:17 PM, Eliot Miranda wrote:
>
>  With the threaded Squeak VM I'm working on one can go one better and have
>> a number of image-level processes that block in the FFI and a number of
>> worker threads in the VM that block on OS semaphores waiting for the VM to
>> give them something to do.
>>
>
> Obviously now you have to give a bit more details on this. Is it like the
> hydra VM? Or entirely different?


Orthogonal, in that it might work well with Hydra.  The basic scheme is to
have a natively multi-threaded VM that is not concurrent.  Multiple native
threads share the Vm such that there is only one thread running Vm code at
any one time.  This the VM can make non-blocking calls to the outside world
but neither the VM nor the image need to be modified to handle true
concurrency.  This is the same basic architecture as in the Strongtalk and
V8 VMs and notably in David Simmons' various Smalltalk VMs.

The cool thing about the system is David's design.  He's been extremely
generous in explaining to me his scheme, which is extremely efficient.  I've
merely implemented this scheme in the context of the Cog VM.  The idea is to
arrange that a threaded callout is so cheap that any and all callouts can be
threaded.  This is done by arranging that a callout does not switch to
another thread, instead the thread merely "disowns" the VM.  It is the job
of a background heartbeat thread to detect tat a callout is long-runnijng
and that the VM has effectively blocked.  The heartbeat then activates a new
thread to run the VM and the new thread attempts to take ownership and will
run Smalltalk code if it succeeds.

On return form a callout a thread must attempt to take ownership of the VM,
and if it fails, add itself to a queue of threads waiting to take back the
VM and then wait on an OS semaphore until the thread owning the VM decides
to give up ownership to it.

Every VM thread has a unique index.  The vmOwner variable holds the index of
the owning thread or 0 if the VM is unowned.  To disown the VM all a thread
has to do is zero vmOwner, while remembering the value of vmOwner in a
temporary.  To take ownership a thread must use a low-level lock to gain
exclusive access to vmOwner, and if vmOwner is zero, set it back to the
thread's index, and release the lock.  If it finds vmOwner is non-zero it
releases the lock and enters the wanting ownership queue.

In the Cog VM the heartbeat beats at 1KHz, so any call that takes less than
0.5ms is likely to complete without the heartbeat detecting that the VM is
blocked.  So any and all callouts can be threaded.  Quite brilliant.  All
the work of changing the active process when switching between threads is
deferred from callout time to when a different thread takes ownership of the
VM, saving the VM state for the process that surrendered the VM and
installing its own.

The major wrinkle in this is that in David's VM he has a pinning garbage
collector which arranges that any arguments passed out through the FFI are
implicitly pinned.  We don't yet have a pinning garbage collector.  I do
plan to do one.  But in the interim one quick hack, a neat idea of Andreas',
is to fail calls that attempt to pass objects in new space, allowing only
old objects to be passed, and to prevent the full garbage collector from
running while any threaded calls are in progress.

Having cheap non-blocking calls allows e.g.
- the Hydra inter-VM channels to be implemented in Smalltalk code above the
threaded FFI
- socket calls to be blocking calls in the image
- Smalltalk code to call select/poll/WaitForMultipleEvents

There are still plenty of sticky issues to do with e.g. identifying threads
that can do specific functions, such as the UI thread, and issuing OpenGL
calls from the right thread, etc, etc.  But these are all doable, if
potentially tricky to get right.  If this kind of code does migrate from the
VM innards up to the image I think that's a really good thing (tm) but one
will really have to know what one is doing to get it right.

HTH
eliot

>
>
>
> --
> ===========================================================================
> John M. McIntosh <johnmci at smalltalkconsulting.com>   Twitter:
>  squeaker68882
> Corporate Smalltalk Consulting Ltd.  http://www.smalltalkconsulting.com
> ===========================================================================
>
>
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/vm-dev/attachments/20091110/5f53e821/attachment-0001.htm


More information about the Vm-dev mailing list