2013-04-18 00:51:51 +04:00
|
|
|
#include <libtcc.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2013-04-19 14:08:12 +04:00
|
|
|
#include <stdarg.h>
|
2013-04-18 00:51:51 +04:00
|
|
|
|
|
|
|
static const char *tccdir = NULL;
|
|
|
|
|
|
|
|
typedef int (*callback_type) (void*);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compile source code and call a callback with a pointer to the symbol "f".
|
|
|
|
*/
|
|
|
|
static int run_callback(const char *src, callback_type callback) {
|
|
|
|
TCCState *s;
|
|
|
|
int result;
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
s = tcc_new();
|
|
|
|
if (!s)
|
|
|
|
return -1;
|
|
|
|
if (tccdir)
|
|
|
|
tcc_set_lib_path(s, tccdir);
|
|
|
|
if (tcc_set_output_type(s, TCC_OUTPUT_MEMORY) == -1)
|
|
|
|
return -1;
|
|
|
|
if (tcc_compile_string(s, src) == -1)
|
|
|
|
return -1;
|
|
|
|
if (tcc_relocate(s, TCC_RELOCATE_AUTO) == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ptr = tcc_get_symbol(s, "f");
|
|
|
|
if (!ptr)
|
|
|
|
return -1;
|
|
|
|
result = callback(ptr);
|
|
|
|
|
|
|
|
tcc_delete(s);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-18 20:55:00 +04:00
|
|
|
#define RET_PRIMITIVE_TEST(name, type) \
|
|
|
|
static int ret_ ## name ## _test_callback(void *ptr) { \
|
|
|
|
type (*callback) (type) = (type(*)(type))ptr; \
|
|
|
|
type x = 29; \
|
|
|
|
type y = callback(x); \
|
|
|
|
return (y == x+x) ? 0 : -1; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static int ret_ ## name ## _test(void) { \
|
|
|
|
const char *src = #type " f(" #type " x) {return x+x;}"; \
|
|
|
|
return run_callback(src, ret_ ## name ## _test_callback); \
|
|
|
|
}
|
|
|
|
|
|
|
|
RET_PRIMITIVE_TEST(int, int)
|
|
|
|
RET_PRIMITIVE_TEST(longlong, long long)
|
|
|
|
RET_PRIMITIVE_TEST(float, float)
|
|
|
|
RET_PRIMITIVE_TEST(double, double)
|
2013-04-19 03:40:48 +04:00
|
|
|
RET_PRIMITIVE_TEST(longdouble, long double)
|
2013-04-18 20:55:00 +04:00
|
|
|
|
2013-04-19 14:08:12 +04:00
|
|
|
/*
|
|
|
|
* ret_2float_test:
|
|
|
|
*
|
|
|
|
* On x86-64, a struct with 2 floats should be packed into a single
|
|
|
|
* SSE register (VT_DOUBLE is used for this purpose).
|
|
|
|
*/
|
2013-04-18 20:55:00 +04:00
|
|
|
typedef struct ret_2float_test_type_s {float x, y;} ret_2float_test_type;
|
|
|
|
typedef ret_2float_test_type (*ret_2float_test_function_type) (ret_2float_test_type);
|
|
|
|
|
|
|
|
static int ret_2float_test_callback(void *ptr) {
|
|
|
|
ret_2float_test_function_type f = (ret_2float_test_function_type)ptr;
|
|
|
|
ret_2float_test_type a = {10, 35};
|
|
|
|
ret_2float_test_type r;
|
|
|
|
r = f(a);
|
|
|
|
return ((r.x == a.x*5) && (r.y == a.y*3)) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ret_2float_test(void) {
|
|
|
|
const char *src =
|
|
|
|
"typedef struct ret_2float_test_type_s {float x, y;} ret_2float_test_type;"
|
|
|
|
"ret_2float_test_type f(ret_2float_test_type a) {\n"
|
|
|
|
" ret_2float_test_type r = {a.x*5, a.y*3};\n"
|
|
|
|
" return r;\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
return run_callback(src, ret_2float_test_callback);
|
|
|
|
}
|
|
|
|
|
2013-04-19 14:08:12 +04:00
|
|
|
/*
|
|
|
|
* ret_2double_test:
|
|
|
|
*
|
2013-04-19 18:33:16 +04:00
|
|
|
* On x86-64, a struct with 2 doubles should be passed in two SSE
|
|
|
|
* registers.
|
2013-04-19 14:08:12 +04:00
|
|
|
*/
|
|
|
|
typedef struct ret_2double_test_type_s {double x, y;} ret_2double_test_type;
|
|
|
|
typedef ret_2double_test_type (*ret_2double_test_function_type) (ret_2double_test_type);
|
|
|
|
|
|
|
|
static int ret_2double_test_callback(void *ptr) {
|
|
|
|
ret_2double_test_function_type f = (ret_2double_test_function_type)ptr;
|
|
|
|
ret_2double_test_type a = {10, 35};
|
|
|
|
ret_2double_test_type r;
|
|
|
|
r = f(a);
|
|
|
|
return ((r.x == a.x*5) && (r.y == a.y*3)) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ret_2double_test(void) {
|
|
|
|
const char *src =
|
|
|
|
"typedef struct ret_2double_test_type_s {double x, y;} ret_2double_test_type;"
|
|
|
|
"ret_2double_test_type f(ret_2double_test_type a) {\n"
|
|
|
|
" ret_2double_test_type r = {a.x*5, a.y*3};\n"
|
|
|
|
" return r;\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
return run_callback(src, ret_2double_test_callback);
|
|
|
|
}
|
|
|
|
|
2013-04-18 20:27:34 +04:00
|
|
|
/*
|
|
|
|
* reg_pack_test: return a small struct which should be packed into
|
|
|
|
* registers (Win32) during return.
|
|
|
|
*/
|
|
|
|
typedef struct reg_pack_test_type_s {int x, y;} reg_pack_test_type;
|
|
|
|
typedef reg_pack_test_type (*reg_pack_test_function_type) (reg_pack_test_type);
|
|
|
|
|
|
|
|
static int reg_pack_test_callback(void *ptr) {
|
|
|
|
reg_pack_test_function_type f = (reg_pack_test_function_type)ptr;
|
|
|
|
reg_pack_test_type a = {10, 35};
|
|
|
|
reg_pack_test_type r;
|
|
|
|
r = f(a);
|
|
|
|
return ((r.x == a.x*5) && (r.y == a.y*3)) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int reg_pack_test(void) {
|
|
|
|
const char *src =
|
|
|
|
"typedef struct reg_pack_test_type_s {int x, y;} reg_pack_test_type;"
|
|
|
|
"reg_pack_test_type f(reg_pack_test_type a) {\n"
|
|
|
|
" reg_pack_test_type r = {a.x*5, a.y*3};\n"
|
|
|
|
" return r;\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
return run_callback(src, reg_pack_test_callback);
|
|
|
|
}
|
|
|
|
|
2013-04-19 14:08:12 +04:00
|
|
|
/*
|
|
|
|
* reg_pack_longlong_test: return a small struct which should be packed into
|
|
|
|
* registers (x86-64) during return.
|
|
|
|
*/
|
|
|
|
typedef struct reg_pack_longlong_test_type_s {long long x, y;} reg_pack_longlong_test_type;
|
|
|
|
typedef reg_pack_longlong_test_type (*reg_pack_longlong_test_function_type) (reg_pack_longlong_test_type);
|
|
|
|
|
|
|
|
static int reg_pack_longlong_test_callback(void *ptr) {
|
|
|
|
reg_pack_longlong_test_function_type f = (reg_pack_longlong_test_function_type)ptr;
|
|
|
|
reg_pack_longlong_test_type a = {10, 35};
|
|
|
|
reg_pack_longlong_test_type r;
|
|
|
|
r = f(a);
|
|
|
|
return ((r.x == a.x*5) && (r.y == a.y*3)) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int reg_pack_longlong_test(void) {
|
|
|
|
const char *src =
|
|
|
|
"typedef struct reg_pack_longlong_test_type_s {long long x, y;} reg_pack_longlong_test_type;"
|
|
|
|
"reg_pack_longlong_test_type f(reg_pack_longlong_test_type a) {\n"
|
|
|
|
" reg_pack_longlong_test_type r = {a.x*5, a.y*3};\n"
|
|
|
|
" return r;\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
return run_callback(src, reg_pack_longlong_test_callback);
|
|
|
|
}
|
|
|
|
|
2013-04-18 20:27:34 +04:00
|
|
|
/*
|
|
|
|
* sret_test: Create a struct large enough to be returned via sret
|
|
|
|
* (hidden pointer as first function argument)
|
|
|
|
*/
|
2013-04-18 20:55:00 +04:00
|
|
|
typedef struct sret_test_type_s {long long a, b, c;} sret_test_type;
|
2013-04-18 20:27:34 +04:00
|
|
|
typedef sret_test_type (*sret_test_function_type) (sret_test_type);
|
2013-04-18 00:51:51 +04:00
|
|
|
|
2013-04-18 20:27:34 +04:00
|
|
|
static int sret_test_callback(void *ptr) {
|
|
|
|
sret_test_function_type f = (sret_test_function_type)(ptr);
|
2013-04-18 20:55:00 +04:00
|
|
|
sret_test_type x = {5436LL, 658277698LL, 43878957LL};
|
2013-04-18 20:27:34 +04:00
|
|
|
sret_test_type r = f(x);
|
2013-04-18 20:55:00 +04:00
|
|
|
return ((r.a==x.a*35)&&(r.b==x.b*19)&&(r.c==x.c*21)) ? 0 : -1;
|
2013-04-18 00:51:51 +04:00
|
|
|
}
|
|
|
|
|
2013-04-18 20:27:34 +04:00
|
|
|
static int sret_test(void) {
|
2013-04-18 00:51:51 +04:00
|
|
|
const char *src =
|
2013-04-18 20:55:00 +04:00
|
|
|
"typedef struct sret_test_type_s {long long a, b, c;} sret_test_type;\n"
|
2013-04-18 20:27:34 +04:00
|
|
|
"sret_test_type f(sret_test_type x) {\n"
|
2013-04-18 20:55:00 +04:00
|
|
|
" sret_test_type r = {x.a*35, x.b*19, x.c*21};\n"
|
2013-04-18 00:51:51 +04:00
|
|
|
" return r;\n"
|
|
|
|
"}\n";
|
|
|
|
|
2013-04-18 20:27:34 +04:00
|
|
|
return run_callback(src, sret_test_callback);
|
2013-04-18 00:51:51 +04:00
|
|
|
}
|
|
|
|
|
2013-04-19 14:08:12 +04:00
|
|
|
/*
|
|
|
|
* one_member_union_test:
|
|
|
|
*
|
|
|
|
* In the x86-64 ABI a union should always be passed on the stack. However
|
|
|
|
* it appears that a single member union is treated by GCC as its member.
|
|
|
|
*/
|
2013-04-19 03:40:48 +04:00
|
|
|
typedef union one_member_union_test_type_u {int x;} one_member_union_test_type;
|
|
|
|
typedef one_member_union_test_type (*one_member_union_test_function_type) (one_member_union_test_type);
|
|
|
|
|
|
|
|
static int one_member_union_test_callback(void *ptr) {
|
|
|
|
one_member_union_test_function_type f = (one_member_union_test_function_type)ptr;
|
|
|
|
one_member_union_test_type a, b;
|
|
|
|
a.x = 34;
|
|
|
|
b = f(a);
|
|
|
|
return (b.x == a.x*2) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int one_member_union_test(void) {
|
|
|
|
const char *src =
|
|
|
|
"typedef union one_member_union_test_type_u {int x;} one_member_union_test_type;\n"
|
|
|
|
"one_member_union_test_type f(one_member_union_test_type a) {\n"
|
|
|
|
" one_member_union_test_type b;\n"
|
|
|
|
" b.x = a.x * 2;\n"
|
|
|
|
" return b;\n"
|
|
|
|
"}\n";
|
|
|
|
return run_callback(src, one_member_union_test_callback);
|
|
|
|
}
|
|
|
|
|
2013-04-19 14:08:12 +04:00
|
|
|
/*
|
|
|
|
* two_member_union_test:
|
|
|
|
*
|
|
|
|
* In the x86-64 ABI a union should always be passed on the stack.
|
|
|
|
*/
|
2013-04-19 03:40:48 +04:00
|
|
|
typedef union two_member_union_test_type_u {int x; long y;} two_member_union_test_type;
|
|
|
|
typedef two_member_union_test_type (*two_member_union_test_function_type) (two_member_union_test_type);
|
|
|
|
|
|
|
|
static int two_member_union_test_callback(void *ptr) {
|
|
|
|
two_member_union_test_function_type f = (two_member_union_test_function_type)ptr;
|
|
|
|
two_member_union_test_type a, b;
|
|
|
|
a.x = 34;
|
|
|
|
b = f(a);
|
|
|
|
return (b.x == a.x*2) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int two_member_union_test(void) {
|
|
|
|
const char *src =
|
|
|
|
"typedef union two_member_union_test_type_u {int x; long y;} two_member_union_test_type;\n"
|
|
|
|
"two_member_union_test_type f(two_member_union_test_type a) {\n"
|
|
|
|
" two_member_union_test_type b;\n"
|
|
|
|
" b.x = a.x * 2;\n"
|
|
|
|
" return b;\n"
|
|
|
|
"}\n";
|
|
|
|
return run_callback(src, two_member_union_test_callback);
|
|
|
|
}
|
|
|
|
|
2013-04-19 14:08:12 +04:00
|
|
|
/*
|
|
|
|
* stdarg_test: Test variable argument list ABI
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef void (*stdarg_test_function_type) (int,int,...);
|
|
|
|
|
|
|
|
static int stdarg_test_callback(void *ptr) {
|
|
|
|
stdarg_test_function_type f = (stdarg_test_function_type)ptr;
|
|
|
|
int x;
|
|
|
|
double y;
|
|
|
|
f(10, 10,
|
|
|
|
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, &x,
|
|
|
|
1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, &y);
|
|
|
|
return ((x == 55) && (y == 55)) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stdarg_test(void) {
|
|
|
|
const char *src =
|
|
|
|
"#include <stdarg.h>\n"
|
|
|
|
"void f(int n_int, int n_float, ...) {\n"
|
|
|
|
" int i, ti;\n"
|
|
|
|
" double td;\n"
|
|
|
|
" va_list ap;\n"
|
|
|
|
" va_start(ap, n_float);\n"
|
|
|
|
" for (i = 0, ti = 0; i < n_int; ++i)\n"
|
|
|
|
" ti += va_arg(ap, int);\n"
|
|
|
|
" *va_arg(ap, int*) = ti;\n"
|
|
|
|
" for (i = 0, td = 0; i < n_float; ++i)\n"
|
|
|
|
" td += va_arg(ap, double);\n"
|
|
|
|
" *va_arg(ap, double*) = td;\n"
|
|
|
|
" va_end(ap);"
|
|
|
|
"}\n";
|
|
|
|
return run_callback(src, stdarg_test_callback);
|
|
|
|
}
|
|
|
|
|
2013-04-18 00:51:51 +04:00
|
|
|
#define RUN_TEST(t) \
|
2013-04-19 03:40:48 +04:00
|
|
|
if (!testname || (strcmp(#t, testname) == 0)) { \
|
2013-04-18 00:51:51 +04:00
|
|
|
fputs(#t "... ", stdout); \
|
|
|
|
fflush(stdout); \
|
|
|
|
if (t() == 0) { \
|
|
|
|
fputs("success\n", stdout); \
|
|
|
|
} else { \
|
|
|
|
fputs("failure\n", stdout); \
|
|
|
|
retval = EXIT_FAILURE; \
|
|
|
|
} \
|
2013-04-19 03:40:48 +04:00
|
|
|
}
|
2013-04-18 00:51:51 +04:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2013-04-19 03:40:48 +04:00
|
|
|
int i;
|
|
|
|
const char *testname = NULL;
|
2013-04-18 00:51:51 +04:00
|
|
|
int retval = EXIT_SUCCESS;
|
2013-04-19 03:40:48 +04:00
|
|
|
|
2013-04-18 00:51:51 +04:00
|
|
|
/* if tcclib.h and libtcc1.a are not installed, where can we find them */
|
2013-04-19 03:40:48 +04:00
|
|
|
for (i = 1; i < argc; ++i) {
|
|
|
|
if (!memcmp(argv[i], "lib_path=",9))
|
|
|
|
tccdir = argv[i] + 9;
|
|
|
|
else if (!memcmp(argv[i], "run_test=", 9))
|
|
|
|
testname = argv[i] + 9;
|
|
|
|
}
|
2013-04-18 20:55:00 +04:00
|
|
|
|
|
|
|
RUN_TEST(ret_int_test);
|
|
|
|
RUN_TEST(ret_longlong_test);
|
|
|
|
RUN_TEST(ret_float_test);
|
|
|
|
RUN_TEST(ret_double_test);
|
2013-04-19 03:40:48 +04:00
|
|
|
RUN_TEST(ret_longdouble_test);
|
2013-04-18 20:55:00 +04:00
|
|
|
RUN_TEST(ret_2float_test);
|
2013-04-19 14:08:12 +04:00
|
|
|
RUN_TEST(ret_2double_test);
|
2013-04-18 20:27:34 +04:00
|
|
|
RUN_TEST(reg_pack_test);
|
2013-04-19 14:08:12 +04:00
|
|
|
RUN_TEST(reg_pack_longlong_test);
|
2013-04-18 20:27:34 +04:00
|
|
|
RUN_TEST(sret_test);
|
2013-04-19 03:40:48 +04:00
|
|
|
RUN_TEST(one_member_union_test);
|
|
|
|
RUN_TEST(two_member_union_test);
|
2013-04-19 14:08:12 +04:00
|
|
|
RUN_TEST(stdarg_test);
|
2013-04-18 00:51:51 +04:00
|
|
|
return retval;
|
|
|
|
}
|