[Vm-dev] [commit][2878] Sources per VMMaker 4.13.4 (VMMaker-dtl.344)

commits at squeakvm.org commits at squeakvm.org
Wed Mar 12 21:55:09 UTC 2014


Revision: 2878
Author:   lewis
Date:     2014-03-12 14:55:05 -0700 (Wed, 12 Mar 2014)
Log Message:
-----------
Sources per VMMaker 4.13.4 (VMMaker-dtl.344)

Fix slang inlining regression introduced in VMMaker-dtl.339 caused by
TMethod>>tryToInlineMethodsIn: that excluded nodes with selector #cCode:inSmalltalk:
which must remain inlineable to support various methods for 32/64 bit image
format from common code base, as well as for low level MemoryAccess in slang
that must be fully inlined for performance.

Change FloatArrayPlugin>>primitiveDivFloatArray and BitBltSimulation>>primitiveDisplayString
to send intAtPointer and byteAtPointer to self rather than to interpreterProxy,
because they are not defined in the interpreter proxy and cause compilation
errors when slang inlining is turned off. These should be added to the interpreter
proxy (or arguably to a hypothetical objects memory proxy) but send to self is
a lesser evil for now. 

These changes restore a very small performance gain for the standard VM
due to the inlining fix, and also restore inlining of low level MemoryAccess
methods when added to the VM build. Inlined MemoryAccess methods are essentially
equivalent to the C macros in sqMemoryAccess.h but can be run in simulation,
and play nicely with C debuggers and profilers.

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-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/ckformat.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -5,7 +5,7 @@
 /* Usage: ckformat imageFileName */
 
 /* --- DO NOT EDIT THIS FILE --- */
-/* --- Automatically generated from class ImageFormat 2014-02-23T10:39:25.64+01:00--- */
+/* --- Automatically generated from class ImageFormat 2014-03-12T12:58:08.131+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-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:52 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	ADPCMCodecPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	ADPCMCodecPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "ADPCMCodecPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "ADPCMCodecPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -70,9 +70,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"ADPCMCodecPlugin 23 February 2014 (i)"
+	"ADPCMCodecPlugin 12 March 2014 (i)"
 #else
-	"ADPCMCodecPlugin 23 February 2014 (e)"
+	"ADPCMCodecPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/AioPlugin/AioPlugin.c
===================================================================
--- trunk/src/plugins/AioPlugin/AioPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/AioPlugin/AioPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,6 +1,6 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:24 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:07 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    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 23 February 2014 (i)"
+	"AioPlugin 12 March 2014 (i)"
 #else
-	"AioPlugin 23 February 2014 (e)"
+	"AioPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c
===================================================================
--- trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:52 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	AsynchFilePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	AsynchFilePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "AsynchFilePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "AsynchFilePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -67,9 +67,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"AsynchFilePlugin 23 February 2014 (i)"
+	"AsynchFilePlugin 12 March 2014 (i)"
 #else
-	"AsynchFilePlugin 23 February 2014 (e)"
+	"AsynchFilePlugin 12 March 2014 (e)"
 #endif
 ;
 static void * sCOAFfn;

Modified: trunk/src/plugins/B2DPlugin/B2DPlugin.c
===================================================================
--- trunk/src/plugins/B2DPlugin/B2DPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/B2DPlugin/B2DPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:04 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:55 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	BalloonEnginePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	BalloonEnginePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "BalloonEnginePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "BalloonEnginePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -447,9 +447,9 @@
 static void * loadBBFn;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"B2DPlugin 23 February 2014 (i)"
+	"B2DPlugin 12 March 2014 (i)"
 #else
-	"B2DPlugin 23 February 2014 (e)"
+	"B2DPlugin 12 March 2014 (e)"
 #endif
 ;
 static int* objBuffer;

Modified: trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c
===================================================================
--- trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:13 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:01 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	B3DAcceleratorPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	B3DAcceleratorPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "B3DAcceleratorPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "B3DAcceleratorPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -107,9 +107,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"B3DAcceleratorPlugin 23 February 2014 (i)"
+	"B3DAcceleratorPlugin 12 March 2014 (i)"
 #else
-	"B3DAcceleratorPlugin 23 February 2014 (e)"
+	"B3DAcceleratorPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c
===================================================================
--- trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:53 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	BMPReadWriterPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	BMPReadWriterPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "BMPReadWriterPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "BMPReadWriterPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -58,9 +58,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"BMPReadWriterPlugin 23 February 2014 (i)"
+	"BMPReadWriterPlugin 12 March 2014 (i)"
 #else
-	"BMPReadWriterPlugin 23 February 2014 (e)"
+	"BMPReadWriterPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/BitBltPlugin/BitBltPlugin.c
===================================================================
--- trunk/src/plugins/BitBltPlugin/BitBltPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/BitBltPlugin/BitBltPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:06 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:56 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	BitBltSimulation VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	BitBltSimulation VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "BitBltSimulation VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "BitBltSimulation VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -256,9 +256,9 @@
 };
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"BitBltPlugin 23 February 2014 (i)"
+	"BitBltPlugin 12 March 2014 (i)"
 #else
-	"BitBltPlugin 23 February 2014 (e)"
+	"BitBltPlugin 12 March 2014 (e)"
 #endif
 ;
 static sqInt nWords;

Modified: trunk/src/plugins/CameraPlugin/CameraPlugin.c
===================================================================
--- trunk/src/plugins/CameraPlugin/CameraPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/CameraPlugin/CameraPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:14 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:02 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	CameraPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	CameraPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "CameraPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "CameraPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -64,9 +64,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"CameraPlugin 23 February 2014 (i)"
+	"CameraPlugin 12 March 2014 (i)"
 #else
-	"CameraPlugin 23 February 2014 (e)"
+	"CameraPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c
===================================================================
--- trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:14 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:02 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	ClipboardExtendedPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	ClipboardExtendedPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "ClipboardExtendedPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "ClipboardExtendedPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -61,9 +61,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"ClipboardExtendedPlugin 23 February 2014 (i)"
+	"ClipboardExtendedPlugin 12 March 2014 (i)"
 #else
-	"ClipboardExtendedPlugin 23 February 2014 (e)"
+	"ClipboardExtendedPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/CroquetPlugin/CroquetPlugin.c
===================================================================
--- trunk/src/plugins/CroquetPlugin/CroquetPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/CroquetPlugin/CroquetPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:06 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:56 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	CroquetPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	CroquetPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "CroquetPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "CroquetPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -73,9 +73,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"CroquetPlugin 23 February 2014 (i)"
+	"CroquetPlugin 12 March 2014 (i)"
 #else
-	"CroquetPlugin 23 February 2014 (e)"
+	"CroquetPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/DBusPlugin/DBusPlugin.c
===================================================================
--- trunk/src/plugins/DBusPlugin/DBusPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/DBusPlugin/DBusPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,6 +1,6 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:15 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:02 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    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 23 February 2014 (i)"
+	"DBusPlugin 12 March 2014 (i)"
 #else
-	"DBusPlugin 23 February 2014 (e)"
+	"DBusPlugin 12 March 2014 (e)"
 #endif
 ;
 static DBusMessage* writeMessage;

Modified: trunk/src/plugins/DSAPrims/DSAPrims.c
===================================================================
--- trunk/src/plugins/DSAPrims/DSAPrims.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/DSAPrims/DSAPrims.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:07 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:56 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	DSAPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	DSAPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "DSAPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "DSAPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -67,9 +67,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"DSAPrims 23 February 2014 (i)"
+	"DSAPrims 12 March 2014 (i)"
 #else
-	"DSAPrims 23 February 2014 (e)"
+	"DSAPrims 12 March 2014 (e)"
 #endif
 ;
 static sqInt remainderDigitCount;

Modified: trunk/src/plugins/DropPlugin/DropPlugin.c
===================================================================
--- trunk/src/plugins/DropPlugin/DropPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/DropPlugin/DropPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:07 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:57 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	DropPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	DropPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "DropPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "DropPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -62,9 +62,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"DropPlugin 23 February 2014 (i)"
+	"DropPlugin 12 March 2014 (i)"
 #else
-	"DropPlugin 23 February 2014 (e)"
+	"DropPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/FFTPlugin/FFTPlugin.c
===================================================================
--- trunk/src/plugins/FFTPlugin/FFTPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/FFTPlugin/FFTPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:07 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:57 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	FFTPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	FFTPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "FFTPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "FFTPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -68,9 +68,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FFTPlugin 23 February 2014 (i)"
+	"FFTPlugin 12 March 2014 (i)"
 #else
-	"FFTPlugin 23 February 2014 (e)"
+	"FFTPlugin 12 March 2014 (e)"
 #endif
 ;
 static sqInt nu;

Modified: trunk/src/plugins/FT2Plugin/FT2Plugin.c
===================================================================
--- trunk/src/plugins/FT2Plugin/FT2Plugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/FT2Plugin/FT2Plugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,4 +1,4 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:16 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:03 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 23 February 2014 (i)"
+	"FT2Plugin 12 March 2014 (i)"
 #else
-	"FT2Plugin 23 February 2014 (e)"
+	"FT2Plugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c
===================================================================
--- trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:16 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:03 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	FileCopyPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	FileCopyPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "FileCopyPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "FileCopyPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -57,9 +57,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FileCopyPlugin 23 February 2014 (i)"
+	"FileCopyPlugin 12 March 2014 (i)"
 #else
-	"FileCopyPlugin 23 February 2014 (e)"
+	"FileCopyPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/FilePlugin/FilePlugin.c
===================================================================
--- trunk/src/plugins/FilePlugin/FilePlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/FilePlugin/FilePlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:07 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:57 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	FilePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	FilePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "FilePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "FilePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -100,9 +100,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FilePlugin 23 February 2014 (i)"
+	"FilePlugin 12 March 2014 (i)"
 #else
-	"FilePlugin 23 February 2014 (e)"
+	"FilePlugin 12 March 2014 (e)"
 #endif
 ;
 static void * sCCPfn;

Modified: trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c
===================================================================
--- trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:08 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:57 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	FloatArrayPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	FloatArrayPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "FloatArrayPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "FloatArrayPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -72,9 +72,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FloatArrayPlugin 23 February 2014 (i)"
+	"FloatArrayPlugin 12 March 2014 (i)"
 #else
-	"FloatArrayPlugin 23 February 2014 (e)"
+	"FloatArrayPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c
===================================================================
--- trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:08 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:57 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	FloatMathPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	FloatMathPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "FloatMathPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "FloatMathPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -79,9 +79,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FloatMathPlugin 23 February 2014 (i)"
+	"FloatMathPlugin 12 March 2014 (i)"
 #else
-	"FloatMathPlugin 23 February 2014 (e)"
+	"FloatMathPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/GeniePlugin/GeniePlugin.c
===================================================================
--- trunk/src/plugins/GeniePlugin/GeniePlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/GeniePlugin/GeniePlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:08 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:57 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	GeniePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	GeniePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "GeniePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "GeniePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -61,9 +61,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"GeniePlugin v2.0 23 February 2014 (i)"
+	"GeniePlugin v2.0 12 March 2014 (i)"
 #else
-	"GeniePlugin v2.0 23 February 2014 (e)"
+	"GeniePlugin v2.0 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c
===================================================================
--- trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:18 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:04 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	HostWindowPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	HostWindowPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "HostWindowPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "HostWindowPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -66,9 +66,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"HostWindowPlugin 23 February 2014 (i)"
+	"HostWindowPlugin 12 March 2014 (i)"
 #else
-	"HostWindowPlugin 23 February 2014 (e)"
+	"HostWindowPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c
===================================================================
--- trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:08 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:57 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	JPEGReadWriter2Plugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	JPEGReadWriter2Plugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "JPEGReadWriter2Plugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "JPEGReadWriter2Plugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -68,9 +68,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"JPEGReadWriter2Plugin 23 February 2014 (i)"
+	"JPEGReadWriter2Plugin 12 March 2014 (i)"
 #else
-	"JPEGReadWriter2Plugin 23 February 2014 (e)"
+	"JPEGReadWriter2Plugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c
===================================================================
--- trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:09 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:58 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	JPEGReaderPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	JPEGReaderPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "JPEGReaderPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "JPEGReaderPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -136,9 +136,9 @@
 static sqInt jsReadLimit;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"JPEGReaderPlugin 23 February 2014 (i)"
+	"JPEGReaderPlugin 12 March 2014 (i)"
 #else
-	"JPEGReaderPlugin 23 February 2014 (e)"
+	"JPEGReaderPlugin 12 March 2014 (e)"
 #endif
 ;
 static int *residuals;

Modified: trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c
===================================================================
--- trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:09 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:58 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	JoystickTabletPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	JoystickTabletPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "JoystickTabletPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "JoystickTabletPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -62,9 +62,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"JoystickTabletPlugin 23 February 2014 (i)"
+	"JoystickTabletPlugin 12 March 2014 (i)"
 #else
-	"JoystickTabletPlugin 23 February 2014 (e)"
+	"JoystickTabletPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/Klatt/Klatt.c
===================================================================
--- trunk/src/plugins/Klatt/Klatt.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/Klatt/Klatt.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:09 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:58 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	KlattSynthesizerPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	KlattSynthesizerPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "KlattSynthesizerPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "KlattSynthesizerPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -155,9 +155,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"Klatt 23 February 2014 (i)"
+	"Klatt 12 March 2014 (i)"
 #else
-	"Klatt 23 February 2014 (e)"
+	"Klatt 12 March 2014 (e)"
 #endif
 ;
 static float nlast;

Modified: trunk/src/plugins/LargeIntegers/LargeIntegers.c
===================================================================
--- trunk/src/plugins/LargeIntegers/LargeIntegers.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/LargeIntegers/LargeIntegers.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:10 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:59 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	LargeIntegersPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	LargeIntegersPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "LargeIntegersPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "LargeIntegersPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 

Modified: trunk/src/plugins/LocalePlugin/LocalePlugin.c
===================================================================
--- trunk/src/plugins/LocalePlugin/LocalePlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/LocalePlugin/LocalePlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:10 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:59 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	LocalePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	LocalePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "LocalePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "LocalePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -71,9 +71,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"LocalePlugin 23 February 2014 (i)"
+	"LocalePlugin 12 March 2014 (i)"
 #else
-	"LocalePlugin 23 February 2014 (e)"
+	"LocalePlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/MIDIPlugin/MIDIPlugin.c
===================================================================
--- trunk/src/plugins/MIDIPlugin/MIDIPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/MIDIPlugin/MIDIPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:21 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:05 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	MIDIPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	MIDIPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "MIDIPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "MIDIPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -70,9 +70,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"MIDIPlugin 23 February 2014 (i)"
+	"MIDIPlugin 12 March 2014 (i)"
 #else
-	"MIDIPlugin 23 February 2014 (e)"
+	"MIDIPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c
===================================================================
--- trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:10 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:59 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	Matrix2x3Plugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	Matrix2x3Plugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "Matrix2x3Plugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "Matrix2x3Plugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -74,9 +74,9 @@
 static double m23ResultY;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"Matrix2x3Plugin 23 February 2014 (i)"
+	"Matrix2x3Plugin 12 March 2014 (i)"
 #else
-	"Matrix2x3Plugin 23 February 2014 (e)"
+	"Matrix2x3Plugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c
===================================================================
--- trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:11 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:59 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	MiscPrimitivePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	MiscPrimitivePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "MiscPrimitivePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "MiscPrimitivePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -70,9 +70,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"MiscPrimitivePlugin 23 February 2014 (i)"
+	"MiscPrimitivePlugin 12 March 2014 (i)"
 #else
-	"MiscPrimitivePlugin 23 February 2014 (e)"
+	"MiscPrimitivePlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c
===================================================================
--- trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:21 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:06 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	Mpeg3Plugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	Mpeg3Plugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "Mpeg3Plugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "Mpeg3Plugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -101,9 +101,9 @@
 static sqInt maximumNumberOfFilesToWatch;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"Mpeg3Plugin 23 February 2014 (i)"
+	"Mpeg3Plugin 12 March 2014 (i)"
 #else
-	"Mpeg3Plugin 23 February 2014 (e)"
+	"Mpeg3Plugin 12 March 2014 (e)"
 #endif
 ;
 static mpeg3_t *mpegFiles[1024+1];

Modified: trunk/src/plugins/RePlugin/RePlugin.c
===================================================================
--- trunk/src/plugins/RePlugin/RePlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/RePlugin/RePlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:11 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:57:59 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	RePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	RePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "RePlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "RePlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -79,9 +79,9 @@
 static sqInt matchFlags;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"RePlugin 23 February 2014 (i)"
+	"RePlugin 12 March 2014 (i)"
 #else
-	"RePlugin 23 February 2014 (e)"
+	"RePlugin 12 March 2014 (e)"
 #endif
 ;
 static int netMemory = 0;

Modified: trunk/src/plugins/RomePlugin/RomePlugin.c
===================================================================
--- trunk/src/plugins/RomePlugin/RomePlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/RomePlugin/RomePlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,6 +1,6 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:23 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:06 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    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 23 February 2014 (i)"
+	"RomePlugin yo.39 12 March 2014 (i)"
 #else
-	"RomePlugin yo.39 23 February 2014 (e)"
+	"RomePlugin yo.39 12 March 2014 (e)"
 #endif
 ;
 static fn_ioRegisterSurface registerSurfaceFn;

Modified: trunk/src/plugins/ScratchPlugin/ScratchPlugin.c
===================================================================
--- trunk/src/plugins/ScratchPlugin/ScratchPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/ScratchPlugin/ScratchPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:23 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58:07 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	ScratchPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	ScratchPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "ScratchPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "ScratchPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -89,9 +89,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"ScratchPlugin 23 February 2014 (i)"
+	"ScratchPlugin 12 March 2014 (i)"
 #else
-	"ScratchPlugin 23 February 2014 (e)"
+	"ScratchPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/SecurityPlugin/SecurityPlugin.c
===================================================================
--- trunk/src/plugins/SecurityPlugin/SecurityPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/SecurityPlugin/SecurityPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:11 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	VMPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	SecurityPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SecurityPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "SecurityPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "SecurityPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -80,9 +80,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"SecurityPlugin 23 February 2014 (i)"
+	"SecurityPlugin 12 March 2014 (i)"
 #else
-	"SecurityPlugin 23 February 2014 (e)"
+	"SecurityPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/SerialPlugin/SerialPlugin.c
===================================================================
--- trunk/src/plugins/SerialPlugin/SerialPlugin.c	2014-03-12 02:12:10 UTC (rev 2877)
+++ trunk/src/plugins/SerialPlugin/SerialPlugin.c	2014-03-12 21:55:05 UTC (rev 2878)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.3 translated as C source on 23 February 2014 10:39:11 am */
+/* Smalltalk from Squeak4.5 with VMMaker 4.13.4 translated as C source on 12 March 2014 12:58 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SmartSyntaxPluginCodeGenerator VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
    from
-	SerialPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284
+	SerialPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a
  */
-static char __buildInfo[] = "SerialPlugin VMMaker-dtl.342 uuid: b96b3f58-94e9-45e0-a1b5-833b62ca2284 " __DATE__ ;
+static char __buildInfo[] = "SerialPlugin VMMaker-dtl.344 uuid: d27f9db0-776a-4a76-aa71-2fc4aaa4885a " __DATE__ ;
 
 
 
@@ -67,9 +67,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"SerialPlugin 23 February 2014 (i)"
+	"SerialPlugin 12 March 2014 (i)"
 #else
-	"SerialPlugin 23 February 2014 (e)"
+	"SerialPlugin 12 March 2014 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/SocketPlugin/SocketPlugin.c
===================================================================

@@ Diff output truncated at 50000 characters. @@


More information about the Vm-dev mailing list