# HG changeset patch # User Tassilo Philipp # Date 1642415769 -3600 # Node ID 2b708397bba1688095ca4ab2bcf59fcc07753534 # Parent 72024b0957c26f052f56892a2d887c53d4d75d74 - simplified and decluttered test/call_suite diff -r 72024b0957c2 -r 2b708397bba1 test/call_suite/CMakeLists.txt --- a/test/call_suite/CMakeLists.txt Mon Jan 17 10:25:33 2022 +0100 +++ b/test/call_suite/CMakeLists.txt Mon Jan 17 11:36:09 2022 +0100 @@ -1,4 +1,4 @@ -add_executable(call_suite globals.c invoke.c cases.c main.c) +add_executable(call_suite globals.c cases.c main.c) target_link_libraries(call_suite dyncall_s) diff -r 72024b0957c2 -r 2b708397bba1 test/call_suite/Makefile.embedded --- a/test/call_suite/Makefile.embedded Mon Jan 17 10:25:33 2022 +0100 +++ b/test/call_suite/Makefile.embedded Mon Jan 17 11:36:09 2022 +0100 @@ -1,5 +1,5 @@ TARGET = call_suite ${OBJS} -OBJS = globals.o invoke.o cases.o main.o +OBJS = globals.o cases.o main.o SRCDIR = ../.. BLDDIR = ${SRCDIR} diff -r 72024b0957c2 -r 2b708397bba1 test/call_suite/Makefile.generic --- a/test/call_suite/Makefile.generic Mon Jan 17 10:25:33 2022 +0100 +++ b/test/call_suite/Makefile.generic Mon Jan 17 11:36:09 2022 +0100 @@ -1,5 +1,5 @@ APP = call_suite -OBJS = globals.o invoke.o cases.o main.o +OBJS = globals.o cases.o main.o SRCTOP = ${VPATH}/../.. BLDTOP = ../.. CFLAGS += -I${SRCTOP}/dyncall diff -r 72024b0957c2 -r 2b708397bba1 test/call_suite/Nmakefile --- a/test/call_suite/Nmakefile Mon Jan 17 10:25:33 2022 +0100 +++ b/test/call_suite/Nmakefile Mon Jan 17 11:36:09 2022 +0100 @@ -36,7 +36,7 @@ !IF "$(BUILD_OS)" == "windows" TARGETS = call_suite.exe -OBJS = main.obj cases.obj globals.obj invoke.obj +OBJS = main.obj cases.obj globals.obj $(TARGETS): $(OBJS) echo Linking $@ ... @@ -46,7 +46,7 @@ !ELSE IF "$(BUILD_OS)" == "nds" TARGETS = call_suite.nds -OBJS = main.o cases.o globals.o invoke.o +OBJS = main.o cases.o globals.o $(TARGETS): $(OBJS) echo Linking $@ ... diff -r 72024b0957c2 -r 2b708397bba1 test/call_suite/globals.c --- a/test/call_suite/globals.c Mon Jan 17 10:25:33 2022 +0100 +++ b/test/call_suite/globals.c Mon Jan 17 11:36:09 2022 +0100 @@ -27,7 +27,7 @@ #include "globals.h" #include -#define X(CH,T,QCH) T *V_##CH; T *K_##CH; +#define X(CH,T) T *V_##CH; T *K_##CH; DEF_TYPES #undef X @@ -38,7 +38,7 @@ void init_K() { int i; -#define X(CH,T,QCH) V_##CH = (T*) malloc(sizeof(T)*(G_maxargs+1)); K_##CH = (T*) malloc(sizeof(T)*(G_maxargs+1)); +#define X(CH,T) V_##CH = (T*) malloc(sizeof(T)*(G_maxargs+1)); K_##CH = (T*) malloc(sizeof(T)*(G_maxargs+1)); DEF_TYPES #undef X for(i=0;i, - Tassilo Philipp - - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -*/ - -#include "dyncall.h" -#include "globals.h" -#include "../common/platformInit.h" - -int invoke(char const* signature, void* t) -{ - DCCallVM * p = (DCCallVM*) G_callvm; - char const * sig = signature; - char rtype; - char atype; - int pos = 0; - int s = 0; - - clear_V(); - - rtype = *sig++; - dcReset(p); - - while ( (atype = *sig++) != '\0') { - pos++; - switch(atype) { - case 'c': dcArgChar (p,K_c[pos]); break; - case 's': dcArgShort (p,K_s[pos]); break; - case 'i': dcArgInt (p,K_i[pos]); break; - case 'j': dcArgLong (p,K_j[pos]); break; - case 'l': dcArgLongLong(p,K_l[pos]); break; - case 'p': dcArgPointer (p,K_p[pos]); break; - case 'f': dcArgFloat (p,K_f[pos]); break; - case 'd': dcArgDouble (p,K_d[pos]); break; - default: printf("unknown atype '%c' (1) ;", atype); return 0; - } - } - - switch(rtype) - { - case 'v': dcCallVoid(p,t); s=1; /*TODO:check that no return-arg was touched.*/ break; - case 'c': s = (dcCallChar (p,t) == K_c[pos]) ; break; - case 's': s = (dcCallShort (p,t) == K_s[pos]) ; break; - case 'i': s = (dcCallInt (p,t) == K_i[pos]) ; break; - case 'j': s = (dcCallLong (p,t) == K_j[pos]) ; break; - case 'l': s = (dcCallLongLong(p,t) == K_l[pos]) ; break; - case 'p': s = (dcCallPointer (p,t) == K_p[pos]) ; break; - case 'f': s = (dcCallFloat (p,t) == K_f[pos]) ; break; - case 'd': s = (dcCallDouble (p,t) == K_d[pos]) ; break; - default: printf("unknown rtype '%c'", rtype); return 0; - } - - if (!s) { printf("rval wrong;"); return 0; } - /* test: */ - sig = signature+1; - pos = 1; - while ( (atype = *sig++) != '\0') { - switch(atype) { -#if 0 -#define X(CH,T,QCH) case QCH: s = (V_##CH[pos] == K_##CH[pos]); break; -DEF_TYPES -#undef X -#endif - case 'c': s = ( V_c[pos] == K_c[pos] ); if (!s) printf("'c':%d: %d != %d ; ", pos, V_c[pos], K_c[pos]); break; - case 's': s = ( V_s[pos] == K_s[pos] ); if (!s) printf("'s':%d: %d != %d ; ", pos, V_s[pos], K_s[pos]); break; - case 'i': s = ( V_i[pos] == K_i[pos] ); if (!s) printf("'i':%d: %d != %d ; ", pos, V_i[pos], K_i[pos]); break; - case 'j': s = ( V_j[pos] == K_j[pos] ); if (!s) printf("'j':%d: %ld != %ld ; ", pos, V_j[pos], K_j[pos]); break; - case 'l': s = ( V_l[pos] == K_l[pos] ); if (!s) printf("'l':%d: %lld != %lld ; ", pos, V_l[pos], K_l[pos]); break; - case 'p': s = ( V_p[pos] == K_p[pos] ); if (!s) printf("'p':%d: %lld != %lld ; ", pos, (long long) V_p[pos], (long long) K_p[pos]); break; - case 'f': s = ( V_f[pos] == K_f[pos] ); if (!s) printf("'f':%d: %f != %f ; ", pos, V_f[pos], K_f[pos]); break; - case 'd': s = ( V_d[pos] == K_d[pos] ); if (!s) printf("'d':%d: %f != %f ; ", pos, V_d[pos], K_d[pos]); break; - default: printf("unknown atype '%c' ; ", atype); return 0; - } - if (!s) { - printf("arg mismatch at %d ; ", pos); - return 0; - } - pos++; - } - return 1; -} - diff -r 72024b0957c2 -r 2b708397bba1 test/call_suite/main.c --- a/test/call_suite/main.c Mon Jan 17 10:25:33 2022 +0100 +++ b/test/call_suite/main.c Mon Jan 17 11:36:09 2022 +0100 @@ -30,10 +30,79 @@ #include "../common/platformInit.c" /* Impl. for functions only used in this translation unit */ -char linebuf[1024]; void* G_callvm; + + +int invoke(char const* signature, void* t) +{ + DCCallVM * p = (DCCallVM*) G_callvm; + char const * sig = signature; + char rtype; + char atype; + int pos = 0; + int s = 0; + + clear_V(); -int run_test(int i) { + rtype = *sig++; + dcReset(p); + + while ( (atype = *sig++) != '\0') { + pos++; + switch(atype) { + case 'c': dcArgChar (p,K_c[pos]); break; + case 's': dcArgShort (p,K_s[pos]); break; + case 'i': dcArgInt (p,K_i[pos]); break; + case 'j': dcArgLong (p,K_j[pos]); break; + case 'l': dcArgLongLong(p,K_l[pos]); break; + case 'p': dcArgPointer (p,K_p[pos]); break; + case 'f': dcArgFloat (p,K_f[pos]); break; + case 'd': dcArgDouble (p,K_d[pos]); break; + default: printf("unknown atype '%c' (1) ;", atype); return 0; + } + } + + switch(rtype) + { + case 'v': dcCallVoid(p,t); s=1; /*TODO:check that no return-arg was touched.*/ break; + case 'c': s = (dcCallChar (p,t) == K_c[pos]) ; break; + case 's': s = (dcCallShort (p,t) == K_s[pos]) ; break; + case 'i': s = (dcCallInt (p,t) == K_i[pos]) ; break; + case 'j': s = (dcCallLong (p,t) == K_j[pos]) ; break; + case 'l': s = (dcCallLongLong(p,t) == K_l[pos]) ; break; + case 'p': s = (dcCallPointer (p,t) == K_p[pos]) ; break; + case 'f': s = (dcCallFloat (p,t) == K_f[pos]) ; break; + case 'd': s = (dcCallDouble (p,t) == K_d[pos]) ; break; + default: printf("unknown rtype '%c'", rtype); return 0; + } + + if (!s) { printf("rval wrong;"); return 0; } + /* test: */ + sig = signature+1; + pos = 1; + while ( (atype = *sig++) != '\0') { + switch(atype) { + case 'c': s = ( V_c[pos] == K_c[pos] ); if (!s) printf("'c':%d: %d != %d ; ", pos, V_c[pos], K_c[pos]); break; + case 's': s = ( V_s[pos] == K_s[pos] ); if (!s) printf("'s':%d: %d != %d ; ", pos, V_s[pos], K_s[pos]); break; + case 'i': s = ( V_i[pos] == K_i[pos] ); if (!s) printf("'i':%d: %d != %d ; ", pos, V_i[pos], K_i[pos]); break; + case 'j': s = ( V_j[pos] == K_j[pos] ); if (!s) printf("'j':%d: %ld != %ld ; ", pos, V_j[pos], K_j[pos]); break; + case 'l': s = ( V_l[pos] == K_l[pos] ); if (!s) printf("'l':%d: %lld != %lld ; ", pos, V_l[pos], K_l[pos]); break; + case 'p': s = ( V_p[pos] == K_p[pos] ); if (!s) printf("'p':%d: %lld != %lld ; ", pos, (long long) V_p[pos], (long long) K_p[pos]); break; + case 'f': s = ( V_f[pos] == K_f[pos] ); if (!s) printf("'f':%d: %f != %f ; ", pos, V_f[pos], K_f[pos]); break; + case 'd': s = ( V_d[pos] == K_d[pos] ); if (!s) printf("'d':%d: %f != %f ; ", pos, V_d[pos], K_d[pos]); break; + default: printf("unknown atype '%c' ; ", atype); return 0; + } + if (!s) { + printf("arg mismatch at %d ; ", pos); + return 0; + } + pos++; + } + return 1; +} + +int run_test(int i) +{ char const * sig; void * target; int success; @@ -45,12 +114,13 @@ return success; } -int run_all() { +int run_all() +{ int i; int failure = 0; - for(i=0;i