[Vm-dev] [commit][2854] Source per VMMaker-dtl.339 (VMMaker 4.13.1)

David T. Lewis lewis at mail.msen.com
Wed Jan 29 00:48:42 UTC 2014


On Tue, Jan 28, 2014 at 01:43:48PM -0800, Eliot Miranda wrote:
>  
> Hi David,
> 
>     any objection to using primitive 146 for allInstances and 147 for
> allObjects?  I like using numbers for the core primitives and these seem
> like core ones.

My inclination would be to not add anything as a numbered primitive unless
truly necessary. Any reasonably evolved platform will be able to support
named primitives, and the numbered primitives are a compatibility problem
waiting to happen. So why not make life easy and use named primitives where
possible?

> There's a mysterious comment in initializePrimitiveTable
> re these two numbers:
> 
> "NOTE: When removing the obsolete indexed primitives,
> the following two should go become #primitiveIntegerAt / atPut"
> (146 primitiveFail) "primitiveReadJoystick"
> (147 primitiveFail) "primitiveWarpBits"
> 
> but AFAICT that's obsolete.  Am I right to think this?

They are certainly obsolete, but the comment is worth a further look.
We have implementations of primitiveIntegerAt and primitiveIntegerAtPut,
but as far as I can see these are not used in the vanilla Squeak image.
Checking a Squeak 3.6 image, it looks like these primitives were written
by Andreas, so I'm guessing that the comment in initializePrimitiveTable
may be his. I suspect that he may have had a reason for wanting them to
be numbered primitives, but I can't say why.

Dave

> 
> 
> On Mon, Jan 27, 2014 at 12:38 PM, <commits at squeakvm.org> wrote:
> 
> >
> > Revision: 2854
> > Author:   lewis
> > Date:     2014-01-27 12:38:08 -0800 (Mon, 27 Jan 2014)
> > Log Message:
> > -----------
> > Source per VMMaker-dtl.339 (VMMaker 4.13.1)
> >
> > Add primitiveAllObjects, answering an array of all objects in the object
> > memory at the time of calling the primitive, possibly excluding those that
> > were garbage collected as a side effect of allocating the result array for
> > the primitive.
> >
> > Fix comment for ObjectMemory>>lengthOf:baseHeader:format: to indicate that
> > length includes the fixed fields as well as indexable fields (the length
> > of an OrderedCollection instance is 3, not 0).
> >
> > Add shorten:toIndexableSize: with error checks and correct size logic for
> > long arrays. Change the return value to be the number of bytes released
> > to free memory, allowing sender to test for success. The implementation
> > for ClassicObjectMemory is tested for both 32-bit and 64-bit object
> > memories.
> > The implementation for NewObjectMemory is based on this, but has not been
> > tested.
> >
> > Add primitiveTestShortenIndexableSize to allow shorten:toIndexableSize:
> > to be exercised from the image. This primitive is for testing purposes
> > only and will probably be removed in the future.
> >
> > FT2Plugin to external plugins in VMMakerTool class>>defaultUnixSpec because
> > some platforms (e.g. OS X) may not have the runtime library conveniently
> > available.
> >
> > Modified Paths:
> > --------------
> >     trunk/src/ckformat.c
> >     trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c
> >     trunk/src/plugins/AioPlugin/AioPlugin.c
> >     trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c
> >     trunk/src/plugins/B2DPlugin/B2DPlugin.c
> >     trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c
> >     trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c
> >     trunk/src/plugins/BitBltPlugin/BitBltPlugin.c
> >     trunk/src/plugins/CameraPlugin/CameraPlugin.c
> >     trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c
> >     trunk/src/plugins/CroquetPlugin/CroquetPlugin.c
> >     trunk/src/plugins/DBusPlugin/DBusPlugin.c
> >     trunk/src/plugins/DSAPrims/DSAPrims.c
> >     trunk/src/plugins/DropPlugin/DropPlugin.c
> >     trunk/src/plugins/FFTPlugin/FFTPlugin.c
> >     trunk/src/plugins/FT2Plugin/FT2Plugin.c
> >     trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c
> >     trunk/src/plugins/FilePlugin/FilePlugin.c
> >     trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c
> >     trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c
> >     trunk/src/plugins/GeniePlugin/GeniePlugin.c
> >     trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c
> >     trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c
> >     trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c
> >     trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c
> >     trunk/src/plugins/Klatt/Klatt.c
> >     trunk/src/plugins/LargeIntegers/LargeIntegers.c
> >     trunk/src/plugins/LocalePlugin/LocalePlugin.c
> >     trunk/src/plugins/MIDIPlugin/MIDIPlugin.c
> >     trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c
> >     trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c
> >     trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c
> >     trunk/src/plugins/RePlugin/RePlugin.c
> >     trunk/src/plugins/RomePlugin/RomePlugin.c
> >     trunk/src/plugins/ScratchPlugin/ScratchPlugin.c
> >     trunk/src/plugins/SecurityPlugin/SecurityPlugin.c
> >     trunk/src/plugins/SerialPlugin/SerialPlugin.c
> >     trunk/src/plugins/SocketPlugin/SocketPlugin.c
> >     trunk/src/plugins/SoundCodecPrims/SoundCodecPrims.c
> >     trunk/src/plugins/SoundGenerationPlugin/SoundGenerationPlugin.c
> >     trunk/src/plugins/SoundPlugin/SoundPlugin.c
> >     trunk/src/plugins/Squeak3D/Squeak3D.c
> >     trunk/src/plugins/SqueakFFIPrims/SqueakFFIPrims.c
> >     trunk/src/plugins/SqueakSSL/SqueakSSL.c
> >     trunk/src/plugins/StarSqueakPlugin/StarSqueakPlugin.c
> >     trunk/src/plugins/UUIDPlugin/UUIDPlugin.c
> >     trunk/src/plugins/UnicodePlugin/UnicodePlugin.c
> >     trunk/src/plugins/UnixOSProcessPlugin/UnixOSProcessPlugin.c
> >     trunk/src/plugins/WeDoPlugin/WeDoPlugin.c
> >     trunk/src/plugins/XDisplayControlPlugin/XDisplayControlPlugin.c
> >     trunk/src/plugins/ZipPlugin/ZipPlugin.c
> >     trunk/src/vm/interp.c
> >     trunk/src/vm/interp.h
> >     trunk/src/vm/sqNamedPrims.h
> >
> > Modified: trunk/src/ckformat.c
> > ===================================================================
> > --- trunk/src/ckformat.c        2014-01-25 20:25:52 UTC (rev 2853)
> > +++ trunk/src/ckformat.c        2014-01-27 20:38:08 UTC (rev 2854)
> > @@ -5,7 +5,7 @@
> >  /* Usage: ckformat imageFileName */
> >
> >  /* --- DO NOT EDIT THIS FILE --- */
> > -/* --- Automatically generated from class ImageFormat
> > 2014-01-20T19:15:40.803+01:00--- */
> > +/* --- Automatically generated from class ImageFormat
> > 2014-01-27T15:24:21.387+01:00--- */
> >  /* --- Source code is in package ImageFormat in the VMMaker repository
> > --- */
> >  /* --- DO NOT EDIT THIS FILE --- */
> >
> >
> > Modified: trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:30 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:11 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       ADPCMCodecPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       ADPCMCodecPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "ADPCMCodecPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "ADPCMCodecPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -70,9 +70,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "ADPCMCodecPlugin 20 January 2014 (i)"
> > +       "ADPCMCodecPlugin 27 January 2014 (i)"
> >  #else
> > -       "ADPCMCodecPlugin 20 January 2014 (e)"
> > +       "ADPCMCodecPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/AioPlugin/AioPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/AioPlugin/AioPlugin.c     2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/AioPlugin/AioPlugin.c     2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,6 +1,6 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:40 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:20 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> >         UnixAioPlugin VMConstruction-Plugins-AioPlugin-eem.15 uuid:
> > 0029df1c-3720-4b61-8579-4851417d24a7
> >   */
> > @@ -88,9 +88,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "AioPlugin 20 January 2014 (i)"
> > +       "AioPlugin 27 January 2014 (i)"
> >  #else
> > -       "AioPlugin 20 January 2014 (e)"
> > +       "AioPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c
> > ===================================================================
> > --- trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:30 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:11 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       AsynchFilePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       AsynchFilePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "AsynchFilePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "AsynchFilePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -67,9 +67,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "AsynchFilePlugin 20 January 2014 (i)"
> > +       "AsynchFilePlugin 27 January 2014 (i)"
> >  #else
> > -       "AsynchFilePlugin 20 January 2014 (e)"
> > +       "AsynchFilePlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static void * sCOAFfn;
> >
> > Modified: trunk/src/plugins/B2DPlugin/B2DPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/B2DPlugin/B2DPlugin.c     2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/B2DPlugin/B2DPlugin.c     2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:32 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:12 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       BalloonEnginePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       BalloonEnginePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "BalloonEnginePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "BalloonEnginePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -447,9 +447,9 @@
> >  static void * loadBBFn;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "B2DPlugin 20 January 2014 (i)"
> > +       "B2DPlugin 27 January 2014 (i)"
> >  #else
> > -       "B2DPlugin 20 January 2014 (e)"
> > +       "B2DPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static int* objBuffer;
> >
> > Modified: trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c
> > 2014-01-25 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c
> > 2014-01-27 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:36 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:16 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       B3DAcceleratorPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       B3DAcceleratorPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "B3DAcceleratorPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "B3DAcceleratorPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -107,9 +107,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "B3DAcceleratorPlugin 20 January 2014 (i)"
> > +       "B3DAcceleratorPlugin 27 January 2014 (i)"
> >  #else
> > -       "B3DAcceleratorPlugin 20 January 2014 (e)"
> > +       "B3DAcceleratorPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c 2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c 2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:30 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:11 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       BMPReadWriterPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       BMPReadWriterPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "BMPReadWriterPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "BMPReadWriterPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -58,9 +58,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "BMPReadWriterPlugin 20 January 2014 (i)"
> > +       "BMPReadWriterPlugin 27 January 2014 (i)"
> >  #else
> > -       "BMPReadWriterPlugin 20 January 2014 (e)"
> > +       "BMPReadWriterPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/BitBltPlugin/BitBltPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/BitBltPlugin/BitBltPlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/BitBltPlugin/BitBltPlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:32 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:13 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       BitBltSimulation VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       BitBltSimulation VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "BitBltSimulation VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "BitBltSimulation VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -257,9 +257,9 @@
> >  };
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "BitBltPlugin 20 January 2014 (i)"
> > +       "BitBltPlugin 27 January 2014 (i)"
> >  #else
> > -       "BitBltPlugin 20 January 2014 (e)"
> > +       "BitBltPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static sqInt nWords;
> >
> > Modified: trunk/src/plugins/CameraPlugin/CameraPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/CameraPlugin/CameraPlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/CameraPlugin/CameraPlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:36 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:16 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       CameraPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       CameraPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "CameraPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "CameraPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -64,9 +64,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "CameraPlugin 20 January 2014 (i)"
> > +       "CameraPlugin 27 January 2014 (i)"
> >  #else
> > -       "CameraPlugin 20 January 2014 (e)"
> > +       "CameraPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified:
> > trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c
> > 2014-01-25 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c
> > 2014-01-27 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:36 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:16 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       ClipboardExtendedPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       ClipboardExtendedPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "ClipboardExtendedPlugin VMMaker-dtl.338
> > uuid: 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "ClipboardExtendedPlugin VMMaker-dtl.339
> > uuid: e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -61,9 +61,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "ClipboardExtendedPlugin 20 January 2014 (i)"
> > +       "ClipboardExtendedPlugin 27 January 2014 (i)"
> >  #else
> > -       "ClipboardExtendedPlugin 20 January 2014 (e)"
> > +       "ClipboardExtendedPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/CroquetPlugin/CroquetPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/CroquetPlugin/CroquetPlugin.c     2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/CroquetPlugin/CroquetPlugin.c     2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:33 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:13 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       CroquetPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       CroquetPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "CroquetPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "CroquetPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -73,9 +73,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "CroquetPlugin 20 January 2014 (i)"
> > +       "CroquetPlugin 27 January 2014 (i)"
> >  #else
> > -       "CroquetPlugin 20 January 2014 (e)"
> > +       "CroquetPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/DBusPlugin/DBusPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/DBusPlugin/DBusPlugin.c   2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/DBusPlugin/DBusPlugin.c   2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,6 +1,6 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:37 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:17 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> >         DBusPlugin DBus-Plugin-dtl.35 uuid:
> > 2ae30f08-4793-4acb-876b-c443a5f5e665
> >   */
> > @@ -143,9 +143,9 @@
> >  static DBusMessageIter messageIter[DBUS_MAXIMUM_TYPE_RECURSION_DEPTH];
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "DBusPlugin 20 January 2014 (i)"
> > +       "DBusPlugin 27 January 2014 (i)"
> >  #else
> > -       "DBusPlugin 20 January 2014 (e)"
> > +       "DBusPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static DBusMessage* writeMessage;
> >
> > Modified: trunk/src/plugins/DSAPrims/DSAPrims.c
> > ===================================================================
> > --- trunk/src/plugins/DSAPrims/DSAPrims.c       2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/DSAPrims/DSAPrims.c       2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:33 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:13 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       DSAPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       DSAPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "DSAPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "DSAPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -67,9 +67,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "DSAPrims 20 January 2014 (i)"
> > +       "DSAPrims 27 January 2014 (i)"
> >  #else
> > -       "DSAPrims 20 January 2014 (e)"
> > +       "DSAPrims 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static sqInt remainderDigitCount;
> >
> > Modified: trunk/src/plugins/DropPlugin/DropPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/DropPlugin/DropPlugin.c   2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/DropPlugin/DropPlugin.c   2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:33 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:13 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       DropPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       DropPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "DropPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "DropPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -62,9 +62,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "DropPlugin 20 January 2014 (i)"
> > +       "DropPlugin 27 January 2014 (i)"
> >  #else
> > -       "DropPlugin 20 January 2014 (e)"
> > +       "DropPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/FFTPlugin/FFTPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/FFTPlugin/FFTPlugin.c     2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/FFTPlugin/FFTPlugin.c     2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:33 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:13 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       FFTPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       FFTPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "FFTPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "FFTPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -68,9 +68,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "FFTPlugin 20 January 2014 (i)"
> > +       "FFTPlugin 27 January 2014 (i)"
> >  #else
> > -       "FFTPlugin 20 January 2014 (e)"
> > +       "FFTPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static sqInt nu;
> >
> > Modified: trunk/src/plugins/FT2Plugin/FT2Plugin.c
> > ===================================================================
> > --- trunk/src/plugins/FT2Plugin/FT2Plugin.c     2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/FT2Plugin/FT2Plugin.c     2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,4 +1,4 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:33 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:17 pm */
> >  /* Automatically generated by
> >         FT2PluginCodeGenerator * FreeType-nice.442 uuid:
> > 9895a884-7d42-4783-9fb8-1a71ef244e16
> >     from
> > @@ -121,9 +121,9 @@
> >  static FT_Library library;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "FT2Plugin 20 January 2014 (i)"
> > +       "FT2Plugin 27 January 2014 (i)"
> >  #else
> > -       "FT2Plugin 20 January 2014 (e)"
> > +       "FT2Plugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c   2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c   2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:37 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:17 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       FileCopyPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       FileCopyPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "FileCopyPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "FileCopyPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -57,9 +57,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "FileCopyPlugin 20 January 2014 (i)"
> > +       "FileCopyPlugin 27 January 2014 (i)"
> >  #else
> > -       "FileCopyPlugin 20 January 2014 (e)"
> > +       "FileCopyPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/FilePlugin/FilePlugin.c
> > ===================================================================
> > --- trunk/src/plugins/FilePlugin/FilePlugin.c   2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/FilePlugin/FilePlugin.c   2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:33 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:13 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       FilePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       FilePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "FilePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "FilePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -100,9 +100,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "FilePlugin 20 January 2014 (i)"
> > +       "FilePlugin 27 January 2014 (i)"
> >  #else
> > -       "FilePlugin 20 January 2014 (e)"
> > +       "FilePlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static void * sCCPfn;
> >
> > Modified: trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:33 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:13 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       FloatArrayPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       FloatArrayPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "FloatArrayPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "FloatArrayPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -72,9 +72,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "FloatArrayPlugin 20 January 2014 (i)"
> > +       "FloatArrayPlugin 27 January 2014 (i)"
> >  #else
> > -       "FloatArrayPlugin 20 January 2014 (e)"
> > +       "FloatArrayPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c 2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c 2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:34 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:14 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       FloatMathPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       FloatMathPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "FloatMathPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "FloatMathPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -79,9 +79,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "FloatMathPlugin 20 January 2014 (i)"
> > +       "FloatMathPlugin 27 January 2014 (i)"
> >  #else
> > -       "FloatMathPlugin 20 January 2014 (e)"
> > +       "FloatMathPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/GeniePlugin/GeniePlugin.c
> > ===================================================================
> > --- trunk/src/plugins/GeniePlugin/GeniePlugin.c 2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/GeniePlugin/GeniePlugin.c 2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:34 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:14 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       GeniePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       GeniePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "GeniePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "GeniePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -61,9 +61,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "GeniePlugin v2.0 20 January 2014 (i)"
> > +       "GeniePlugin v2.0 27 January 2014 (i)"
> >  #else
> > -       "GeniePlugin v2.0 20 January 2014 (e)"
> > +       "GeniePlugin v2.0 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:38 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:18 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       HostWindowPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       HostWindowPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "HostWindowPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "HostWindowPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -66,9 +66,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "HostWindowPlugin 20 January 2014 (i)"
> > +       "HostWindowPlugin 27 January 2014 (i)"
> >  #else
> > -       "HostWindowPlugin 20 January 2014 (e)"
> > +       "HostWindowPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c
> > ===================================================================
> > --- trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c
> > 2014-01-25 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c
> > 2014-01-27 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:34 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:14 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       JPEGReadWriter2Plugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       JPEGReadWriter2Plugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "JPEGReadWriter2Plugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "JPEGReadWriter2Plugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -68,9 +68,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "JPEGReadWriter2Plugin 20 January 2014 (i)"
> > +       "JPEGReadWriter2Plugin 27 January 2014 (i)"
> >  #else
> > -       "JPEGReadWriter2Plugin 20 January 2014 (e)"
> > +       "JPEGReadWriter2Plugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:34 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:14 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       JPEGReaderPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       JPEGReaderPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "JPEGReaderPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "JPEGReaderPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -136,9 +136,9 @@
> >  static sqInt jsReadLimit;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "JPEGReaderPlugin 20 January 2014 (i)"
> > +       "JPEGReaderPlugin 27 January 2014 (i)"
> >  #else
> > -       "JPEGReaderPlugin 20 January 2014 (e)"
> > +       "JPEGReaderPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static int *residuals;
> >
> > Modified: trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c
> > 2014-01-25 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c
> > 2014-01-27 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:34 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:14 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       JoystickTabletPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       JoystickTabletPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "JoystickTabletPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "JoystickTabletPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -62,9 +62,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "JoystickTabletPlugin 20 January 2014 (i)"
> > +       "JoystickTabletPlugin 27 January 2014 (i)"
> >  #else
> > -       "JoystickTabletPlugin 20 January 2014 (e)"
> > +       "JoystickTabletPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/Klatt/Klatt.c
> > ===================================================================
> > --- trunk/src/plugins/Klatt/Klatt.c     2014-01-25 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/Klatt/Klatt.c     2014-01-27 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:34 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:14 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       KlattSynthesizerPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       KlattSynthesizerPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "KlattSynthesizerPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "KlattSynthesizerPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -155,9 +155,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "Klatt 20 January 2014 (i)"
> > +       "Klatt 27 January 2014 (i)"
> >  #else
> > -       "Klatt 20 January 2014 (e)"
> > +       "Klatt 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static float nlast;
> >
> > Modified: trunk/src/plugins/LargeIntegers/LargeIntegers.c
> > ===================================================================
> > --- trunk/src/plugins/LargeIntegers/LargeIntegers.c     2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/LargeIntegers/LargeIntegers.c     2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:35 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:15 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       LargeIntegersPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       LargeIntegersPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "LargeIntegersPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "LargeIntegersPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> >
> > Modified: trunk/src/plugins/LocalePlugin/LocalePlugin.c
> > ===================================================================
> > --- trunk/src/plugins/LocalePlugin/LocalePlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/LocalePlugin/LocalePlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:35 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:15 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       LocalePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       LocalePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "LocalePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "LocalePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -71,9 +71,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "LocalePlugin 20 January 2014 (i)"
> > +       "LocalePlugin 27 January 2014 (i)"
> >  #else
> > -       "LocalePlugin 20 January 2014 (e)"
> > +       "LocalePlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/MIDIPlugin/MIDIPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/MIDIPlugin/MIDIPlugin.c   2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/MIDIPlugin/MIDIPlugin.c   2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:39 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:19 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       MIDIPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       MIDIPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "MIDIPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "MIDIPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -70,9 +70,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "MIDIPlugin 20 January 2014 (i)"
> > +       "MIDIPlugin 27 January 2014 (i)"
> >  #else
> > -       "MIDIPlugin 20 January 2014 (e)"
> > +       "MIDIPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c
> > ===================================================================
> > --- trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c 2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c 2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:35 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:15 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       Matrix2x3Plugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       Matrix2x3Plugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "Matrix2x3Plugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "Matrix2x3Plugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -74,9 +74,9 @@
> >  static double m23ResultY;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "Matrix2x3Plugin 20 January 2014 (i)"
> > +       "Matrix2x3Plugin 27 January 2014 (i)"
> >  #else
> > -       "Matrix2x3Plugin 20 January 2014 (e)"
> > +       "Matrix2x3Plugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c
> > ===================================================================
> > --- trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c 2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c 2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:35 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:15 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       MiscPrimitivePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       MiscPrimitivePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "MiscPrimitivePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "MiscPrimitivePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -70,9 +70,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "MiscPrimitivePlugin 20 January 2014 (i)"
> > +       "MiscPrimitivePlugin 27 January 2014 (i)"
> >  #else
> > -       "MiscPrimitivePlugin 20 January 2014 (e)"
> > +       "MiscPrimitivePlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c
> > ===================================================================
> > --- trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c 2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c 2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:39 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:19 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       Mpeg3Plugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       Mpeg3Plugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "Mpeg3Plugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "Mpeg3Plugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -101,9 +101,9 @@
> >  static sqInt maximumNumberOfFilesToWatch;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "Mpeg3Plugin 20 January 2014 (i)"
> > +       "Mpeg3Plugin 27 January 2014 (i)"
> >  #else
> > -       "Mpeg3Plugin 20 January 2014 (e)"
> > +       "Mpeg3Plugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static mpeg3_t *mpegFiles[1024+1];
> >
> > Modified: trunk/src/plugins/RePlugin/RePlugin.c
> > ===================================================================
> > --- trunk/src/plugins/RePlugin/RePlugin.c       2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/RePlugin/RePlugin.c       2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:35 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:15 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       RePlugin VMMaker-dtl.338 uuid: 29946156-9015-45c9-83a2-c12d43f67ece
> > +       RePlugin VMMaker-dtl.339 uuid: e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "RePlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "RePlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -79,9 +79,9 @@
> >  static sqInt matchFlags;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "RePlugin 20 January 2014 (i)"
> > +       "RePlugin 27 January 2014 (i)"
> >  #else
> > -       "RePlugin 20 January 2014 (e)"
> > +       "RePlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static int netMemory = 0;
> >
> > Modified: trunk/src/plugins/RomePlugin/RomePlugin.c
> > ===================================================================
> > --- trunk/src/plugins/RomePlugin/RomePlugin.c   2014-01-25 20:25:52 UTC
> > (rev 2853)
> > +++ trunk/src/plugins/RomePlugin/RomePlugin.c   2014-01-27 20:38:08 UTC
> > (rev 2854)
> > @@ -1,6 +1,6 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:39 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:20 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> >         RomePlugin Rome-Plugin-yo.39 uuid:
> > 4bc7d831-189d-43ce-8b6d-7e96cf20a234
> >   */
> > @@ -199,9 +199,9 @@
> >  static sqInt maxSurfaceID;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "RomePlugin yo.39 20 January 2014 (i)"
> > +       "RomePlugin yo.39 27 January 2014 (i)"
> >  #else
> > -       "RomePlugin yo.39 20 January 2014 (e)"
> > +       "RomePlugin yo.39 27 January 2014 (e)"
> >  #endif
> >  ;
> >  static fn_ioRegisterSurface registerSurfaceFn;
> >
> > Modified: trunk/src/plugins/ScratchPlugin/ScratchPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/ScratchPlugin/ScratchPlugin.c     2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/ScratchPlugin/ScratchPlugin.c     2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:40 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:20 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       ScratchPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       ScratchPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "ScratchPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "ScratchPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -89,9 +89,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "ScratchPlugin 20 January 2014 (i)"
> > +       "ScratchPlugin 27 January 2014 (i)"
> >  #else
> > -       "ScratchPlugin 20 January 2014 (e)"
> > +       "ScratchPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/SecurityPlugin/SecurityPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/SecurityPlugin/SecurityPlugin.c   2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/SecurityPlugin/SecurityPlugin.c   2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:35 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:15 pm */
> >  /* Automatically generated by
> > -       VMPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       VMPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       SecurityPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SecurityPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "SecurityPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "SecurityPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -80,9 +80,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "SecurityPlugin 20 January 2014 (i)"
> > +       "SecurityPlugin 27 January 2014 (i)"
> >  #else
> > -       "SecurityPlugin 20 January 2014 (e)"
> > +       "SecurityPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> > Modified: trunk/src/plugins/SerialPlugin/SerialPlugin.c
> > ===================================================================
> > --- trunk/src/plugins/SerialPlugin/SerialPlugin.c       2014-01-25
> > 20:25:52 UTC (rev 2853)
> > +++ trunk/src/plugins/SerialPlugin/SerialPlugin.c       2014-01-27
> > 20:38:08 UTC (rev 2854)
> > @@ -1,10 +1,10 @@
> > -/* Smalltalk from Squeak4.5 with VMMaker 4.12.14 translated as C source
> > on 20 January 2014 7:15:35 pm */
> > +/* Smalltalk from Squeak4.5 with VMMaker 4.13.1 translated as C source on
> > 27 January 2014 3:24:15 pm */
> >  /* Automatically generated by
> > -       SmartSyntaxPluginCodeGenerator VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SmartSyntaxPluginCodeGenerator VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >     from
> > -       SerialPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece
> > +       SerialPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6
> >   */
> > -static char __buildInfo[] = "SerialPlugin VMMaker-dtl.338 uuid:
> > 29946156-9015-45c9-83a2-c12d43f67ece " __DATE__ ;
> > +static char __buildInfo[] = "SerialPlugin VMMaker-dtl.339 uuid:
> > e3da01c0-18c5-4297-9fc2-3fc56d5db9d6 " __DATE__ ;
> >
> >
> >
> > @@ -67,9 +67,9 @@
> >  struct VirtualMachine* interpreterProxy;
> >  static const char *moduleName =
> >  #ifdef SQUEAK_BUILTIN_PLUGIN
> > -       "SerialPlugin 20 January 2014 (i)"
> > +       "SerialPlugin 27 January 2014 (i)"
> >  #else
> > -       "SerialPlugin 20 January 2014 (e)"
> > +       "SerialPlugin 27 January 2014 (e)"
> >  #endif
> >  ;
> >
> >
> >
> > @@ Diff output truncated at 50000 characters. @@
> >
> 
> 
> 
> -- 
> best,
> Eliot



More information about the Vm-dev mailing list