2 * TCC auto test program
8 /* Unfortunately, gcc version < 3 does not handle that! */
11 /* only gcc 3 handles _Bool correctly */
14 /* gcc 2.95.3 does not handle correctly CR in strings or after strays */
15 #define CORRECT_CR_HANDLING
20 #define LONG_LONG_FORMAT "%lld"
21 #define ULONG_LONG_FORMAT "%llu"
23 #define LONG_LONG_FORMAT "%Ld"
24 #define ULONG_LONG_FORMAT "%Lu"
27 // MinGW has 80-bit rather than 64-bit long double which isn't compatible with TCC or MSVC
28 #if defined(_WIN32) && defined(__GNUC__)
29 #define LONG_DOUBLE double
30 #define LONG_DOUBLE_LITERAL(x) x
32 #define LONG_DOUBLE long double
33 #define LONG_DOUBLE_LITERAL(x) x ## L
36 /* deprecated and no longer supported in gcc 3.3 */
37 //#define ACCEPT_CR_IN_STRINGS
39 /* __VA_ARGS__ and __func__ support */
42 /* test various include syntaxes */
44 #define TCCLIB_INC <tcclib.h>
45 #define TCCLIB_INC1 <tcclib
46 #define TCCLIB_INC2 h>
47 #define TCCLIB_INC3 "tcclib"
51 #include TCCLIB_INC1.TCCLIB_INC2
53 #include TCCLIB_INC1.h>
55 /* gcc 3.2 does not accept that (bug ?) */
56 //#include TCCLIB_INC3 ".h"
66 void recursive_macro_test();
80 void constant_expr_test();
82 void char_short_test();
84 void compound_literal_test(void);
86 void struct_assign_test(void);
88 void bitfield_test(void);
89 void c99_bool_test(void);
90 void float_test(void);
91 void longlong_test(void);
92 void manyarg_test(void);
93 void stdarg_test(void);
94 void whitespace_test(void);
95 void relocation_test(void);
96 void old_style_function(void);
97 void alloca_test(void);
98 void c99_vla_test(int size1
, int size2
);
99 void sizeof_test(void);
100 void typeof_test(void);
101 void local_label_test(void);
102 void statement_expr_test(void);
104 void builtin_test(void);
105 void weak_test(void);
106 void global_data_test(void);
107 void cmp_comparison_test(void);
108 void math_cmp_test(void);
109 void callsave_test(void);
110 void builtin_frame_address_test(void);
114 void forward_ref(void);
120 #define M1(a, b) (a) + (b)
124 #define glue(a, b) a ## b
125 #define xglue(a, b) glue(a, b)
126 #define HIGHLOW "hello"
127 #define LOW LOW ", world"
129 static int onetwothree
= 123;
130 #define onetwothree4 onetwothree
131 #define onetwothree xglue(onetwothree,4)
133 #define min(a, b) ((a) < (b) ? (a) : (b))
136 #define dprintf(level,...) printf(__VA_ARGS__)
139 /* gcc vararg macros */
140 #define dprintf1(level, fmt, args...) printf(fmt, ## args)
142 #define MACRO_NOARGS()
158 #define __INT64_C(c) c ## LL
159 #define INT64_MIN (-__INT64_C(9223372036854775807)-1)
167 #define spin_lock(lock) do { } while (0)
168 #define wq_spin_lock spin_lock
169 #define TEST2() wq_spin_lock(a)
171 #define UINT_MAX ((unsigned) -1)
173 void intdiv_test(void)
175 printf("18/21=%u\n", 18/21);
176 printf("18%21=%u\n", 18%21);
177 printf("41/21=%u\n", 41/21);
178 printf("41%21=%u\n", 41%21);
179 printf("42/21=%u\n", 42/21);
180 printf("42%21=%u\n", 42%21);
181 printf("43/21=%u\n", 43/21);
182 printf("43%21=%u\n", 43%21);
183 printf("126/21=%u\n", 126/21);
184 printf("12%/21=%u\n", 126%21);
185 printf("131/21=%u\n", 131/21);
186 printf("131%21=%u\n", 131%21);
187 printf("(UINT_MAX/2+3)/2=%u\n", (UINT_MAX
/2+3)/2);
188 printf("(UINT_MAX/2+3)%2=%u\n", (UINT_MAX
/2+3)%2);
190 printf("18/-21=%u\n", 18/-21);
191 printf("18%-21=%u\n", 18%-21);
192 printf("41/-21=%u\n", 41/-21);
193 printf("41%-21=%u\n", 41%-21);
194 printf("42/-21=%u\n", 42/-21);
195 printf("42%-21=%u\n", 42%-21);
196 printf("43/-21=%u\n", 43/-21);
197 printf("43%-21=%u\n", 43%-21);
198 printf("126/-21=%u\n", 126/-21);
199 printf("12%/-21=%u\n", 126%-21);
200 printf("131/-21=%u\n", 131/-21);
201 printf("131%-21=%u\n", 131%-21);
202 printf("(UINT_MAX/2+3)/-2=%u\n", (UINT_MAX
/2+3)/-2);
203 printf("(UINT_MAX/2+3)%-2=%u\n", (UINT_MAX
/2+3)%-2);
205 printf("-18/21=%u\n", -18/21);
206 printf("-18%21=%u\n", -18%21);
207 printf("-41/21=%u\n", -41/21);
208 printf("-41%21=%u\n", -41%21);
209 printf("-42/21=%u\n", -42/21);
210 printf("-42%21=%u\n", -42%21);
211 printf("-43/21=%u\n", -43/21);
212 printf("-43%21=%u\n", -43%21);
213 printf("-126/21=%u\n", -126/21);
214 printf("-12%/21=%u\n", -126%21);
215 printf("-131/21=%u\n", -131/21);
216 printf("-131%21=%u\n", -131%21);
217 printf("-(UINT_MAX/2+3)/2=%u\n", (0-(UINT_MAX
/2+3))/2);
218 printf("-(UINT_MAX/2+3)%2=%u\n", (0-(UINT_MAX
/2+3))%2);
220 printf("-18/-21=%u\n", -18/-21);
221 printf("-18%-21=%u\n", -18%-21);
222 printf("-41/-21=%u\n", -41/-21);
223 printf("-41%-21=%u\n", -41%-21);
224 printf("-42/-21=%u\n", -42/-21);
225 printf("-42%-21=%u\n", -42%-21);
226 printf("-43/-21=%u\n", -43/-21);
227 printf("-43%-21=%u\n", -43%-21);
228 printf("-126/-21=%u\n", -126/-21);
229 printf("-12%/-21=%u\n", -126%-21);
230 printf("-131/-21=%u\n", -131/-21);
231 printf("-131%-21=%u\n", -131%-21);
232 printf("-(UINT_MAX/2+3)/-2=%u\n", (0-(UINT_MAX
/2+3))/-2);
233 printf("-(UINT_MAX/2+3)%-2=%u\n", (0-(UINT_MAX
/2+3))%-2);
236 void macro_test(void)
238 printf("macro:\n");\f\v
240 printf("aaa=%d\n", AAA
);
242 printf("min=%d\n", min(1, min(2, -1)));
244 printf("s1=%s\n", glue(HIGH
, LOW
));
245 printf("s2=%s\n", xglue(HIGH
, LOW
));
246 printf("s3=%s\n", str("c"));
247 printf("s4=%s\n", str(a1
));
248 printf("B3=%d\n", B3
);
250 printf("onetwothree=%d\n", onetwothree
);
253 printf("A defined\n");
256 printf("B defined\n");
259 printf("A defined\n");
261 printf("A not defined\n");
264 printf("B defined\n");
266 printf("B not defined\n");
270 printf("A defined\n");
272 printf("B1 defined\n");
274 printf("B1 not defined\n");
277 printf("A not defined\n");
279 printf("B2 defined\n");
281 printf("B2 not defined\n");
286 printf("test true1\n");
289 printf("test true2\n");
292 printf("test true3\n");
295 printf("test trueA\n");
298 printf("test trueB\n");
314 printf("__LINE__ defined\n");
317 printf("__LINE__=%d __FILE__=%s\n",
320 printf("__LINE__=%d __FILE__=%s\n",
323 printf("__LINE__=%d __FILE__=%s\n",
325 #line 227 "tcctest.c"
327 /* not strictly preprocessor, but we test it there */
329 printf("__func__ = %s\n", __func__
);
330 dprintf(1, "vaarg=%d\n", 1);
332 dprintf1(1, "vaarg1\n");
333 dprintf1(1, "vaarg1=%d\n", 2);
334 dprintf1(1, "vaarg1=%d %d\n", 1, 2);
337 printf("func='%s'\n", __FUNCTION__
);
339 /* complicated macros in glibc */
340 printf("INT64_MIN=" LONG_LONG_FORMAT
"\n", INT64_MIN
);
350 /* macro function with argument outside the macro string */
351 #define MF_s MF_hello
352 #define MF_hello(msg) printf("%s\n",msg)
354 #define MF_t printf("tralala\n"); MF_hello
359 /* test macro substituion inside args (should not eat stream) */
360 printf("qq=%d\n", qq(qq
)(2));
362 /* test zero argument case. NOTE: gcc 2.95.x does not accept a
363 null argument without a space. gcc 3.2 fixes that. */
366 printf("qq1=%d\n", qq1( ));
368 /* comment with stray handling *\
370 /* this is a valid *\/ comment */
371 /* this is a valid comment *\*/
375 /* test function macro substitution when the function name is
379 /* And again when the name and parenthes are separated by a
381 TEST2
/* the comment */ ();
383 /* macro_push and macro_pop test */
386 printf("define MACRO_TEST\n");
388 printf("undef MACRO_TEST\n");
391 #pragma push_macro("MACRO_TEST")
393 #pragma push_macro("MACRO_TEST")
395 #pragma push_macro("MACRO_TEST")
397 #pragma pop_macro("MACRO_TEST")
399 printf("define MACRO_TEST\n");
401 printf("undef MACRO_TEST\n");
404 #pragma pop_macro("MACRO_TEST")
406 printf("define MACRO_TEST\n");
408 printf("undef MACRO_TEST\n");
411 #pragma pop_macro("MACRO_TEST")
413 printf("define MACRO_TEST\n");
415 printf("undef MACRO_TEST\n");
422 /* gcc does not support
423 #define MACRO_TEST_MACRO "MACRO_TEST"
424 #pragma push_macro(MACRO_TEST_MACRO)
426 #define MACRO_TEST "macro_test3\n"
428 #pragma pop_macro(MACRO_TEST_MACRO)
434 static void print_num(char *fn
, int line
, int num
) {
435 printf("fn %s, line %d, num %d\n", fn
, line
, num
);
438 void recursive_macro_test(void)
441 #define ELF32_ST_TYPE(val) ((val) & 0xf)
442 #define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
443 #define STB_WEAK 2 /* Weak symbol */
444 #define ELFW(type) ELF##32##_##type
445 printf("%d\n", ELFW(ST_INFO
)(STB_WEAK
, ELFW(ST_TYPE
)(123)));
449 #define print_num(x) print_num(__FILE__,__LINE__,x)
451 WRAP(print_num(123));
452 WRAP(WRAP(print_num(123)));
454 static struct recursive_macro
{ int rm_field
; } G
;
455 #define rm_field (G.rm_field)
456 printf("rm_field = %d\n", rm_field
);
457 printf("rm_field = %d\n", WRAP(rm_field
));
458 WRAP((printf("rm_field = %d %d\n", rm_field
, WRAP(rm_field
))));
475 void ps(const char *s
)
487 const char foo1_string
[] = "\
496 printf("\141\1423\143\n");/* dezdez test */
497 printf("\x41\x42\x43\x3a\n");
498 printf("c=%c\n", 'r');
499 printf("wc=%C 0x%lx %C\n", L
'a', L
'\x1234', L
'c');
500 printf("foo1_string='%s'\n", foo1_string
);
502 printf("wstring=%S\n", L
"abc");
503 printf("wstring=%S\n", L
"abc" L
"def" "ghi");
504 printf("'\\377'=%d '\\xff'=%d\n", '\377', '\xff');
505 printf("L'\\377'=%d L'\\xff'=%d\n", L
'\377', L
'\xff');
509 while ((b
= b
+ 1) < 96) {
513 printf("fib=%d\n", fib(33));
515 while (b
!= 0x80000000) {
528 for(i
= 0; i
< 10;i
++)
538 /* c99 for loop init test */
539 for (size_t count
= 1; count
< 3; count
++)
540 printf("count=%d\n", count
);
541 printf("count = %d\n", count
);
543 /* break/continue tests */
555 /* break/continue tests */
567 for(i
= 0;i
< 10;i
++) {
575 typedef int typedef_and_label
;
580 static void *label_table
[3] = { &&label1
, &&label2
, &&label3
};
584 /* This needs to parse as label, not as start of decl. */
595 /* we also test computed gotos (GCC extension) */
597 goto *label_table
[i
];
625 printf("enum:\n%d %d %d %d %d %d\n",
626 E0
, E1
, E2
, E3
, E4
, E5
);
628 printf("b1=%d\n", b1
);
644 printf("typedef:\n");
645 printf("a=%d\n", *a
);
647 printf("mytype2=%d\n", mytype2
);
652 printf("forward:\n");
658 void forward_ref(void)
660 printf("forward ok\n");
663 typedef struct struct1
{
683 struct struct1 st1
, st2
;
685 int main(int argc
, char **argv
)
690 recursive_macro_test();
704 constant_expr_test();
708 compound_literal_test();
710 struct_assign_test();
720 old_style_function();
725 statement_expr_test();
733 cmp_comparison_test();
736 builtin_frame_address_test();
748 printf("g1=%d\n", g
);
756 printf("g2=%d\n", g
);
760 printf("g3=%d\n", g
);
764 printf("g4=%d\n", g
);
767 printf("g5=%d\n", g
);
775 printf("sizeof(a) = %d\n", sizeof(a
));
776 printf("sizeof(\"a\") = %d\n", sizeof("a"));
778 printf("sizeof(__func__) = %d\n", sizeof(__func__
));
780 printf("sizeof tab %d\n", sizeof(tab
));
781 printf("sizeof tab2 %d\n", sizeof tab2
);
785 printf("%d %d %d\n", tab
[0], tab
[1], tab
[2]);
788 tab2
[i
][j
] = 10 * i
+ j
;
790 printf(" %3d", ((int *)tab2
)[i
]);
793 printf("sizeof(size_t)=%d\n", sizeof(size_t));
794 printf("sizeof(ptrdiff_t)=%d\n", sizeof(ptrdiff_t));
801 printf("%d\n", a
+= 1);
802 printf("%d\n", a
-= 2);
803 printf("%d\n", a
*= 31232132);
804 printf("%d\n", a
/= 4);
805 printf("%d\n", a
%= 20);
806 printf("%d\n", a
&= 6);
807 printf("%d\n", a
^= 7);
808 printf("%d\n", a
|= 8);
809 printf("%d\n", a
>>= 3);
810 printf("%d\n", a
<<= 4);
814 printf("%d\n", a
+ 1);
815 printf("%d\n", a
- 2);
816 printf("%d\n", a
* 312);
817 printf("%d\n", a
/ 4);
818 printf("%d\n", b
/ 4);
819 printf("%d\n", (unsigned)b
/ 4);
820 printf("%d\n", a
% 20);
821 printf("%d\n", b
% 20);
822 printf("%d\n", (unsigned)b
% 20);
823 printf("%d\n", a
& 6);
824 printf("%d\n", a
^ 7);
825 printf("%d\n", a
| 8);
826 printf("%d\n", a
>> 3);
827 printf("%d\n", b
>> 3);
828 printf("%d\n", (unsigned)b
>> 3);
829 printf("%d\n", a
<< 4);
834 printf("%d\n", 12 + 1);
835 printf("%d\n", 12 - 2);
836 printf("%d\n", 12 * 312);
837 printf("%d\n", 12 / 4);
838 printf("%d\n", 12 % 20);
839 printf("%d\n", 12 & 6);
840 printf("%d\n", 12 ^ 7);
841 printf("%d\n", 12 | 8);
842 printf("%d\n", 12 >> 2);
843 printf("%d\n", 12 << 4);
847 printf("%d %d %d %d\n",
856 return (c
>= 'a' & c
<= 'z') | (c
>= 'A' & c
<= 'Z') | c
== '_';
859 /**********************/
861 int vstack
[10], *vstack_ptr
;
863 void vpush(int vt
, int vc
)
869 void vpop(int *ft
, int *fc
)
882 vstack_ptr
[-2] &= ~0xffffff80;
884 printf("res= %d %d\n", a
, b
);
887 void constant_expr_test()
890 printf("constant_expr:\n");
892 printf("%d\n", a
* 16);
893 printf("%d\n", a
* 1);
894 printf("%d\n", a
+ 0);
904 printf("expr_ptr:\n");
907 printf("diff=%d\n", q
- p
);
909 printf("inc=%d\n", p
- tab4
);
911 printf("dec=%d\n", p
- tab4
);
913 printf("inc=%d\n", p
- tab4
);
915 printf("dec=%d\n", p
- tab4
);
916 printf("add=%d\n", p
+ 3 - tab4
);
917 printf("add=%d\n", 3 + p
- tab4
);
919 /* check if 64bit support is ok */
922 printf("%p %p %ld\n", q
, p
, p
-q
);
923 printf("%d %d %d %d %d %d\n",
924 p
== q
, p
!= q
, p
< q
, p
<= q
, p
>= q
, p
> q
);
927 printf("%p %p %ld\n", q
, p
, p
-q
);
928 printf("%d %d %d %d %d %d\n",
929 p
== q
, p
!= q
, p
< q
, p
<= q
, p
>= q
, p
> q
);
930 p
= (int *)((char *)p
+ 0xf0000000);
931 printf("%p %p %ld\n", q
, p
, p
-q
);
932 printf("%d %d %d %d %d %d\n",
933 p
== q
, p
!= q
, p
< q
, p
<= q
, p
>= q
, p
> q
);
935 printf("%p %p %ld\n", q
, p
, p
-q
);
936 printf("%d %d %d %d %d %d\n",
937 p
== q
, p
!= q
, p
< q
, p
<= q
, p
>= q
, p
> q
);
942 struct size12 s
[2], *sp
= s
;
947 printf("%d\n", sp
[j
].i
);
954 printf("constant_expr:\n");
957 printf("%d\n", a
== a
);
958 printf("%d\n", a
!= a
);
960 printf("%d\n", a
< b
);
961 printf("%d\n", a
<= b
);
962 printf("%d\n", a
<= a
);
963 printf("%d\n", b
>= a
);
964 printf("%d\n", a
>= a
);
965 printf("%d\n", b
> a
);
967 printf("%d\n", (unsigned)a
< b
);
968 printf("%d\n", (unsigned)a
<= b
);
969 printf("%d\n", (unsigned)a
<= a
);
970 printf("%d\n", (unsigned)b
>= a
);
971 printf("%d\n", (unsigned)a
>= a
);
972 printf("%d\n", (unsigned)b
> a
);
1000 printf("struct:\n");
1001 printf("sizes: %d %d %d %d\n",
1002 sizeof(struct struct1
),
1003 sizeof(struct struct2
),
1004 sizeof(union union1
),
1005 sizeof(union union2
));
1009 printf("st1: %d %d %d\n",
1010 st1
.f1
, st1
.f2
, st1
.f3
);
1013 printf("union1: %d\n", st1
.u
.v1
);
1016 printf("union2: %d\n", u
.w1
);
1021 printf("st2: %d %d %d\n",
1022 s
->f1
, s
->f2
, s
->f3
);
1023 printf("str_addr=%x\n", (int)st1
.str
- (int)&st1
.f1
);
1025 /* align / size tests */
1026 printf("aligntest1 sizeof=%d alignof=%d\n",
1027 sizeof(struct aligntest1
), __alignof__(struct aligntest1
));
1028 printf("aligntest2 sizeof=%d alignof=%d\n",
1029 sizeof(struct aligntest2
), __alignof__(struct aligntest2
));
1030 printf("aligntest3 sizeof=%d alignof=%d\n",
1031 sizeof(struct aligntest3
), __alignof__(struct aligntest3
));
1032 printf("aligntest4 sizeof=%d alignof=%d\n",
1033 sizeof(struct aligntest4
), __alignof__(struct aligntest4
));
1035 /* empty structures (GCC extension) */
1036 printf("sizeof(struct empty) = %d\n", sizeof(struct empty
));
1037 printf("alignof(struct empty) = %d\n", __alignof__(struct empty
));
1040 /* XXX: depend on endianness */
1041 void char_short_test()
1045 printf("char_short:\n");
1049 printf("s8=%d %d\n",
1050 *(char *)&var1
, *(char *)&var2
);
1051 printf("u8=%d %d\n",
1052 *(unsigned char *)&var1
, *(unsigned char *)&var2
);
1053 printf("s16=%d %d\n",
1054 *(short *)&var1
, *(short *)&var2
);
1055 printf("u16=%d %d\n",
1056 *(unsigned short *)&var1
, *(unsigned short *)&var2
);
1057 printf("s32=%d %d\n",
1058 *(int *)&var1
, *(int *)&var2
);
1059 printf("u32=%d %d\n",
1060 *(unsigned int *)&var1
, *(unsigned int *)&var2
);
1061 *(char *)&var1
= 0x08;
1062 printf("var1=%x\n", var1
);
1063 *(short *)&var1
= 0x0809;
1064 printf("var1=%x\n", var1
);
1065 *(int *)&var1
= 0x08090a0b;
1066 printf("var1=%x\n", var1
);
1069 /******************/
1071 typedef struct Sym
{
1079 #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
1080 #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
1082 static int toupper1(int a
)
1089 int *s
, a
, b
, t
, f
, i
;
1093 printf("!s=%d\n", !s
);
1097 printf("a=%d\n", a
);
1099 printf("a=%d %d %d\n", 0 || 0, 0 || 1, 1 || 1);
1100 printf("a=%d %d %d\n", 0 && 0, 0 && 1, 1 && 1);
1101 printf("a=%d %d\n", 1 ? 1 : 0, 0 ? 1 : 0);
1116 printf("b=%d\n", a
+ (0 ? 1 : a
/ 2));
1118 /* test register spilling */
1121 a
= (a
+ b
) * ((a
< b
) ?
1122 ((b
- a
) * (a
- b
)): a
+ b
);
1123 printf("a=%d\n", a
);
1125 /* test complex || or && expressions */
1129 printf("exp=%d\n", f
== (32 <= a
&& a
<= 3));
1130 printf("r=%d\n", (t
|| f
) + (t
&& f
));
1135 int aspect_native
= 65536;
1136 double bfu_aspect
= 1.0;
1138 for(aspect_on
= 0; aspect_on
< 2; aspect_on
++) {
1139 aspect
=aspect_on
?(aspect_native
*bfu_aspect
+0.5):65535UL;
1140 printf("aspect=%d\n", aspect
);
1144 /* test ? : GCC extension */
1146 static int v1
= 34 ? : -1; /* constant case */
1147 static int v2
= 0 ? : -1; /* constant case */
1150 printf("%d %d\n", v1
, v2
);
1151 printf("%d %d\n", a
- 30 ? : a
* 2, a
+ 1 ? : a
* 2);
1154 /* again complex expression */
1155 for(i
=0;i
<256;i
++) {
1156 if (toupper1 (i
) != TOUPPER (i
))
1157 printf("error %d\n", i
);
1161 /* GCC accepts that */
1162 static int tab_reinit
[];
1163 static int tab_reinit
[10];
1165 //int cinit1; /* a global variable can be defined several times without error ! */
1169 int *cinit2
= (int []){3, 2, 1};
1171 void compound_literal_test(void)
1176 printf("compound_test:\n");
1178 p
= (int []){1, 2, 3};
1180 printf(" %d", p
[i
]);
1184 printf("%d", cinit2
[i
]);
1188 printf("q1=%s\n", q
);
1190 q
= (char *){ "tralala2" };
1191 printf("q2=%s\n", q
);
1194 printf("q3=%s\n", q3
);
1196 q
= (char []){ "tralala3" };
1197 printf("q4=%s\n", q
);
1200 p
= (int []){1, 2, cinit1
+ 3};
1202 printf(" %d", p
[i
]);
1206 p
= (int []){1, 2, 4 + i
};
1207 printf("%d %d %d\n",
1229 printf("kr_test:\n");
1230 printf("func1=%d\n", kr_func1(3, 4));
1231 printf("func2=%d\n", kr_func2(3, 4));
1238 tab
= (char*)malloc(20);
1255 /* structure assignment tests */
1261 struct structa1 ssta1
;
1263 void struct_assign_test1(struct structa1 s1
, int t
, float f
)
1265 printf("%d %d %d %f\n", s1
.f1
, s1
.f2
, t
, f
);
1268 struct structa1
struct_assign_test2(struct structa1 s1
, int t
)
1275 void struct_assign_test(void)
1278 struct structa1 lsta1
, lsta2
;
1285 printf("struct_assign_test:\n");
1289 printf("%d %d\n", s
.lsta1
.f1
, s
.lsta1
.f2
);
1291 printf("%d %d\n", s
.lsta2
.f1
, s
.lsta2
.f2
);
1296 struct_assign_test1(ps
->lsta2
, 3, 4.5);
1298 printf("before call: %d %d\n", s
.lsta2
.f1
, s
.lsta2
.f2
);
1299 ps
->lsta2
= struct_assign_test2(ps
->lsta2
, ps
->i
);
1300 printf("after call: %d %d\n", ps
->lsta2
.f1
, ps
->lsta2
.f2
);
1305 /* XXX: we should allow this even without braces */
1306 { struct_assign_test
}
1308 printf("%d\n", struct_assign_test
== t
[0].elem
);
1311 /* casts to short/char */
1313 void cast1(char a
, short b
, unsigned char c
, unsigned short d
)
1315 printf("%d %d %d %d\n", a
, b
, c
, d
);
1329 p
-= 0x700000000042;
1331 printf("cast_test:\n");
1335 printf("%d %d %d %d\n",
1338 (unsigned char)(a
+ 1),
1339 (unsigned short)(a
+ 1));
1340 printf("%d %d %d %d\n",
1343 (unsigned char)0xfffff,
1344 (unsigned short)0xfffff);
1346 a
= (bcast
= 128) + 1;
1348 a
= (scast
= 65536) + 1;
1351 printf("sizeof(c) = %d, sizeof((int)c) = %d\n", sizeof(c
), sizeof((int)c
));
1353 /* test cast from unsigned to signed short to int */
1356 printf("((unsigned)(short)0x%08x) = 0x%08x\n", b
, d
);
1359 printf("((unsigned)(char)0x%08x) = 0x%08x\n", b
, d
);
1361 /* test implicit int casting for array accesses */
1365 printf("%d %d\n", tab
[0], tab
[1]);
1367 /* test implicit casting on some operators */
1368 printf("sizeof(+(char)'a') = %d\n", sizeof(+(char)'a'));
1369 printf("sizeof(-(char)'a') = %d\n", sizeof(-(char)'a'));
1370 printf("sizeof(~(char)'a') = %d\n", sizeof(-(char)'a'));
1372 /* from pointer to integer types */
1373 printf("%d %d %ld %ld %lld %lld\n",
1374 (int)p
, (unsigned int)p
,
1375 (long)p
, (unsigned long)p
,
1376 (long long)p
, (unsigned long long)p
);
1378 /* from integers to pointers */
1379 printf("%p %p %p %p\n",
1380 (void *)a
, (void *)b
, (void *)c
, (void *)d
);
1383 /* initializers tests */
1384 struct structinit1
{
1393 int sinit3
[3] = { 1, 2, {{3}}, };
1394 int sinit4
[3][2] = { {1, 2}, {3, 4}, {5, 6} };
1395 int sinit5
[3][2] = { 1, 2, 3, 4, 5, 6 };
1396 int sinit6
[] = { 1, 2, 3 };
1397 int sinit7
[] = { [2] = 3, [0] = 1, 2 };
1398 char sinit8
[] = "hello" "trala";
1400 struct structinit1 sinit9
= { 1, 2, 3 };
1401 struct structinit1 sinit10
= { .f2
= 2, 3, .f1
= 1 };
1402 struct structinit1 sinit11
= { .f2
= 2, 3, .f1
= 1,
1410 char *sinit12
= "hello world";
1416 char sinit14
[10] = { "abc" };
1417 int sinit15
[3] = { sizeof(sinit15
), 1, 2 };
1419 struct { int a
[3], b
; } sinit16
[] = { { 1 }, 2 };
1435 struct complexinit0
{
1440 struct complexinit
{
1442 const struct complexinit0
*b
;
1445 const static struct complexinit cix
[] = {
1448 .b
= (const struct complexinit0
[]) {
1456 struct complexinit2
{
1461 struct complexinit2 cix20
;
1463 struct complexinit2 cix21
= {
1465 .b
= { 3001, 3002, 3003 }
1468 struct complexinit2 cix22
= {
1470 .b
= { 4001, 4002, 4003, 4004, 4005, 4006 }
1473 void init_test(void)
1477 int linit4
[3][2] = { {1, 2}, {3, 4}, {5, 6} };
1478 int linit6
[] = { 1, 2, 3 };
1480 char linit8
[] = "hello" "trala";
1481 int linit12
[10] = { 1, 2 };
1482 int linit13
[10] = { 1, 2, [7] = 3, [3] = 4, };
1483 char linit14
[10] = "abc";
1484 int linit15
[10] = { linit1
, linit1
+ 1, [6] = linit1
+ 2, };
1485 struct linit16
{ int a1
, a2
, a3
, a4
; } linit16
= { 1, .a3
= 2 };
1486 int linit17
= sizeof(linit17
);
1488 printf("init_test:\n");
1490 printf("sinit1=%d\n", sinit1
);
1491 printf("sinit2=%d\n", sinit2
);
1492 printf("sinit3=%d %d %d %d\n",
1498 printf("sinit6=%d\n", sizeof(sinit6
));
1499 printf("sinit7=%d %d %d %d\n",
1505 printf("sinit8=%s\n", sinit8
);
1506 printf("sinit9=%d %d %d\n",
1511 printf("sinit10=%d %d %d\n",
1516 printf("sinit11=%d %d %d %d %d %d\n",
1527 printf("[%d][%d] = %d %d %d\n",
1528 i
, j
, sinit4
[i
][j
], sinit5
[i
][j
], linit4
[i
][j
]);
1529 printf("linit1=%d\n", linit1
);
1530 printf("linit2=%d\n", linit2
);
1531 printf("linit6=%d\n", sizeof(linit6
));
1532 printf("linit8=%d %s\n", sizeof(linit8
), linit8
);
1534 printf("sinit12=%s\n", sinit12
);
1535 printf("sinit13=%d %s %s %s\n",
1540 printf("sinit14=%s\n", sinit14
);
1542 for(i
=0;i
<10;i
++) printf(" %d", linit12
[i
]);
1544 for(i
=0;i
<10;i
++) printf(" %d", linit13
[i
]);
1546 for(i
=0;i
<10;i
++) printf(" %d", linit14
[i
]);
1548 for(i
=0;i
<10;i
++) printf(" %d", linit15
[i
]);
1550 printf("%d %d %d %d\n",
1555 /* test that initialisation is done after variable declare */
1556 printf("linit17=%d\n", linit17
);
1557 printf("sinit15=%d\n", sinit15
[0]);
1558 printf("sinit16=%d %d\n", sinit16
[0].a
[0], sinit16
[1].a
[0]);
1559 printf("sinit17=%s %d %s %d\n",
1560 sinit17
[0].s
, sinit17
[0].len
,
1561 sinit17
[1].s
, sinit17
[1].len
);
1563 printf("%x ", sinit18
[i
]);
1565 /* complex init check */
1566 printf("cix: %d %d %d %d %d %d %d\n",
1568 cix
[0].b
[0].a
, cix
[0].b
[0].b
,
1569 cix
[0].b
[1].a
, cix
[0].b
[1].b
,
1570 cix
[0].b
[2].a
, cix
[0].b
[2].b
);
1571 printf("cix2: %d %d\n", cix21
.b
[2], cix22
.b
[5]);
1572 printf("sizeof cix20 %d, cix21 %d, sizeof cix22 %d\n", sizeof cix20
, sizeof cix21
, sizeof cix22
);
1600 /* ISOC99 _Bool type */
1601 void c99_bool_test(void)
1607 printf("bool_test:\n");
1608 printf("sizeof(_Bool) = %d\n", sizeof(_Bool
));
1610 printf("cast: %d %d %d\n", (_Bool
)10, (_Bool
)0, (_Bool
)a
);
1612 printf("b = %d\n", b
);
1614 printf("b = %d\n", b
);
1618 void bitfield_test(void)
1630 unsigned int f5
: 7;
1632 printf("bitfield_test:");
1633 printf("sizeof(st1) = %d\n", sizeof(st1
));
1642 printf("%d %d %d %d %d\n",
1643 st1
.f1
, st1
.f2
, st1
.f3
, st1
.f4
, st1
.f5
);
1646 printf("%d %d\n", sa
, ca
);
1650 printf("st1.f1 == -1\n");
1652 printf("st1.f1 != -1\n");
1654 printf("st1.f2 == -1\n");
1656 printf("st1.f2 != -1\n");
1658 /* bit sizes below must be bigger than 32 since GCC doesn't allow
1659 long-long bitfields whose size is not bigger than int */
1664 unsigned long long f3
: 38;
1666 st2
.f1
= 0x123456789ULL
;
1668 st2
.f2
= (long long)a
<< 25;
1671 printf("%lld %lld %lld\n", st2
.f1
, st2
.f2
, st2
.f3
);
1675 #define FLOAT_FMT "%f\n"
1677 /* x86's float isn't compatible with GCC */
1678 #define FLOAT_FMT "%.5f\n"
1681 /* declare strto* functions as they are C99 */
1682 double strtod(const char *nptr
, char **endptr
);
1685 float strtof(const char *nptr
, char **endptr
) {return (float)strtod(nptr
, endptr
);}
1686 LONG_DOUBLE
strtold(const char *nptr
, char **endptr
) {return (LONG_DOUBLE
)strtod(nptr
, endptr
);}
1688 float strtof(const char *nptr
, char **endptr
);
1689 LONG_DOUBLE
strtold(const char *nptr
, char **endptr
);
1692 #define FTEST(prefix, typename, type, fmt)\
1693 void prefix ## cmp(type a, type b)\
1695 printf("%d %d %d %d %d %d\n",\
1702 printf(fmt " " fmt " " fmt " " fmt " " fmt " " fmt " " fmt "\n",\
1710 printf(fmt "\n", ++a);\
1711 printf(fmt "\n", a++);\
1712 printf(fmt "\n", a);\
1714 printf("%d %d\n", !a, !b);\
1716 void prefix ## fcast(type a)\
1724 unsigned long long llua;\
1729 printf("ftof: %f %f %Lf\n", fa, da, la);\
1731 llia = (long long)a;\
1732 ua = (unsigned int)a;\
1733 llua = (unsigned long long)a;\
1734 printf("ftoi: %d %u %lld %llu\n", ia, ua, llia, llua);\
1737 llia = -0x123456789012345LL;\
1738 llua = 0xf123456789012345LLU;\
1740 printf("itof: " fmt "\n", b);\
1742 printf("utof: " fmt "\n", b);\
1744 printf("lltof: " fmt "\n", b);\
1746 printf("ulltof: " fmt "\n", b);\
1749 float prefix ## retf(type a) { return a; }\
1750 double prefix ## retd(type a) { return a; }\
1751 LONG_DOUBLE prefix ## retld(type a) { return a; }\
1753 void prefix ## call(void)\
1755 printf("float: " FLOAT_FMT, prefix ## retf(42.123456789));\
1756 printf("double: %f\n", prefix ## retd(42.123456789));\
1757 printf("long double: %Lf\n", prefix ## retld(42.123456789));\
1758 printf("strto%s: %f\n", #prefix, (double)strto ## prefix("1.2", NULL));\
1761 void prefix ## calc(type x, type y)\
1764 printf("%d, %d\n", (int)x, (int)y);\
1766 printf("%d, %d\n", (int)x, (int)y);\
1768 printf("%d, %d\n", (int)x, (int)y);\
1770 printf("%d, %d\n", (int)x, (int)y);\
1773 void prefix ## signed_zeros(void) \
1775 type x = 0.0, y = -0.0, n, p;\
1777 printf ("Test 1.0 / x != 1.0 / y returns %d (should be 1).\n",\
1778 1.0 / x != 1.0 / y);\
1780 printf ("x != y; this is wrong!\n");\
1784 printf ("Test 1.0 / x != 1.0 / -x returns %d (should be 1).\n",\
1785 1.0 / x != 1.0 / n);\
1787 printf ("x != -x; this is wrong!\n");\
1791 printf ("Test 1.0 / x != 1.0 / +y returns %d (should be 1).\n",\
1792 1.0 / x != 1.0 / p);\
1794 printf ("x != +y; this is wrong!\n");\
1797 printf ("Test 1.0 / x != 1.0 / -y returns %d (should be 0).\n",\
1798 1.0 / x != 1.0 / p);\
1800 printf ("x != -y; this is wrong!\n");\
1802 void prefix ## test(void)\
1804 printf("testing '%s'\n", #typename);\
1805 prefix ## cmp(1, 2.5);\
1806 prefix ## cmp(2, 1.5);\
1807 prefix ## cmp(1, 1);\
1808 prefix ## fcast(234.6);\
1809 prefix ## fcast(-2334.6);\
1811 prefix ## calc(1, 1.0000000000000001);\
1812 prefix ## signed_zeros();\
1815 FTEST(f
, float, float, "%f")
1816 FTEST(d
, double, double, "%f")
1817 FTEST(ld
, long double, LONG_DOUBLE
, "%Lf")
1819 double ftab1
[3] = { 1.2, 3.4, -5.6 };
1822 void float_test(void)
1829 printf("float_test:\n");
1830 printf("sizeof(float) = %d\n", sizeof(float));
1831 printf("sizeof(double) = %d\n", sizeof(double));
1832 printf("sizeof(long double) = %d\n", sizeof(LONG_DOUBLE
));
1836 printf("%f %f %f\n", ftab1
[0], ftab1
[1], ftab1
[2]);
1837 printf("%f %f %f\n", 2.12, .5, 2.3e10
);
1838 // printf("%f %f %f\n", 0x1234p12, 0x1e23.23p10, 0x12dp-10);
1840 printf("da=%f\n", da
);
1842 printf("fa=%f\n", fa
);
1845 printf("da = %f\n", da
);
1848 printf("db = %f\n", db
);
1856 return fib(n
-1) + fib(n
-2);
1868 printf("funcptr:\n");
1875 /* more complicated pointer computation */
1878 printf("sizeof1 = %d\n", sizeof(funcptr_test
));
1879 printf("sizeof2 = %d\n", sizeof funcptr_test
);
1880 printf("sizeof3 = %d\n", sizeof(&funcptr_test
));
1881 printf("sizeof4 = %d\n", sizeof &funcptr_test
);
1884 void lloptest(long long a
, long long b
)
1886 unsigned long long ua
, ub
;
1891 printf("arith: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1897 printf("arith1: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1903 printf("bin: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1909 printf("test: %d %d %d %d %d %d\n",
1917 printf("utest: %d %d %d %d %d %d\n",
1928 printf("arith2: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", a
, b
);
1929 printf("arith2: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", a
++, b
++);
1930 printf("arith2: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", --a
, --b
);
1931 printf("arith2: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", a
, b
);
1933 printf("not: %d %d %d %d\n", !a
, !ua
, !b
, !ub
);
1936 void llshift(long long a
, int b
)
1938 printf("shift: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1939 (unsigned long long)a
>> b
,
1942 printf("shiftc: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1943 (unsigned long long)a
>> 3,
1946 printf("shiftc: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1947 (unsigned long long)a
>> 35,
1957 long long la
, lb
, lc
;
1958 unsigned long long ula
, ulb
, ulc
;
1961 la
= (la
<< 20) | 0x12345;
1963 printf("la=" LONG_LONG_FORMAT
" ula=" ULONG_LONG_FORMAT
"\n", la
, ula
);
1968 printf("lltof: %f %f %Lf\n", fa
, da
, lda
);
1973 printf("ftoll: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", la
, lb
, lc
);
1978 printf("ulltof: %f %f %Lf\n", fa
, da
, lda
);
1983 printf("ftoull: " ULONG_LONG_FORMAT
" " ULONG_LONG_FORMAT
" " ULONG_LONG_FORMAT
"\n", ula
, ulb
, ulc
);
1986 long long llfunc1(int a
)
1996 long long int value(struct S
*v
)
1998 return ((long long int)v
->item
);
2001 void longlong_test(void)
2006 printf("longlong_test:\n");
2007 printf("sizeof(long long) = %d\n", sizeof(long long));
2012 printf(LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", a
, b
);
2013 printf(LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" %Lx\n",
2017 0x1234567812345679);
2019 printf(LONG_LONG_FORMAT
"\n", a
);
2022 lloptest(0xff, 0x1234);
2023 b
= 0x72345678 << 10;
2027 b
= 0x72345678LL
<< 10;
2038 /* long long reg spill test */
2043 printf("%lld\n", value(&a
));
2045 lloptest(0x80000000, 0);
2047 /* another long long spill test */
2053 printf("%lld\n", *p
);
2058 printf("%d %d %d %d\n", a
> b
, a
< b
, a
>= b
, a
<= b
);
2060 printf(LONG_LONG_FORMAT
"\n", 0x123456789LLU
);
2063 void manyarg_test(void)
2065 LONG_DOUBLE ld
= 1234567891234LL;
2066 printf("manyarg_test:\n");
2067 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f\n",
2068 1, 2, 3, 4, 5, 6, 7, 8,
2069 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0);
2070 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2071 LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" %f %f\n",
2072 1, 2, 3, 4, 5, 6, 7, 8,
2073 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2074 1234567891234LL, 987654321986LL,
2076 printf("%Lf %d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2077 LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" %f %f\n",
2078 ld
, 1, 2, 3, 4, 5, 6, 7, 8,
2079 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2080 1234567891234LL, 987654321986LL,
2082 printf("%d %d %d %d %d %d %d %d %Lf\n",
2083 1, 2, 3, 4, 5, 6, 7, 8, ld
);
2084 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2085 LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"%f %f %Lf\n",
2086 1, 2, 3, 4, 5, 6, 7, 8,
2087 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2088 1234567891234LL, 987654321986LL,
2090 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2091 "%Lf " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" %f %f %Lf\n",
2092 1, 2, 3, 4, 5, 6, 7, 8,
2093 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2094 ld
, 1234567891234LL, 987654321986LL,
2098 void vprintf1(const char *fmt
, ...)
2122 i
= va_arg(ap
, int);
2126 d
= va_arg(ap
, double);
2130 ll
= va_arg(ap
, long long);
2131 printf(LONG_LONG_FORMAT
, ll
);
2134 ld
= va_arg(ap
, LONG_DOUBLE
);
2152 void stdarg_for_struct(struct myspace bob
, ...)
2154 struct myspace george
, bill
;
2159 bill
= va_arg(ap
, struct myspace
);
2160 george
= va_arg(ap
, struct myspace
);
2161 validate
= va_arg(ap
, int);
2162 printf("stdarg_for_struct: %d %d %d %d\n",
2163 bob
.profile
, bill
.profile
, george
.profile
, validate
);
2167 void stdarg_test(void)
2169 LONG_DOUBLE ld
= 1234567891234LL;
2172 vprintf1("%d %d %d\n", 1, 2, 3);
2173 vprintf1("%f %d %f\n", 1.0, 2, 3.0);
2174 vprintf1("%l %l %d %f\n", 1234567891234LL, 987654321986LL, 3, 1234.0);
2175 vprintf1("%F %F %F\n", LONG_DOUBLE_LITERAL(1.2), LONG_DOUBLE_LITERAL(2.3), LONG_DOUBLE_LITERAL(3.4));
2176 vprintf1("%d %f %l %F %d %f %l %F\n",
2177 1, 1.2, 3LL, LONG_DOUBLE_LITERAL(4.5), 6, 7.8, 9LL, LONG_DOUBLE_LITERAL(0.1));
2178 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f\n",
2179 1, 2, 3, 4, 5, 6, 7, 8,
2180 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8);
2181 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f\n",
2182 1, 2, 3, 4, 5, 6, 7, 8,
2183 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0);
2184 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2186 1, 2, 3, 4, 5, 6, 7, 8,
2187 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2188 1234567891234LL, 987654321986LL,
2190 vprintf1("%F %d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2192 ld
, 1, 2, 3, 4, 5, 6, 7, 8,
2193 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2194 1234567891234LL, 987654321986LL,
2196 vprintf1("%d %d %d %d %d %d %d %d %F\n",
2197 1, 2, 3, 4, 5, 6, 7, 8, ld
);
2198 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2200 1, 2, 3, 4, 5, 6, 7, 8,
2201 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2202 1234567891234LL, 987654321986LL,
2204 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2205 "%F %l %l %f %f %F\n",
2206 1, 2, 3, 4, 5, 6, 7, 8,
2207 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2208 ld
, 1234567891234LL, 987654321986LL,
2212 stdarg_for_struct(bob
, bob
, bob
, bob
.profile
);
2215 void whitespace_test(void)
2222 ntf("whitspace:\n");\f\v
2226 #ifdef CORRECT_CR_HANDLING
2235 #ifdef ACCEPT_CR_IN_STRINGS
2236 printf("len1=%d\n", strlen("
2238 #ifdef CORRECT_CR_HANDLING
2241 printf("len1=%d str[0]=%d\n", strlen(str
), str
[0]);
2243 printf("len1=%d\n", strlen("
2246 #endif /* ACCEPT_CR_IN_STRINGS */
2249 int reltab
[3] = { 1, 2, 3 };
2251 int *rel1
= &reltab
[1];
2252 int *rel2
= &reltab
[2];
2254 void relocation_test(void)
2256 printf("*rel1=%d\n", *rel1
);
2257 printf("*rel2=%d\n", *rel2
);
2260 void old_style_f(a
,b
,c
)
2264 printf("a=%d b=%d b=%f\n", a
, b
, c
);
2267 void decl_func1(int cmpfn())
2269 printf("cmpfn=%lx\n", (long)cmpfn
);
2272 void decl_func2(cmpfn
)
2275 printf("cmpfn=%lx\n", (long)cmpfn
);
2278 void old_style_function(void)
2280 old_style_f((void *)1, 2, 3.0);
2287 #if defined __i386__ || defined __x86_64__ || defined __arm__
2288 char *p
= alloca(16);
2289 strcpy(p
,"123456789012345");
2290 printf("alloca: p is %s\n", p
);
2291 char *demo
= "This is only a test.\n";
2292 /* Test alloca embedded in a larger expression */
2293 printf("alloca: %s\n", strcpy(alloca(strlen(demo
)+1),demo
) );
2297 void *bounds_checking_is_enabled()
2299 char ca
[10], *cp
= ca
-1;
2300 return (ca
!= cp
+ 1) ? cp
: NULL
;
2303 typedef int constant_negative_array_size_as_compile_time_assertion_idiom
[(1 ? 2 : 0) - 1];
2305 void c99_vla_test(int size1
, int size2
)
2307 #if defined __i386__ || defined __x86_64__
2308 int size
= size1
* size2
;
2309 int tab1
[size
][2], tab2
[10][2];
2310 void *tab1_ptr
, *tab2_ptr
, *bad_ptr
;
2312 /* "size" should have been 'captured' at tab1 declaration,
2313 so modifying it should have no effect on VLA behaviour. */
2316 printf("Test C99 VLA 1 (sizeof): ");
2317 printf("%s\n", (sizeof tab1
== size1
* size2
* 2 * sizeof(int)) ? "PASSED" : "FAILED");
2320 printf("Test C99 VLA 2 (ptrs subtract): ");
2321 printf("%s\n", (tab2
- tab1
== (tab2_ptr
- tab1_ptr
) / (sizeof(int) * 2)) ? "PASSED" : "FAILED");
2322 printf("Test C99 VLA 3 (ptr add): ");
2323 printf("%s\n", &tab1
[5][1] == (tab1_ptr
+ (5 * 2 + 1) * sizeof(int)) ? "PASSED" : "FAILED");
2324 printf("Test C99 VLA 4 (ptr access): ");
2325 tab1
[size1
][1] = 42;
2326 printf("%s\n", (*((int *) (tab1_ptr
+ (size1
* 2 + 1) * sizeof(int))) == 42) ? "PASSED" : "FAILED");
2328 printf("Test C99 VLA 5 (bounds checking (might be disabled)): ");
2329 if (bad_ptr
= bounds_checking_is_enabled()) {
2330 int *t1
= &tab1
[size1
* size2
- 1][3];
2331 int *t2
= &tab2
[9][3];
2332 printf("%s ", bad_ptr
== t1
? "PASSED" : "FAILED");
2333 printf("%s ", bad_ptr
== t2
? "PASSED" : "FAILED");
2335 char*c1
= 1 + sizeof(tab1
) + (char*)tab1
;
2336 char*c2
= 1 + sizeof(tab2
) + (char*)tab2
;
2337 printf("%s ", bad_ptr
== c1
? "PASSED" : "FAILED");
2338 printf("%s ", bad_ptr
== c2
? "PASSED" : "FAILED");
2342 printf("%s ", bad_ptr
== i1
? "PASSED" : "FAILED");
2343 printf("%s ", bad_ptr
== i2
? "PASSED" : "FAILED");
2345 int *x1
= tab1
[size1
* size2
+ 1];
2346 int *x2
= tab2
[10 + 1];
2347 printf("%s ", bad_ptr
== x1
? "PASSED" : "FAILED");
2348 printf("%s ", bad_ptr
== x2
? "PASSED" : "FAILED");
2350 printf("PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED ");
2356 typedef __SIZE_TYPE__
uintptr_t;
2358 void sizeof_test(void)
2363 printf("sizeof(int) = %d\n", sizeof(int));
2364 printf("sizeof(unsigned int) = %d\n", sizeof(unsigned int));
2365 printf("sizeof(long) = %d\n", sizeof(long));
2366 printf("sizeof(unsigned long) = %d\n", sizeof(unsigned long));
2367 printf("sizeof(short) = %d\n", sizeof(short));
2368 printf("sizeof(unsigned short) = %d\n", sizeof(unsigned short));
2369 printf("sizeof(char) = %d\n", sizeof(char));
2370 printf("sizeof(unsigned char) = %d\n", sizeof(unsigned char));
2371 printf("sizeof(func) = %d\n", sizeof sizeof_test());
2373 printf("sizeof(a++) = %d\n", sizeof a
++);
2374 printf("a=%d\n", a
);
2376 printf("sizeof(**ptr) = %d\n", sizeof (**ptr
));
2378 /* The type of sizeof should be as large as a pointer, actually
2379 it should be size_t. */
2380 printf("sizeof(sizeof(int) = %d\n", sizeof(sizeof(int)));
2383 /* Effectively <<32, but defined also on 32bit machines. */
2387 /* This checks that sizeof really can be used to manipulate
2388 uintptr_t objects, without truncation. */
2389 t2
= t
& -sizeof(uintptr_t);
2390 printf ("%lu %lu\n", t
, t2
);
2392 /* some alignof tests */
2393 printf("__alignof__(int) = %d\n", __alignof__(int));
2394 printf("__alignof__(unsigned int) = %d\n", __alignof__(unsigned int));
2395 printf("__alignof__(short) = %d\n", __alignof__(short));
2396 printf("__alignof__(unsigned short) = %d\n", __alignof__(unsigned short));
2397 printf("__alignof__(char) = %d\n", __alignof__(char));
2398 printf("__alignof__(unsigned char) = %d\n", __alignof__(unsigned char));
2399 printf("__alignof__(func) = %d\n", __alignof__
sizeof_test());
2402 void typeof_test(void)
2411 printf("a=%f b=%f c=%f\n", a
, b
, c
);
2414 void statement_expr_test(void)
2427 printf("a=%d\n", a
);
2431 void local_label_test(void)
2437 __label__ l1
, l2
, l3
, l4
;
2451 printf("a=%d\n", a
);
2461 /* inline assembler test */
2464 /* from linux kernel */
2465 static char * strncat1(char * dest
,const char * src
,size_t count
)
2468 __asm__
__volatile__(
2477 "testb %%al,%%al\n\t"
2479 "2:\txorl %2,%2\n\t"
2481 : "=&S" (d0
), "=&D" (d1
), "=&a" (d2
), "=&c" (d3
)
2482 : "0" (src
),"1" (dest
),"2" (0),"3" (0xffffffff), "g" (count
)
2487 static char * strncat2(char * dest
,const char * src
,size_t count
)
2490 __asm__
__volatile__(
2491 "repne scasb\n\t" /* one-line repne prefix + string op */
2498 "testb %%al,%%al\n\t"
2500 "2:\txorl %2,%2\n\t"
2502 : "=&S" (d0
), "=&D" (d1
), "=&a" (d2
), "=&c" (d3
)
2503 : "0" (src
),"1" (dest
),"2" (0),"3" (0xffffffff), "g" (count
)
2508 static inline void * memcpy1(void * to
, const void * from
, size_t n
)
2511 __asm__
__volatile__(
2516 "1:\ttestb $1,%b4\n\t"
2520 : "=&c" (d0
), "=&D" (d1
), "=&S" (d2
)
2521 :"0" (n
/4), "q" (n
),"1" ((long) to
),"2" ((long) from
)
2526 static inline void * memcpy2(void * to
, const void * from
, size_t n
)
2529 __asm__
__volatile__(
2530 "rep movsl\n\t" /* one-line rep prefix + string op */
2534 "1:\ttestb $1,%b4\n\t"
2538 : "=&c" (d0
), "=&D" (d1
), "=&S" (d2
)
2539 :"0" (n
/4), "q" (n
),"1" ((long) to
),"2" ((long) from
)
2544 static __inline__
void sigaddset1(unsigned int *set
, int _sig
)
2546 __asm__("btsl %1,%0" : "=m"(*set
) : "Ir"(_sig
- 1) : "cc");
2549 static __inline__
void sigdelset1(unsigned int *set
, int _sig
)
2551 asm("btrl %1,%0" : "=m"(*set
) : "Ir"(_sig
- 1) : "cc");
2554 static __inline__ __const__
unsigned int swab32(unsigned int x
)
2556 __asm__("xchgb %b0,%h0\n\t" /* swap lower bytes */
2557 "rorl $16,%0\n\t" /* swap words */
2558 "xchgb %b0,%h0" /* swap higher bytes */
2564 static __inline__
unsigned long long mul64(unsigned int a
, unsigned int b
)
2566 unsigned long long res
;
2567 __asm__("mull %2" : "=A" (res
) : "a" (a
), "r" (b
));
2571 static __inline__
unsigned long long inc64(unsigned long long a
)
2573 unsigned long long res
;
2574 __asm__("addl $1, %%eax ; adcl $0, %%edx" : "=A" (res
) : "A" (a
));
2585 printf("inline asm:\n");
2586 /* test the no operand case */
2587 asm volatile ("xorl %eax, %eax");
2589 memcpy1(buf
, "hello", 6);
2590 strncat1(buf
, " worldXXXXX", 3);
2591 printf("%s\n", buf
);
2593 memcpy2(buf
, "hello", 6);
2594 strncat2(buf
, " worldXXXXX", 3);
2595 printf("%s\n", buf
);
2597 /* 'A' constraint test */
2598 printf("mul64=0x%Lx\n", mul64(0x12345678, 0xabcd1234));
2599 printf("inc64=0x%Lx\n", inc64(0x12345678ffffffff));
2602 sigdelset1(&set
, 2);
2603 sigaddset1(&set
, 16);
2604 /* NOTE: we test here if C labels are correctly restored after the
2608 __asm__("btsl %1,%0" : "=m"(set
) : "Ir"(20) : "cc");
2609 #ifdef __GNUC__ // works strange with GCC 4.3
2612 printf("set=0x%x\n", set
);
2614 printf("swab32(0x%08x) = 0x%0x\n", val
, swab32(val
));
2628 #define COMPAT_TYPE(type1, type2) \
2630 printf("__builtin_types_compatible_p(%s, %s) = %d\n", #type1, #type2, \
2631 __builtin_types_compatible_p (type1, type2));\
2636 void builtin_test(void)
2638 COMPAT_TYPE(int, int);
2639 COMPAT_TYPE(int, unsigned int);
2640 COMPAT_TYPE(int, char);
2641 COMPAT_TYPE(int, const int);
2642 COMPAT_TYPE(int, volatile int);
2643 COMPAT_TYPE(int *, int *);
2644 COMPAT_TYPE(int *, void *);
2645 COMPAT_TYPE(int *, const int *);
2646 COMPAT_TYPE(char *, unsigned char *);
2647 COMPAT_TYPE(char, unsigned char);
2648 /* space is needed because tcc preprocessor introduces a space between each token */
2649 COMPAT_TYPE(char **, void *);
2650 printf("res = %d\n", __builtin_constant_p(1));
2651 printf("res = %d\n", __builtin_constant_p(1 + 2));
2652 printf("res = %d\n", __builtin_constant_p(&constant_p_var
));
2653 printf("res = %d\n", __builtin_constant_p(constant_p_var
));
2657 extern int __attribute__((weak
)) weak_f1(void);
2658 extern int __attribute__((weak
)) weak_f2(void);
2659 extern int weak_f3(void);
2660 extern int __attribute__((weak
)) weak_v1
;
2661 extern int __attribute__((weak
)) weak_v2
;
2664 extern int (*weak_fpa
)() __attribute__((weak
));
2665 extern int __attribute__((weak
)) (*weak_fpb
)();
2666 extern __attribute__((weak
)) int (*weak_fpc
)();
2668 extern int weak_asm_f1(void) asm("weak_asm_f1x") __attribute((weak
));
2669 extern int __attribute((weak
)) weak_asm_f2(void) asm("weak_asm_f2x") ;
2670 extern int __attribute((weak
)) weak_asm_f3(void) asm("weak_asm_f3x") __attribute((weak
));
2671 extern int weak_asm_v1
asm("weak_asm_v1x") __attribute((weak
));
2672 extern int __attribute((weak
)) weak_asm_v2
asm("weak_asm_v2x") ;
2673 extern int __attribute((weak
)) weak_asm_v3(void) asm("weak_asm_v3x") __attribute((weak
));
2675 static const size_t dummy
= 0;
2676 extern __typeof(dummy
) weak_dummy1
__attribute__((weak
, alias("dummy")));
2677 extern __typeof(dummy
) __attribute__((weak
, alias("dummy"))) weak_dummy2
;
2678 extern __attribute__((weak
, alias("dummy"))) __typeof(dummy
) weak_dummy3
;
2680 int some_lib_func(void);
2681 int dummy_impl_of_slf(void) { return 444; }
2682 int some_lib_func(void) __attribute__((weak
, alias("dummy_impl_of_slf")));
2684 int weak_toolate() __attribute__((weak
));
2685 int weak_toolate() { return 0; }
2687 void __attribute__((weak
)) weak_test(void)
2689 printf("weak_f1=%d\n", weak_f1
? weak_f1() : 123);
2690 printf("weak_f2=%d\n", weak_f2
? weak_f2() : 123);
2691 printf("weak_f3=%d\n", weak_f3
? weak_f3() : 123);
2692 printf("weak_v1=%d\n",&weak_v1
? weak_v1
: 123);
2693 printf("weak_v2=%d\n",&weak_v2
? weak_v2
: 123);
2694 printf("weak_v3=%d\n",&weak_v3
? weak_v3
: 123);
2696 printf("weak_fpa=%d\n",&weak_fpa
? weak_fpa() : 123);
2697 printf("weak_fpb=%d\n",&weak_fpb
? weak_fpb() : 123);
2698 printf("weak_fpc=%d\n",&weak_fpc
? weak_fpc() : 123);
2700 printf("weak_asm_f1=%d\n", weak_asm_f1
!= NULL
);
2701 printf("weak_asm_f2=%d\n", weak_asm_f2
!= NULL
);
2702 printf("weak_asm_f3=%d\n", weak_asm_f3
!= NULL
);
2703 printf("weak_asm_v1=%d\n",&weak_asm_v1
!= NULL
);
2704 printf("weak_asm_v2=%d\n",&weak_asm_v2
!= NULL
);
2705 printf("weak_asm_v3=%d\n",&weak_asm_v3
!= NULL
);
2708 int __attribute__((weak
)) weak_f2() { return 222; }
2709 int __attribute__((weak
)) weak_f3() { return 333; }
2710 int __attribute__((weak
)) weak_v2
= 222;
2711 int __attribute__((weak
)) weak_v3
= 333;
2714 void const_func(const int a
)
2718 void const_warn_test(void)
2727 int getme (struct condstruct
*s
, int i
)
2729 int i1
= (i
== 0 ? 0 : s
)->i
;
2730 int i2
= (i
== 0 ? s
: 0)->i
;
2731 int i3
= (i
== 0 ? (void*)0 : s
)->i
;
2732 int i4
= (i
== 0 ? s
: (void*)0)->i
;
2733 return i1
+ i2
+ i3
+ i4
;
2742 struct global_data global_data
;
2744 int global_data_getstuff (int *, int);
2746 void global_data_callit (int i
)
2748 *global_data
.b
[i
] = global_data_getstuff (global_data
.b
[i
], 1);
2751 int global_data_getstuff (int *p
, int i
)
2756 void global_data_test (void)
2758 global_data
.a
[0] = 42;
2759 global_data
.b
[0] = &global_data
.a
[0];
2760 global_data_callit (0);
2761 printf ("%d\n", global_data
.a
[0]);
2766 unsigned char fill
: 3;
2767 unsigned char b1
: 1;
2768 unsigned char b2
: 1;
2769 unsigned char fill2
: 3;
2772 int glob1
, glob2
, glob3
;
2774 void compare_comparisons (struct cmpcmpS
*s
)
2776 if (s
->b1
!= (glob1
== glob2
)
2777 || (s
->b2
!= (glob1
== glob3
)))
2778 printf ("comparing comparisons broken\n");
2781 void cmp_comparison_test(void)
2785 glob1
= 42; glob2
= 42;
2788 compare_comparisons (&s
);
2791 int fcompare (double a
, double b
, int code
)
2794 case 0: return a
== b
;
2795 case 1: return a
!= b
;
2796 case 2: return a
< b
;
2797 case 3: return a
>= b
;
2798 case 4: return a
> b
;
2799 case 5: return a
<= b
;
2803 void math_cmp_test(void)
2805 double nan
= 0.0/0.0;
2809 #define bug(a,b,op,iop,part) printf("Test broken: %s %s %s %s %d\n", #a, #b, #op, #iop, part)
2811 /* This asserts that "a op b" is _not_ true, but "a iop b" is true.
2812 And it does this in various ways so that all code generation paths
2813 are checked (generating inverted tests, or non-inverted tests, or
2814 producing a 0/1 value without jumps (that's done in the fcompare
2816 #define FCMP(a,b,op,iop,code) \
2817 if (fcompare (a,b,code)) \
2818 bug (a,b,op,iop,1); \
2820 bug (a,b,op,iop,2); \
2824 bug (a,b,op,iop,3); \
2825 if ((a op b) || comp) \
2826 bug (a,b,op,iop,4); \
2827 if ((a iop b) || comp) \
2832 /* Equality tests. */
2833 FCMP(nan
, nan
, ==, !=, 0);
2834 FCMP(one
, two
, ==, !=, 0);
2835 FCMP(one
, one
, !=, ==, 1);
2836 /* Non-equality is a bit special. */
2837 if (!fcompare (nan
, nan
, 1))
2838 bug (nan
, nan
, !=, ==, 6);
2840 /* Relational tests on numbers. */
2841 FCMP(two
, one
, <, >=, 2);
2842 FCMP(one
, two
, >=, <, 3);
2843 FCMP(one
, two
, >, <=, 4);
2844 FCMP(two
, one
, <=, >, 5);
2846 /* Relational tests on NaNs. Note that the inverse op here is
2847 always !=, there's no operator in C that is equivalent to !(a < b),
2848 when NaNs are involved, same for the other relational ops. */
2849 FCMP(nan
, nan
, <, !=, 2);
2850 FCMP(nan
, nan
, >=, !=, 3);
2851 FCMP(nan
, nan
, >, !=, 4);
2852 FCMP(nan
, nan
, <=, !=, 5);
2855 double get100 () { return 100.0; }
2857 void callsave_test(void)
2859 #if defined __i386__ || defined __x86_64__ || defined __arm__
2860 int i
, s
; double *d
; double t
;
2861 s
= sizeof (double);
2862 printf ("callsavetest: %d\n", s
);
2863 d
= alloca (sizeof(double));
2865 /* x86-64 had a bug were the next call to get100 would evict
2866 the lvalue &d[0] as VT_LLOCAL, and the reload would be done
2867 in int type, not pointer type. When alloca returns a pointer
2868 with the high 32 bit set (which is likely on x86-64) the access
2869 generates a segfault. */
2870 i
= d
[0] > get100 ();
2876 void bfa3(ptrdiff_t str_offset
)
2878 printf("bfa3: %s\n", (char *)__builtin_frame_address(3) + str_offset
);
2880 void bfa2(ptrdiff_t str_offset
)
2882 printf("bfa2: %s\n", (char *)__builtin_frame_address(2) + str_offset
);
2885 void bfa1(ptrdiff_t str_offset
)
2887 printf("bfa1: %s\n", (char *)__builtin_frame_address(1) + str_offset
);
2891 void builtin_frame_address_test(void)
2893 /* builtin_frame_address fails on ARM with gcc which make test3 fail */
2895 char str
[] = "__builtin_frame_address";
2896 char *fp0
= __builtin_frame_address(0);
2898 printf("str: %s\n", str
);