Skip to content

Commit

Permalink
CogVM source as per VMMaker.oscog-eem.3476
Browse files Browse the repository at this point in the history
Make sure all FFIConstants are correctly initialized before
generating any ThreadedFFIPlugin.  Fix a comment typo.
  • Loading branch information
eliotmiranda committed Dec 9, 2024
1 parent cfd1161 commit 0fdc940
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 71 deletions.
10 changes: 5 additions & 5 deletions src/plugins/AsynchFilePlugin/AsynchFilePlugin.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* Automatically generated by
SmartSyntaxPluginCodeGenerator VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282
SmartSyntaxPluginCodeGenerator VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b
(Compiler-eem.512)
from
AsynchFilePlugin VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282
AsynchFilePlugin VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b
*/
static char __buildInfo[] = "AsynchFilePlugin VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282 " __DATE__ ;
static char __buildInfo[] = "AsynchFilePlugin VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b " __DATE__ ;


#include "config.h"
Expand Down Expand Up @@ -112,7 +112,7 @@ extern sqInt stackValue(sqInt offset);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "AsynchFilePlugin VMMaker.oscog-eem.3475 " INT_EXT;
static const char *moduleName = "AsynchFilePlugin VMMaker.oscog-eem.3476 " INT_EXT;
static void * sCOAFfn;


Expand Down Expand Up @@ -280,7 +280,7 @@ primitiveAsyncFileReadResult(void)
startIndex = ((startIndex - 1) * scaleFactor) + 1;
}

/* covert word counts to byte counts */
/* convert word counts to byte counts */
if (!((startIndex >= 1)
&& (((startIndex + count) - 1) <= bufferSize))) {
return primitiveFailFor(PrimErrBadIndex);
Expand Down
12 changes: 6 additions & 6 deletions src/plugins/SqueakFFIPrims/ARM32FFIPlugin.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* Automatically generated by
VMPluginCodeGenerator VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282
VMPluginCodeGenerator VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b
(Compiler-eem.512)
from
ThreadedARM32FFIPlugin VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282
ThreadedARM32FFIPlugin VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b
*/
static char __buildInfo[] = "ThreadedARM32FFIPlugin VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282 " __DATE__ ;
static char __buildInfo[] = "ThreadedARM32FFIPlugin VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b " __DATE__ ;


#include "config.h"
Expand Down Expand Up @@ -157,7 +157,7 @@ static char __buildInfo[] = "ThreadedARM32FFIPlugin VMMaker.oscog-eem.3475 uuid:
#define FFIFlagAtomic 0x40000
#define FFIFlagPointer 0x20000
#define FFIFlagStructure 0x10000
#define FFIFlagVariadic null
#define FFIFlagVariadic 0x80000000U
#define FFINoCalloutAvailable -1
#define FFIStructSizeMask 0xFFFF
#define FFITypeBool 1
Expand All @@ -178,7 +178,7 @@ static char __buildInfo[] = "ThreadedARM32FFIPlugin VMMaker.oscog-eem.3475 uuid:
#define MaxNumArgs 15
#define NumFloatRegArgs 16
#define NumIntRegArgs 4
#define PluginVersionInfo " VMMaker.oscog-eem.3475"
#define PluginVersionInfo " VMMaker.oscog-eem.3476"

typedef struct {
char *argVector;
Expand Down Expand Up @@ -520,7 +520,7 @@ extern sqInt trueObject(void);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "ARM32FFIPlugin VMMaker.oscog-eem.3475 " INT_EXT;
static const char *moduleName = "ARM32FFIPlugin VMMaker.oscog-eem.3476 " INT_EXT;
static sqInt nilObj;


Expand Down
60 changes: 30 additions & 30 deletions src/plugins/SqueakFFIPrims/ARM64AppleFFIPlugin.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* Automatically generated by
VMPluginCodeGenerator VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282
VMPluginCodeGenerator VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b
(Compiler-eem.512)
from
ThreadedARM64AppleFFIPlugin VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282
ThreadedARM64AppleFFIPlugin VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b
*/
static char __buildInfo[] = "ThreadedARM64AppleFFIPlugin VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282 " __DATE__ ;
static char __buildInfo[] = "ThreadedARM64AppleFFIPlugin VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b " __DATE__ ;


#include "config.h"
Expand Down Expand Up @@ -157,7 +157,7 @@ static char __buildInfo[] = "ThreadedARM64AppleFFIPlugin VMMaker.oscog-eem.3475
#define FFIFlagAtomic 0x40000
#define FFIFlagPointer 0x20000
#define FFIFlagStructure 0x10000
#define FFIFlagVariadic null
#define FFIFlagVariadic 0x80000000U
#define FFINoCalloutAvailable -1
#define FFIStructSizeMask 0xFFFF
#define FFITypeBool 1
Expand All @@ -178,7 +178,7 @@ static char __buildInfo[] = "ThreadedARM64AppleFFIPlugin VMMaker.oscog-eem.3475
#define MaxNumArgs 15
#define NumFloatRegArgs 8
#define NumIntRegArgs 8
#define PluginVersionInfo " VMMaker.oscog-eem.3475"
#define PluginVersionInfo " VMMaker.oscog-eem.3476"

typedef struct {
char *argVector;
Expand Down Expand Up @@ -541,7 +541,7 @@ extern sqInt trueObject(void);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "ARM64AppleFFIPlugin VMMaker.oscog-eem.3475 " INT_EXT;
static const char *moduleName = "ARM64AppleFFIPlugin VMMaker.oscog-eem.3476 " INT_EXT;
static sqInt nilObj;


Expand Down Expand Up @@ -790,7 +790,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)ptrAddress));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -885,7 +885,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)ptrAddress));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -918,7 +918,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)ptrAddress));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -952,7 +952,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
if (oop == nilObj) {
/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)null));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -1070,7 +1070,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)copy));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -1129,7 +1129,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)pointer));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1155,7 +1155,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)pointer));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1182,7 +1182,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)pointer));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -1216,7 +1216,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)pointer));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1243,7 +1243,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)pointer));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1267,7 +1267,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)pointer));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -1373,7 +1373,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
case 1: // ffiPushUnsigned64:in:
case 8: // ffiPushUnsigned64:in:
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((usqLong) intValue));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1394,7 +1394,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
case 2: // ffiPushUnsigned8:in:
case 10: // ffiPushUnsigned8:in:
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((unsigned char) intValue));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1409,7 +1409,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
case 3: // ffiPushSigned8:in:
case 11: // ffiPushSigned8:in:
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((signed char) intValue));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1424,7 +1424,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
case 4: // ffiPushUnsigned16:in:
case 14: // ffiPushUnsigned16:in:
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((unsigned short) intValue));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1444,7 +1444,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
return 0;
case 5: // ffiPushSigned16:in:
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((signed short) intValue));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1465,7 +1465,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
case 6: // ffiPushUnsigned32:in:
case 15: // ffiPushUnsigned32:in:
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = intValue;
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1485,7 +1485,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
return 0;
case 7: // ffiPushSigned32:in:
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqLong) intValue));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand All @@ -1508,7 +1508,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushSigned64:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqLong) value));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -1547,7 +1547,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c

/* begin ffiPushFloat32:in: */
if ((((calloutState->floatRegisterIndex)) < NumFloatRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
(*((float*) ((&(((calloutState->floatRegisters))[(calloutState->floatRegisterIndex)])))) = valueFloat);
(calloutState->floatRegisterIndex = ((calloutState->floatRegisterIndex)) + 1);
}
Expand All @@ -1571,7 +1571,7 @@ ffiArgumentSpecClassin(sqInt oop, sqInt argSpec, sqInt argClass, CalloutState *c
else {
/* begin ffiPushFloat64:in: */
if ((((calloutState->floatRegisterIndex)) < NumFloatRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->floatRegisters))[(calloutState->floatRegisterIndex)] = floatValue;
(calloutState->floatRegisterIndex = ((calloutState->floatRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -1842,7 +1842,7 @@ ffiPushPointerContentsOfin(sqInt oop, CalloutState *calloutState)

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)ptrAddress));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -1873,7 +1873,7 @@ ffiPushPointerContentsOfin(sqInt oop, CalloutState *calloutState)

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)ptrAddress));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down Expand Up @@ -1913,7 +1913,7 @@ ffiPushPointerContentsOfin(sqInt oop, CalloutState *calloutState)

/* begin ffiPushPointer:in: */
if ((((calloutState->integerRegisterIndex)) < NumIntRegArgs)
&& ((!(0)))) {
&& ((!(((calloutState->ffiArgHeader)) & FFIFlagVariadic)))) {
((calloutState->integerRegisters))[(calloutState->integerRegisterIndex)] = (((sqInt)ptrAddress));
(calloutState->integerRegisterIndex = ((calloutState->integerRegisterIndex)) + 1);
}
Expand Down
12 changes: 6 additions & 6 deletions src/plugins/SqueakFFIPrims/ARM64FFIPlugin.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* Automatically generated by
VMPluginCodeGenerator VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282
VMPluginCodeGenerator VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b
(Compiler-eem.512)
from
ThreadedARM64FFIPlugin VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282
ThreadedARM64FFIPlugin VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b
*/
static char __buildInfo[] = "ThreadedARM64FFIPlugin VMMaker.oscog-eem.3475 uuid: d9ef6856-42d8-4074-bde7-82f1e1d41282 " __DATE__ ;
static char __buildInfo[] = "ThreadedARM64FFIPlugin VMMaker.oscog-eem.3476 uuid: a8f9ea03-8f8b-4d3b-9318-b6e76ca5135b " __DATE__ ;


#include "config.h"
Expand Down Expand Up @@ -157,7 +157,7 @@ static char __buildInfo[] = "ThreadedARM64FFIPlugin VMMaker.oscog-eem.3475 uuid:
#define FFIFlagAtomic 0x40000
#define FFIFlagPointer 0x20000
#define FFIFlagStructure 0x10000
#define FFIFlagVariadic null
#define FFIFlagVariadic 0x80000000U
#define FFINoCalloutAvailable -1
#define FFIStructSizeMask 0xFFFF
#define FFITypeBool 1
Expand All @@ -178,7 +178,7 @@ static char __buildInfo[] = "ThreadedARM64FFIPlugin VMMaker.oscog-eem.3475 uuid:
#define MaxNumArgs 15
#define NumFloatRegArgs 8
#define NumIntRegArgs 8
#define PluginVersionInfo " VMMaker.oscog-eem.3475"
#define PluginVersionInfo " VMMaker.oscog-eem.3476"

typedef struct {
char *argVector;
Expand Down Expand Up @@ -541,7 +541,7 @@ extern sqInt trueObject(void);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "ARM64FFIPlugin VMMaker.oscog-eem.3475 " INT_EXT;
static const char *moduleName = "ARM64FFIPlugin VMMaker.oscog-eem.3476 " INT_EXT;
static sqInt nilObj;


Expand Down
Loading

0 comments on commit 0fdc940

Please sign in to comment.