diff test/suite_x86win32fast/case.cc @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children f5577f6bf97a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/suite_x86win32fast/case.cc	Thu Mar 19 22:24:28 2015 +0100
@@ -0,0 +1,107 @@
+/*
+
+ Package: dyncall
+ Library: test
+ File: test/suite_x86win32fast/case.cc
+ Description: 
+ License:
+
+   Copyright (c) 2007-2015 Daniel Adler <dadler@uni-goettingen.de>, 
+                           Tassilo Philipp <tphilipp@potion-studios.com>
+
+   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/dyncall.h"
+#include "config.h"
+#include "../../dyncall/dyncall_value.h"
+
+DCValue mValue[NARGS];
+
+void clearValues() { for(int i = 0;i<NARGS;++i) mValue[i].L = 0xCAFEBABEDEADC0DEULL; }
+
+template<typename T> void g(T value, int pos);
+
+template<> void g(DCchar value, int pos) { mValue[pos].c = value; }
+template<> void g(DCshort value, int pos) { mValue[pos].s = value; }
+template<> void g(DCint value, int pos) { mValue[pos].i = value; }
+template<> void g(DClong value, int pos) { mValue[pos].l = value; }
+template<> void g(DClonglong value, int pos) { mValue[pos].L = value; }
+template<> void g(DCfloat value, int pos) { mValue[pos].f = value; }
+template<> void g(DCdouble value, int pos) { mValue[pos].d = value; }
+template<> void g(DCpointer value, int pos) { mValue[pos].p = value; }
+
+DCValue* getArg(int pos) { return &mValue[pos]; }
+
+int gID;
+int getId() { return gID; }
+
+#ifdef DC__C_GNU
+#define API __attribute__((fastcall))
+#else
+#define API __fastcall
+#endif
+
+extern "C" {
+
+#define VF0(id,S) void API S () {gID=id;}
+#define VF1(id,A1,S) void API S (A1 a1) {gID=id;g<A1>(a1,0);}
+#define VF2(id,A1,A2,S) void API S (A1 a1, A2 a2) {gID=id;g<A1>(a1,0);g<A2>(a2,1);}
+#define VF3(id,A1,A2,A3,S) void API S (A1 a1, A2 a2,A3 a3) {gID=id;g<A1>(a1,0);g<A2>(a2,1);g<A3>(a3,2);}
+#define VF4(id,A1,A2,A3,A4,S) void API S (A1 a1, A2 a2,A3 a3,A4 a4) {gID=id;g<A1>(a1,0);g<A2>(a2,1);g<A3>(a3,2);g<A4>(a4,3);}
+#define VF5(id,A1,A2,A3,A4,A5,S) void API S (A1 a1, A2 a2,A3 a3,A4 a4,A5 a5) {gID=id;g<A1>(a1,0);g<A2>(a2,1);g<A3>(a3,2);g<A4>(a4,3);g<A5>(a5,4);}
+#define VF6(id,A1,A2,A3,A4,A5,A6,S) void API S (A1 a1, A2 a2,A3 a3,A4 a4,A5 a5,A6 a6) {gID=id;g<A1>(a1,0);g<A2>(a2,1);g<A3>(a3,2);g<A4>(a4,3);g<A5>(a5,4);g<A6>(a6,5);}
+#define VF7(id,A1,A2,A3,A4,A5,A6,A7,S) void API S (A1 a1, A2 a2,A3 a3,A4 a4,A5 a5,A6 a6,A7 a7) {gID=id;g<A1>(a1,0);g<A2>(a2,1);g<A3>(a3,2);g<A4>(a4,3);g<A5>(a5,4);g<A6>(a6,5);g<A7>(a7,6);}
+#define VF8(id,A1,A2,A3,A4,A5,A6,A7,A8,S) void API S (A1 a1, A2 a2,A3 a3,A4 a4,A5 a5,A6 a6,A7 a7,A8 a8) {gID=id;g<A1>(a1,0);g<A2>(a2,1);g<A3>(a3,2);g<A4>(a4,3);g<A5>(a5,4);g<A6>(a6,5);g<A7>(a7,6);g<A8>(a8,7);}
+#define VF9(id,A1,A2,A3,A4,A5,A6,A7,A8,A9,S) void API S (A1 a1, A2 a2,A3 a3,A4 a4,A5 a5,A6 a6,A7 a7,A8 a8,A9 a9) {gID=id;g<A1>(a1,0);g<A2>(a2,1);g<A3>(a3,2);g<A4>(a4,3);g<A5>(a5,4);g<A6>(a6,5);g<A7>(a7,6);g<A8>(a8,7);g<A9>(a9,8);}
+#define VF10(id,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,S) void API S (A1 a1, A2 a2,A3 a3,A4 a4,A5 a5,A6 a6,A7 a7,A8 a8,A9 a9,A10 a10) {gID=id;g<A1>(a1,0);g<A2>(a2,1);g<A3>(a3,2);g<A4>(a4,3);g<A5>(a5,4);g<A6>(a6,5);g<A7>(a7,6);g<A8>(a8,7);g<A9>(a9,8);g<A10>(a10,9);}
+
+#include "case.h"
+
+}
+
+#undef VF0
+#undef VF1
+#undef VF2
+#undef VF3
+#undef VF4
+#undef VF5
+#undef VF6
+#undef VF7
+#undef VF8
+#undef VF9
+#undef VF10
+
+#define VF0(id,S) reinterpret_cast<void(*)()>(S),
+#define VF1(id,A1,S) reinterpret_cast<void(*)()>(S),
+#define VF2(id,A1,A2,S) reinterpret_cast<void(*)()>(S),
+#define VF3(id,A1,A2,A3,S) reinterpret_cast<void(*)()>(S),
+#define VF4(id,A1,A2,A3,A4,S) reinterpret_cast<void(*)()>(S),
+#define VF5(id,A1,A2,A3,A4,A5,S) reinterpret_cast<void(*)()>(S),
+#define VF6(id,A1,A2,A3,A4,A5,A6,S) reinterpret_cast<void(*)()>(S),
+#define VF7(id,A1,A2,A3,A4,A5,A6,A7,S) reinterpret_cast<void(*)()>(S),
+#define VF8(id,A1,A2,A3,A4,A5,A6,A7,A8,S) reinterpret_cast<void(*)()>(S),
+#define VF9(id,A1,A2,A3,A4,A5,A6,A7,A8,A9,S) reinterpret_cast<void(*)()>(S),
+#define VF10(id,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,S) reinterpret_cast<void(*)()>(S),
+
+typedef void (*fp)();
+fp gFuncTable[] = {
+#include "case.h"
+};
+
+DCpointer getFunc(int x) {
+  return (DCpointer) gFuncTable[x];
+}