[Vm-dev] [commit][3181] Make sure the 64-bit SPur VMs are differentiated from the 32-bit ones in the

commits at squeakvm.org commits at squeakvm.org
Sat Dec 13 03:18:50 UTC 2014


Revision: 3181
Author:   eliot
Date:     2014-12-12 19:18:47 -0800 (Fri, 12 Dec 2014)
Log Message:
-----------
Make sure the 64-bit SPur VMs are differentiated from the 32-bit ones in the
-version & crash dump output.

Modified Paths:
--------------
    branches/Cog/platforms/Mac OS/vm/sqMacMain.c
    branches/Cog/platforms/unix/vm/sqUnixMain.c
    branches/Cog/platforms/win32/vm/sqWin32Intel.c

Property Changed:
----------------
    branches/Cog/platforms/Cross/vm/sqSCCSVersion.h


Property changes on: branches/Cog/platforms/Cross/vm/sqSCCSVersion.h
___________________________________________________________________
Modified: checkindate
   - Fri Dec 12 18:47:39 PST 2014
   + Fri Dec 12 19:17:46 PST 2014

Modified: branches/Cog/platforms/Mac OS/vm/sqMacMain.c
===================================================================
--- branches/Cog/platforms/Mac OS/vm/sqMacMain.c	2014-12-13 02:53:22 UTC (rev 3180)
+++ branches/Cog/platforms/Mac OS/vm/sqMacMain.c	2014-12-13 03:18:47 UTC (rev 3181)
@@ -1057,7 +1057,11 @@
   info[0]= '\0';
 
 #if SPURVM
-# define ObjectMemory " Spur"
+# if BytesPerOop == 8
+#	define ObjectMemory " Spur 64-bit"
+# else
+#	define ObjectMemory " Spur"
+# endif
 #else
 # define ObjectMemory
 #endif

Modified: branches/Cog/platforms/unix/vm/sqUnixMain.c
===================================================================
--- branches/Cog/platforms/unix/vm/sqUnixMain.c	2014-12-13 02:53:22 UTC (rev 3180)
+++ branches/Cog/platforms/unix/vm/sqUnixMain.c	2014-12-13 03:18:47 UTC (rev 3181)
@@ -1617,7 +1617,11 @@
   info[0]= '\0';
 
 #if SPURVM
-# define ObjectMemory " Spur"
+# if BytesPerOop == 8
+#	define ObjectMemory " Spur 64-bit"
+# else
+#	define ObjectMemory " Spur"
+# endif
 #else
 # define ObjectMemory
 #endif

Modified: branches/Cog/platforms/win32/vm/sqWin32Intel.c
===================================================================
--- branches/Cog/platforms/win32/vm/sqWin32Intel.c	2014-12-13 02:53:22 UTC (rev 3180)
+++ branches/Cog/platforms/win32/vm/sqWin32Intel.c	2014-12-13 03:18:47 UTC (rev 3181)
@@ -776,7 +776,11 @@
   info[0]= '\0';
 
 #if SPURVM
-# define ObjectMemory " Spur"
+# if BytesPerOop == 8
+#	define ObjectMemory " Spur 64-bit"
+# else
+#	define ObjectMemory " Spur"
+# endif
 #else
 # define ObjectMemory
 #endif



More information about the Vm-dev mailing list