[Vm-dev] [commit][2664] CogVm source as per VMMaker.oscog-eem.252.

commits at squeakvm.org commits at squeakvm.org
Wed Jan 9 02:14:39 UTC 2013


Revision: 2664
Author:   eliot
Date:     2013-01-08 18:14:39 -0800 (Tue, 08 Jan 2013)
Log Message:
-----------
CogVm source as per VMMaker.oscog-eem.252.
Issue 117.  Fix primitiveRemLargeIntegers.
The result should be negated iff receiver negative.

Modified Paths:
--------------
    branches/Cog/nscogsrc/vm/cointerp.c
    branches/Cog/nscogsrc/vm/cointerp.h
    branches/Cog/nscogsrc/vm/gcc3x-cointerp.c
    branches/Cog/nscogsrc/vm/interp.h
    branches/Cog/nscogsrc/vm/vmCallback.h
    branches/Cog/src/vm/cointerp.c
    branches/Cog/src/vm/cointerp.h
    branches/Cog/src/vm/cointerpmt.c
    branches/Cog/src/vm/cointerpmt.h
    branches/Cog/src/vm/gcc3x-cointerp.c
    branches/Cog/src/vm/gcc3x-cointerpmt.c
    branches/Cog/src/vm/interp.h
    branches/Cog/src/vm/vmCallback.h

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

Modified: branches/Cog/nscogsrc/vm/cointerp.c
===================================================================
--- branches/Cog/nscogsrc/vm/cointerp.c	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/nscogsrc/vm/cointerp.c	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,9 +1,9 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
    from
-	CoInterpreter VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CoInterpreter VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
-static char __buildInfo[] = "CoInterpreter VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00 " __DATE__ ;
+static char __buildInfo[] = "CoInterpreter VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572 " __DATE__ ;
 char *__interpBuildInfo = __buildInfo;
 
 
@@ -1928,7 +1928,7 @@
  0 };
 static void (*externalPrimitiveTable[MaxExternalPrimitiveTableSize + 1 /* 4097 */])(void);
 static usqInt heapBase;
-const char *interpreterVersion = "Newspeak Virtual Machine CoInterpreter_VMMaker.oscog-eem.251";
+const char *interpreterVersion = "Newspeak Virtual Machine CoInterpreter_VMMaker.oscog-eem.252";
 sqInt minBackwardJumpCountForCompile = MinBackwardJumpCountForCompile /* 10 */;
 volatile int sendTrace;
 
@@ -39461,7 +39461,6 @@
     usqLong a;
     sqInt aIsNegative;
     usqLong b;
-    sqInt bIsNegative;
     sqInt oopArg;
     sqInt oopRcvr;
     sqInt oopResult;
@@ -39471,7 +39470,6 @@
 	oopArg = longAt(GIV(stackPointer) + (0 * BytesPerWord));
 	oopRcvr = longAt(GIV(stackPointer) + (1 * BytesPerWord));
 	aIsNegative = isNegativeIntegerValueOf(oopRcvr);
-	bIsNegative = isNegativeIntegerValueOf(oopArg);
 	a = magnitude64BitValueOf(oopRcvr);
 	b = magnitude64BitValueOf(oopArg);
 	if (b == 0) {
@@ -39484,7 +39482,7 @@
 		return;
 	}
 	result = a % b;
-	oopResult = magnitude64BitIntegerForneg(result, aIsNegative != bIsNegative);
+	oopResult = magnitude64BitIntegerForneg(result, aIsNegative);
 	if (!GIV(primFailCode)) {
 		/* begin pop:thenPush: */
 		longAtput((sp = GIV(stackPointer) + ((2 - 1) * BytesPerWord)), oopResult);

Modified: branches/Cog/nscogsrc/vm/cointerp.h
===================================================================
--- branches/Cog/nscogsrc/vm/cointerp.h	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/nscogsrc/vm/cointerp.h	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,5 +1,5 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
 
 

Modified: branches/Cog/nscogsrc/vm/gcc3x-cointerp.c
===================================================================
--- branches/Cog/nscogsrc/vm/gcc3x-cointerp.c	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/nscogsrc/vm/gcc3x-cointerp.c	2013-01-09 02:14:39 UTC (rev 2664)
@@ -2,11 +2,11 @@
 
 
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
    from
-	CoInterpreter VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CoInterpreter VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
-static char __buildInfo[] = "CoInterpreter VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00 " __DATE__ ;
+static char __buildInfo[] = "CoInterpreter VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572 " __DATE__ ;
 char *__interpBuildInfo = __buildInfo;
 
 
@@ -1931,7 +1931,7 @@
  0 };
 static void (*externalPrimitiveTable[MaxExternalPrimitiveTableSize + 1 /* 4097 */])(void);
 static usqInt heapBase;
-const char *interpreterVersion = "Newspeak Virtual Machine CoInterpreter_VMMaker.oscog-eem.251";
+const char *interpreterVersion = "Newspeak Virtual Machine CoInterpreter_VMMaker.oscog-eem.252";
 sqInt minBackwardJumpCountForCompile = MinBackwardJumpCountForCompile /* 10 */;
 volatile int sendTrace;
 
@@ -39470,7 +39470,6 @@
     usqLong a;
     sqInt aIsNegative;
     usqLong b;
-    sqInt bIsNegative;
     sqInt oopArg;
     sqInt oopRcvr;
     sqInt oopResult;
@@ -39480,7 +39479,6 @@
 	oopArg = longAt(GIV(stackPointer) + (0 * BytesPerWord));
 	oopRcvr = longAt(GIV(stackPointer) + (1 * BytesPerWord));
 	aIsNegative = isNegativeIntegerValueOf(oopRcvr);
-	bIsNegative = isNegativeIntegerValueOf(oopArg);
 	a = magnitude64BitValueOf(oopRcvr);
 	b = magnitude64BitValueOf(oopArg);
 	if (b == 0) {
@@ -39493,7 +39491,7 @@
 		return;
 	}
 	result = a % b;
-	oopResult = magnitude64BitIntegerForneg(result, aIsNegative != bIsNegative);
+	oopResult = magnitude64BitIntegerForneg(result, aIsNegative);
 	if (!GIV(primFailCode)) {
 		/* begin pop:thenPush: */
 		longAtput((sp = GIV(stackPointer) + ((2 - 1) * BytesPerWord)), oopResult);

Modified: branches/Cog/nscogsrc/vm/interp.h
===================================================================
--- branches/Cog/nscogsrc/vm/interp.h	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/nscogsrc/vm/interp.h	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,5 +1,5 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
 
 #define VM_PROXY_MAJOR 1

Modified: branches/Cog/nscogsrc/vm/vmCallback.h
===================================================================
--- branches/Cog/nscogsrc/vm/vmCallback.h	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/nscogsrc/vm/vmCallback.h	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,5 +1,5 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
 
 #define VM_CALLBACK_INC 1


Property changes on: branches/Cog/platforms/Cross/vm/sqSCCSVersion.h
___________________________________________________________________
Modified: checkindate
   - Tue Jan  8 13:54:09 PST 2013
   + Tue Jan  8 18:13:58 PST 2013

Modified: branches/Cog/src/vm/cointerp.c
===================================================================
--- branches/Cog/src/vm/cointerp.c	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/src/vm/cointerp.c	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,9 +1,9 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
    from
-	CoInterpreter VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CoInterpreter VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
-static char __buildInfo[] = "CoInterpreter VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00 " __DATE__ ;
+static char __buildInfo[] = "CoInterpreter VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572 " __DATE__ ;
 char *__interpBuildInfo = __buildInfo;
 
 
@@ -1918,7 +1918,7 @@
  0 };
 static void (*externalPrimitiveTable[MaxExternalPrimitiveTableSize + 1 /* 4097 */])(void);
 static usqInt heapBase;
-const char *interpreterVersion = "Croquet Closure Cog VM [CoInterpreter VMMaker.oscog-eem.251]";
+const char *interpreterVersion = "Croquet Closure Cog VM [CoInterpreter VMMaker.oscog-eem.252]";
 sqInt minBackwardJumpCountForCompile = MinBackwardJumpCountForCompile /* 10 */;
 volatile int sendTrace;
 
@@ -34952,7 +34952,6 @@
     usqLong a;
     sqInt aIsNegative;
     usqLong b;
-    sqInt bIsNegative;
     sqInt oopArg;
     sqInt oopRcvr;
     sqInt oopResult;
@@ -34962,7 +34961,6 @@
 	oopArg = longAt(GIV(stackPointer) + (0 * BytesPerWord));
 	oopRcvr = longAt(GIV(stackPointer) + (1 * BytesPerWord));
 	aIsNegative = isNegativeIntegerValueOf(oopRcvr);
-	bIsNegative = isNegativeIntegerValueOf(oopArg);
 	a = magnitude64BitValueOf(oopRcvr);
 	b = magnitude64BitValueOf(oopArg);
 	if (b == 0) {
@@ -34975,7 +34973,7 @@
 		return;
 	}
 	result = a % b;
-	oopResult = magnitude64BitIntegerForneg(result, aIsNegative != bIsNegative);
+	oopResult = magnitude64BitIntegerForneg(result, aIsNegative);
 	if (!GIV(primFailCode)) {
 		/* begin pop:thenPush: */
 		longAtput((sp = GIV(stackPointer) + ((2 - 1) * BytesPerWord)), oopResult);

Modified: branches/Cog/src/vm/cointerp.h
===================================================================
--- branches/Cog/src/vm/cointerp.h	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/src/vm/cointerp.h	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,5 +1,5 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
 
 

Modified: branches/Cog/src/vm/cointerpmt.c
===================================================================
--- branches/Cog/src/vm/cointerpmt.c	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/src/vm/cointerpmt.c	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,9 +1,9 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
    from
-	CoInterpreterMT VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CoInterpreterMT VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
-static char __buildInfo[] = "CoInterpreterMT VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00 " __DATE__ ;
+static char __buildInfo[] = "CoInterpreterMT VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572 " __DATE__ ;
 char *__interpBuildInfo = __buildInfo;
 
 
@@ -2017,7 +2017,7 @@
  0 };
 static void (*externalPrimitiveTable[MaxExternalPrimitiveTableSize + 1 /* 4097 */])(void);
 static usqInt heapBase;
-const char *interpreterVersion = "Croquet Closure Cog MT VM [CoInterpreterMT VMMaker.oscog-eem.251]";
+const char *interpreterVersion = "Croquet Closure Cog MT VM [CoInterpreterMT VMMaker.oscog-eem.252]";
 sqInt minBackwardJumpCountForCompile = MinBackwardJumpCountForCompile /* 10 */;
 volatile int sendTrace;
 sqInt willNotThreadWarnCount;
@@ -36283,7 +36283,6 @@
     usqLong a;
     sqInt aIsNegative;
     usqLong b;
-    sqInt bIsNegative;
     sqInt oopArg;
     sqInt oopRcvr;
     sqInt oopResult;
@@ -36293,7 +36292,6 @@
 	oopArg = longAt(GIV(stackPointer) + (0 * BytesPerWord));
 	oopRcvr = longAt(GIV(stackPointer) + (1 * BytesPerWord));
 	aIsNegative = isNegativeIntegerValueOf(oopRcvr);
-	bIsNegative = isNegativeIntegerValueOf(oopArg);
 	a = magnitude64BitValueOf(oopRcvr);
 	b = magnitude64BitValueOf(oopArg);
 	if (b == 0) {
@@ -36306,7 +36304,7 @@
 		return;
 	}
 	result = a % b;
-	oopResult = magnitude64BitIntegerForneg(result, aIsNegative != bIsNegative);
+	oopResult = magnitude64BitIntegerForneg(result, aIsNegative);
 	if (!GIV(primFailCode)) {
 		/* begin pop:thenPush: */
 		longAtput((sp = GIV(stackPointer) + ((2 - 1) * BytesPerWord)), oopResult);

Modified: branches/Cog/src/vm/cointerpmt.h
===================================================================
--- branches/Cog/src/vm/cointerpmt.h	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/src/vm/cointerpmt.h	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,5 +1,5 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
 
 

Modified: branches/Cog/src/vm/gcc3x-cointerp.c
===================================================================
--- branches/Cog/src/vm/gcc3x-cointerp.c	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/src/vm/gcc3x-cointerp.c	2013-01-09 02:14:39 UTC (rev 2664)
@@ -2,11 +2,11 @@
 
 
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
    from
-	CoInterpreter VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CoInterpreter VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
-static char __buildInfo[] = "CoInterpreter VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00 " __DATE__ ;
+static char __buildInfo[] = "CoInterpreter VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572 " __DATE__ ;
 char *__interpBuildInfo = __buildInfo;
 
 
@@ -1921,7 +1921,7 @@
  0 };
 static void (*externalPrimitiveTable[MaxExternalPrimitiveTableSize + 1 /* 4097 */])(void);
 static usqInt heapBase;
-const char *interpreterVersion = "Croquet Closure Cog VM [CoInterpreter VMMaker.oscog-eem.251]";
+const char *interpreterVersion = "Croquet Closure Cog VM [CoInterpreter VMMaker.oscog-eem.252]";
 sqInt minBackwardJumpCountForCompile = MinBackwardJumpCountForCompile /* 10 */;
 volatile int sendTrace;
 
@@ -34961,7 +34961,6 @@
     usqLong a;
     sqInt aIsNegative;
     usqLong b;
-    sqInt bIsNegative;
     sqInt oopArg;
     sqInt oopRcvr;
     sqInt oopResult;
@@ -34971,7 +34970,6 @@
 	oopArg = longAt(GIV(stackPointer) + (0 * BytesPerWord));
 	oopRcvr = longAt(GIV(stackPointer) + (1 * BytesPerWord));
 	aIsNegative = isNegativeIntegerValueOf(oopRcvr);
-	bIsNegative = isNegativeIntegerValueOf(oopArg);
 	a = magnitude64BitValueOf(oopRcvr);
 	b = magnitude64BitValueOf(oopArg);
 	if (b == 0) {
@@ -34984,7 +34982,7 @@
 		return;
 	}
 	result = a % b;
-	oopResult = magnitude64BitIntegerForneg(result, aIsNegative != bIsNegative);
+	oopResult = magnitude64BitIntegerForneg(result, aIsNegative);
 	if (!GIV(primFailCode)) {
 		/* begin pop:thenPush: */
 		longAtput((sp = GIV(stackPointer) + ((2 - 1) * BytesPerWord)), oopResult);

Modified: branches/Cog/src/vm/gcc3x-cointerpmt.c
===================================================================
--- branches/Cog/src/vm/gcc3x-cointerpmt.c	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/src/vm/gcc3x-cointerpmt.c	2013-01-09 02:14:39 UTC (rev 2664)
@@ -2,11 +2,11 @@
 
 
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
    from
-	CoInterpreterMT VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CoInterpreterMT VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
-static char __buildInfo[] = "CoInterpreterMT VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00 " __DATE__ ;
+static char __buildInfo[] = "CoInterpreterMT VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572 " __DATE__ ;
 char *__interpBuildInfo = __buildInfo;
 
 
@@ -2020,7 +2020,7 @@
  0 };
 static void (*externalPrimitiveTable[MaxExternalPrimitiveTableSize + 1 /* 4097 */])(void);
 static usqInt heapBase;
-const char *interpreterVersion = "Croquet Closure Cog MT VM [CoInterpreterMT VMMaker.oscog-eem.251]";
+const char *interpreterVersion = "Croquet Closure Cog MT VM [CoInterpreterMT VMMaker.oscog-eem.252]";
 sqInt minBackwardJumpCountForCompile = MinBackwardJumpCountForCompile /* 10 */;
 volatile int sendTrace;
 sqInt willNotThreadWarnCount;
@@ -36292,7 +36292,6 @@
     usqLong a;
     sqInt aIsNegative;
     usqLong b;
-    sqInt bIsNegative;
     sqInt oopArg;
     sqInt oopRcvr;
     sqInt oopResult;
@@ -36302,7 +36301,6 @@
 	oopArg = longAt(GIV(stackPointer) + (0 * BytesPerWord));
 	oopRcvr = longAt(GIV(stackPointer) + (1 * BytesPerWord));
 	aIsNegative = isNegativeIntegerValueOf(oopRcvr);
-	bIsNegative = isNegativeIntegerValueOf(oopArg);
 	a = magnitude64BitValueOf(oopRcvr);
 	b = magnitude64BitValueOf(oopArg);
 	if (b == 0) {
@@ -36315,7 +36313,7 @@
 		return;
 	}
 	result = a % b;
-	oopResult = magnitude64BitIntegerForneg(result, aIsNegative != bIsNegative);
+	oopResult = magnitude64BitIntegerForneg(result, aIsNegative);
 	if (!GIV(primFailCode)) {
 		/* begin pop:thenPush: */
 		longAtput((sp = GIV(stackPointer) + ((2 - 1) * BytesPerWord)), oopResult);

Modified: branches/Cog/src/vm/interp.h
===================================================================
--- branches/Cog/src/vm/interp.h	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/src/vm/interp.h	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,5 +1,5 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
 
 #define VM_PROXY_MAJOR 1

Modified: branches/Cog/src/vm/vmCallback.h
===================================================================
--- branches/Cog/src/vm/vmCallback.h	2013-01-09 02:01:40 UTC (rev 2663)
+++ branches/Cog/src/vm/vmCallback.h	2013-01-09 02:14:39 UTC (rev 2664)
@@ -1,5 +1,5 @@
 /* Automatically generated by
-	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.251 uuid: beb7dbb2-ac3b-4628-8fca-330de6592c00
+	CCodeGeneratorGlobalStructure VMMaker.oscog-eem.252 uuid: 50d6c392-d32d-49a5-9251-32ad9c299572
  */
 
 #define VM_CALLBACK_INC 1



More information about the Vm-dev mailing list