From d5fbff3f449a8baeca92b1a2c4a4a4a4c9e6e446 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Mon, 26 Sep 2005 22:23:46 +0000 Subject: [PATCH] revert int->long change as it breaks on 64bit. Actually only VM_CallInterpreted hurts as VM_CallCompiled is only used on 32bit. Use same arg types for consistency nevertheless. --- code/qcommon/vm.c | 7 ++++--- code/qcommon/vm_interpreted.c | 2 +- code/qcommon/vm_local.h | 4 ++-- code/qcommon/vm_none.c | 2 +- code/qcommon/vm_ppc.c | 2 +- code/qcommon/vm_x86.c | 2 +- 6 files changed, 10 insertions(+), 9 deletions(-) diff --git a/code/qcommon/vm.c b/code/qcommon/vm.c index 2193e039..d5bb3aac 100644 --- a/code/qcommon/vm.c +++ b/code/qcommon/vm.c @@ -718,11 +718,12 @@ long QDECL VM_Call( vm_t *vm, long callnum, ... ) { args[12], args[13], args[14], args[15]); #if defined(HAVE_VM_COMPILED) } else if ( vm->compiled ) { - r = VM_CallCompiled( vm, &callnum ); + // only used on 32bit machines so this cast is fine + r = VM_CallCompiled( vm, (int*)&callnum ); #endif } else { struct { - long callnum; + int callnum; int args[16]; } a; va_list ap; @@ -852,7 +853,7 @@ void VM_LogSyscalls( int *args ) { f = fopen("syscalls.log", "w" ); } callnum++; - fprintf(f, "%i: %li (%i) = %i %i %i %i\n", callnum, (long)( args - (int *)currentVM->dataBase ), + fprintf(f, "%i: %li (%i) = %i %i %i %i\n", callnum, (long)(args - (int *)currentVM->dataBase), args[0], args[1], args[2], args[3], args[4] ); } diff --git a/code/qcommon/vm_interpreted.c b/code/qcommon/vm_interpreted.c index 619ee67d..0d0d90ff 100644 --- a/code/qcommon/vm_interpreted.c +++ b/code/qcommon/vm_interpreted.c @@ -310,7 +310,7 @@ locals from sp #define DEBUGSTR va("%s%i", VM_Indent(vm), opStack-stack ) -int VM_CallInterpreted( vm_t *vm, long *args ) { +int VM_CallInterpreted( vm_t *vm, int *args ) { int stack[MAX_STACK]; int *opStack; int programCounter; diff --git a/code/qcommon/vm_local.h b/code/qcommon/vm_local.h index 7df5ec1c..f6fc043f 100644 --- a/code/qcommon/vm_local.h +++ b/code/qcommon/vm_local.h @@ -168,10 +168,10 @@ extern vm_t *currentVM; extern int vm_debugLevel; void VM_Compile( vm_t *vm, vmHeader_t *header ); -int VM_CallCompiled( vm_t *vm, long *args ); +int VM_CallCompiled( vm_t *vm, int *args ); void VM_PrepareInterpreter( vm_t *vm, vmHeader_t *header ); -int VM_CallInterpreted( vm_t *vm, long *args ); +int VM_CallInterpreted( vm_t *vm, int *args ); vmSymbol_t *VM_ValueToFunctionSymbol( vm_t *vm, int value ); int VM_SymbolToValue( vm_t *vm, const char *symbol ); diff --git a/code/qcommon/vm_none.c b/code/qcommon/vm_none.c index 23163865..c7e5ba08 100644 --- a/code/qcommon/vm_none.c +++ b/code/qcommon/vm_none.c @@ -1,6 +1,6 @@ #include "vm_local.h" -int VM_CallCompiled( vm_t *vm, long *args ) { +int VM_CallCompiled( vm_t *vm, int *args ) { exit(99); return 0; } diff --git a/code/qcommon/vm_ppc.c b/code/qcommon/vm_ppc.c index 43d910d7..a891ef6f 100644 --- a/code/qcommon/vm_ppc.c +++ b/code/qcommon/vm_ppc.c @@ -1161,7 +1161,7 @@ VM_CallCompiled This function is called directly by the generated code ============== */ -int VM_CallCompiled( vm_t *vm, long *args ) { +int VM_CallCompiled( vm_t *vm, int *args ) { int stack[1024]; int programStack; int stackOnEntry; diff --git a/code/qcommon/vm_x86.c b/code/qcommon/vm_x86.c index 4f7bca05..a46161ae 100644 --- a/code/qcommon/vm_x86.c +++ b/code/qcommon/vm_x86.c @@ -1101,7 +1101,7 @@ This function is called directly by the generated code ============== */ #ifndef DLL_ONLY // bk010215 - for DLL_ONLY dedicated servers/builds w/o VM -int VM_CallCompiled( vm_t *vm, long *args ) { +int VM_CallCompiled( vm_t *vm, int *args ) { int stack[1024]; int programCounter; int programStack;