Skip to content

Commit

Permalink
CogVM source as per VMMaker.oscog-eem.2925
Browse files Browse the repository at this point in the history
The FFI plugins need to be regenerated for ioLoadSymbol:OfLength:FromModule:
  • Loading branch information
eliotmiranda committed Jan 8, 2021
1 parent 0c72d2b commit 419dae1
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 35 deletions.
14 changes: 7 additions & 7 deletions src/plugins/SqueakFFIPrims/ARM32FFIPlugin.c
@@ -1,9 +1,9 @@
/* Automatically generated by
VMPluginCodeGenerator VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
VMPluginCodeGenerator VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
from
ThreadedARM32FFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
ThreadedARM32FFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
*/
static char __buildInfo[] = "ThreadedARM32FFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec " __DATE__ ;
static char __buildInfo[] = "ThreadedARM32FFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3 " __DATE__ ;



Expand Down Expand Up @@ -176,7 +176,7 @@ static char __buildInfo[] = "ThreadedARM32FFIPlugin VMMaker.oscog-eem.2895 uuid:
#define MaxNumArgs 15
#define NumFloatRegArgs 16
#define NumIntRegArgs 4
#define PluginVersionInfo " VMMaker.oscog-eem.2895"
#define PluginVersionInfo " VMMaker.oscog-eem.2929"
#define PrimErrBadArgument 3
#define PrimErrBadMethod 12
#define PrimErrBadNumArgs 5
Expand Down Expand Up @@ -381,7 +381,7 @@ static sqInt (*integerObjectOf)(sqInt value);
static sqInt (*integerValueOf)(sqInt oop);
#endif
static void * (*ioLoadModuleOfLength)(sqInt moduleNameIndex, sqInt moduleLength);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
static sqInt (*isKindOfClass)(sqInt oop, sqInt aClass);
static sqInt (*isArray)(sqInt oop);
static sqInt (*isBytes)(sqInt oop);
Expand Down Expand Up @@ -474,7 +474,7 @@ extern sqInt integerObjectOf(sqInt value);
extern sqInt integerValueOf(sqInt oop);
#endif
extern void * ioLoadModuleOfLength(sqInt moduleNameIndex, sqInt moduleLength);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
extern sqInt isKindOfClass(sqInt oop, sqInt aClass);
extern sqInt isArray(sqInt oop);
extern sqInt isBytes(sqInt oop);
Expand Down Expand Up @@ -540,7 +540,7 @@ extern sqInt trueObject(void);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "ARM32FFIPlugin VMMaker.oscog-eem.2895 " INT_EXT;
static const char *moduleName = "ARM32FFIPlugin VMMaker.oscog-eem.2929 " INT_EXT;


/*** Macros ***/
Expand Down
14 changes: 7 additions & 7 deletions src/plugins/SqueakFFIPrims/ARM64FFIPlugin.c
@@ -1,9 +1,9 @@
/* Automatically generated by
VMPluginCodeGenerator VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
VMPluginCodeGenerator VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
from
ThreadedARM64FFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
ThreadedARM64FFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
*/
static char __buildInfo[] = "ThreadedARM64FFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec " __DATE__ ;
static char __buildInfo[] = "ThreadedARM64FFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3 " __DATE__ ;



Expand Down Expand Up @@ -176,7 +176,7 @@ static char __buildInfo[] = "ThreadedARM64FFIPlugin VMMaker.oscog-eem.2895 uuid:
#define MaxNumArgs 15
#define NumFloatRegArgs 8
#define NumIntRegArgs 8
#define PluginVersionInfo " VMMaker.oscog-eem.2895"
#define PluginVersionInfo " VMMaker.oscog-eem.2929"
#define PrimErrBadArgument 3
#define PrimErrBadMethod 12
#define PrimErrBadNumArgs 5
Expand Down Expand Up @@ -384,7 +384,7 @@ static sqInt (*integerObjectOf)(sqInt value);
static sqInt (*integerValueOf)(sqInt oop);
#endif
static void * (*ioLoadModuleOfLength)(sqInt moduleNameIndex, sqInt moduleLength);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
static sqInt (*isKindOfClass)(sqInt oop, sqInt aClass);
static sqInt (*isArray)(sqInt oop);
static sqInt (*isBytes)(sqInt oop);
Expand Down Expand Up @@ -477,7 +477,7 @@ extern sqInt integerObjectOf(sqInt value);
extern sqInt integerValueOf(sqInt oop);
#endif
extern void * ioLoadModuleOfLength(sqInt moduleNameIndex, sqInt moduleLength);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
extern sqInt isKindOfClass(sqInt oop, sqInt aClass);
extern sqInt isArray(sqInt oop);
extern sqInt isBytes(sqInt oop);
Expand Down Expand Up @@ -543,7 +543,7 @@ extern sqInt trueObject(void);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "ARM64FFIPlugin VMMaker.oscog-eem.2895 " INT_EXT;
static const char *moduleName = "ARM64FFIPlugin VMMaker.oscog-eem.2929 " INT_EXT;


/*** Macros ***/
Expand Down
14 changes: 7 additions & 7 deletions src/plugins/SqueakFFIPrims/IA32FFIPlugin.c
@@ -1,9 +1,9 @@
/* Automatically generated by
VMPluginCodeGenerator VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
VMPluginCodeGenerator VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
from
ThreadedIA32FFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
ThreadedIA32FFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
*/
static char __buildInfo[] = "ThreadedIA32FFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec " __DATE__ ;
static char __buildInfo[] = "ThreadedIA32FFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3 " __DATE__ ;



Expand Down Expand Up @@ -174,7 +174,7 @@ static char __buildInfo[] = "ThreadedIA32FFIPlugin VMMaker.oscog-eem.2895 uuid:
#define FFITypeUnsignedShort 4
#define FFITypeVoid 0
#define MaxNumArgs 15
#define PluginVersionInfo " VMMaker.oscog-eem.2895"
#define PluginVersionInfo " VMMaker.oscog-eem.2929"
#define PrimErrBadArgument 3
#define PrimErrBadMethod 12
#define PrimErrBadNumArgs 5
Expand Down Expand Up @@ -372,7 +372,7 @@ static sqInt (*integerObjectOf)(sqInt value);
static sqInt (*integerValueOf)(sqInt oop);
#endif
static void * (*ioLoadModuleOfLength)(sqInt moduleNameIndex, sqInt moduleLength);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
static sqInt (*isKindOfClass)(sqInt oop, sqInt aClass);
static sqInt (*isArray)(sqInt oop);
static sqInt (*isBytes)(sqInt oop);
Expand Down Expand Up @@ -465,7 +465,7 @@ extern sqInt integerObjectOf(sqInt value);
extern sqInt integerValueOf(sqInt oop);
#endif
extern void * ioLoadModuleOfLength(sqInt moduleNameIndex, sqInt moduleLength);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
extern sqInt isKindOfClass(sqInt oop, sqInt aClass);
extern sqInt isArray(sqInt oop);
extern sqInt isBytes(sqInt oop);
Expand Down Expand Up @@ -531,7 +531,7 @@ extern sqInt trueObject(void);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "IA32FFIPlugin VMMaker.oscog-eem.2895 " INT_EXT;
static const char *moduleName = "IA32FFIPlugin VMMaker.oscog-eem.2929 " INT_EXT;


/*** Macros ***/
Expand Down
14 changes: 7 additions & 7 deletions src/plugins/SqueakFFIPrims/X64SysVFFIPlugin.c
@@ -1,9 +1,9 @@
/* Automatically generated by
VMPluginCodeGenerator VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
VMPluginCodeGenerator VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
from
ThreadedX64SysVFFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
ThreadedX64SysVFFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
*/
static char __buildInfo[] = "ThreadedX64SysVFFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec " __DATE__ ;
static char __buildInfo[] = "ThreadedX64SysVFFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3 " __DATE__ ;



Expand Down Expand Up @@ -176,7 +176,7 @@ static char __buildInfo[] = "ThreadedX64SysVFFIPlugin VMMaker.oscog-eem.2895 uui
#define MaxNumArgs 15
#define NumFloatRegArgs 8
#define NumIntRegArgs 6
#define PluginVersionInfo " VMMaker.oscog-eem.2895"
#define PluginVersionInfo " VMMaker.oscog-eem.2929"
#define PrimErrBadArgument 3
#define PrimErrBadMethod 12
#define PrimErrBadNumArgs 5
Expand Down Expand Up @@ -419,7 +419,7 @@ static sqInt (*integerObjectOf)(sqInt value);
static sqInt (*integerValueOf)(sqInt oop);
#endif
static void * (*ioLoadModuleOfLength)(sqInt moduleNameIndex, sqInt moduleLength);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
static sqInt (*isKindOfClass)(sqInt oop, sqInt aClass);
static sqInt (*isArray)(sqInt oop);
static sqInt (*isBytes)(sqInt oop);
Expand Down Expand Up @@ -512,7 +512,7 @@ extern sqInt integerObjectOf(sqInt value);
extern sqInt integerValueOf(sqInt oop);
#endif
extern void * ioLoadModuleOfLength(sqInt moduleNameIndex, sqInt moduleLength);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
extern sqInt isKindOfClass(sqInt oop, sqInt aClass);
extern sqInt isArray(sqInt oop);
extern sqInt isBytes(sqInt oop);
Expand Down Expand Up @@ -578,7 +578,7 @@ extern sqInt trueObject(void);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "X64SysVFFIPlugin VMMaker.oscog-eem.2895 " INT_EXT;
static const char *moduleName = "X64SysVFFIPlugin VMMaker.oscog-eem.2929 " INT_EXT;


/*** Macros ***/
Expand Down
14 changes: 7 additions & 7 deletions src/plugins/SqueakFFIPrims/X64Win64FFIPlugin.c
@@ -1,9 +1,9 @@
/* Automatically generated by
VMPluginCodeGenerator VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
VMPluginCodeGenerator VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
from
ThreadedX64Win64FFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec
ThreadedX64Win64FFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3
*/
static char __buildInfo[] = "ThreadedX64Win64FFIPlugin VMMaker.oscog-eem.2895 uuid: b23435ec-e114-4c55-9349-24ab4b95baec " __DATE__ ;
static char __buildInfo[] = "ThreadedX64Win64FFIPlugin VMMaker.oscog-eem.2929 uuid: c5db190c-4c95-4719-819e-6010319abfe3 " __DATE__ ;



Expand Down Expand Up @@ -176,7 +176,7 @@ static char __buildInfo[] = "ThreadedX64Win64FFIPlugin VMMaker.oscog-eem.2895 uu
#define MaxNumArgs 15
#define NumFloatRegArgs 4
#define NumIntRegArgs 4
#define PluginVersionInfo " VMMaker.oscog-eem.2895"
#define PluginVersionInfo " VMMaker.oscog-eem.2929"
#define PrimErrBadArgument 3
#define PrimErrBadMethod 12
#define PrimErrBadNumArgs 5
Expand Down Expand Up @@ -385,7 +385,7 @@ static sqInt (*integerObjectOf)(sqInt value);
static sqInt (*integerValueOf)(sqInt oop);
#endif
static void * (*ioLoadModuleOfLength)(sqInt moduleNameIndex, sqInt moduleLength);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
static void * (*ioLoadSymbolOfLengthFromModule)(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
static sqInt (*isKindOfClass)(sqInt oop, sqInt aClass);
static sqInt (*isArray)(sqInt oop);
static sqInt (*isBytes)(sqInt oop);
Expand Down Expand Up @@ -478,7 +478,7 @@ extern sqInt integerObjectOf(sqInt value);
extern sqInt integerValueOf(sqInt oop);
#endif
extern void * ioLoadModuleOfLength(sqInt moduleNameIndex, sqInt moduleLength);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, sqInt moduleHandle);
extern void * ioLoadSymbolOfLengthFromModule(sqInt functionNameIndex, sqInt functionLength, void *moduleHandle);
extern sqInt isKindOfClass(sqInt oop, sqInt aClass);
extern sqInt isArray(sqInt oop);
extern sqInt isBytes(sqInt oop);
Expand Down Expand Up @@ -544,7 +544,7 @@ extern sqInt trueObject(void);
extern
#endif
struct VirtualMachine* interpreterProxy;
static const char *moduleName = "X64Win64FFIPlugin VMMaker.oscog-eem.2895 " INT_EXT;
static const char *moduleName = "X64Win64FFIPlugin VMMaker.oscog-eem.2929 " INT_EXT;


/*** Macros ***/
Expand Down

0 comments on commit 419dae1

Please sign in to comment.