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 */ ();
385 static void print_num(char *fn
, int line
, int num
) {
386 printf("fn %s, line %d, num %d\n", fn
, line
, num
);
389 void recursive_macro_test(void)
392 #define ELF32_ST_TYPE(val) ((val) & 0xf)
393 #define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
394 #define STB_WEAK 2 /* Weak symbol */
395 #define ELFW(type) ELF##32##_##type
396 printf("%d\n", ELFW(ST_INFO
)(STB_WEAK
, ELFW(ST_TYPE
)(123)));
400 #define print_num(x) print_num(__FILE__,__LINE__,x)
402 WRAP(print_num(123));
403 WRAP(WRAP(print_num(123)));
405 static struct recursive_macro
{ int rm_field
; } G
;
406 #define rm_field (G.rm_field)
407 printf("rm_field = %d\n", rm_field
);
408 printf("rm_field = %d\n", WRAP(rm_field
));
409 WRAP((printf("rm_field = %d %d\n", rm_field
, WRAP(rm_field
))));
426 void ps(const char *s
)
438 const char foo1_string
[] = "\
447 printf("\141\1423\143\n");/* dezdez test */
448 printf("\x41\x42\x43\x3a\n");
449 printf("c=%c\n", 'r');
450 printf("wc=%C 0x%lx %C\n", L
'a', L
'\x1234', L
'c');
451 printf("foo1_string='%s'\n", foo1_string
);
453 printf("wstring=%S\n", L
"abc");
454 printf("wstring=%S\n", L
"abc" L
"def" "ghi");
455 printf("'\\377'=%d '\\xff'=%d\n", '\377', '\xff');
456 printf("L'\\377'=%d L'\\xff'=%d\n", L
'\377', L
'\xff');
460 while ((b
= b
+ 1) < 96) {
464 printf("fib=%d\n", fib(33));
466 while (b
!= 0x80000000) {
479 for(i
= 0; i
< 10;i
++)
489 /* c99 for loop init test */
490 for (size_t count
= 1; count
< 3; count
++)
491 printf("count=%d\n", count
);
492 printf("count = %d\n", count
);
494 /* break/continue tests */
506 /* break/continue tests */
518 for(i
= 0;i
< 10;i
++) {
526 typedef int typedef_and_label
;
531 static void *label_table
[3] = { &&label1
, &&label2
, &&label3
};
535 /* This needs to parse as label, not as start of decl. */
546 /* we also test computed gotos (GCC extension) */
548 goto *label_table
[i
];
576 printf("enum:\n%d %d %d %d %d %d\n",
577 E0
, E1
, E2
, E3
, E4
, E5
);
579 printf("b1=%d\n", b1
);
595 printf("typedef:\n");
596 printf("a=%d\n", *a
);
598 printf("mytype2=%d\n", mytype2
);
603 printf("forward:\n");
609 void forward_ref(void)
611 printf("forward ok\n");
614 typedef struct struct1
{
634 struct struct1 st1
, st2
;
636 int main(int argc
, char **argv
)
641 recursive_macro_test();
655 constant_expr_test();
659 compound_literal_test();
661 struct_assign_test();
671 old_style_function();
676 statement_expr_test();
684 cmp_comparison_test();
687 builtin_frame_address_test();
699 printf("g1=%d\n", g
);
707 printf("g2=%d\n", g
);
711 printf("g3=%d\n", g
);
715 printf("g4=%d\n", g
);
718 printf("g5=%d\n", g
);
726 printf("sizeof(a) = %d\n", sizeof(a
));
727 printf("sizeof(\"a\") = %d\n", sizeof("a"));
729 printf("sizeof(__func__) = %d\n", sizeof(__func__
));
731 printf("sizeof tab %d\n", sizeof(tab
));
732 printf("sizeof tab2 %d\n", sizeof tab2
);
736 printf("%d %d %d\n", tab
[0], tab
[1], tab
[2]);
739 tab2
[i
][j
] = 10 * i
+ j
;
741 printf(" %3d", ((int *)tab2
)[i
]);
744 printf("sizeof(size_t)=%d\n", sizeof(size_t));
745 printf("sizeof(ptrdiff_t)=%d\n", sizeof(ptrdiff_t));
752 printf("%d\n", a
+= 1);
753 printf("%d\n", a
-= 2);
754 printf("%d\n", a
*= 31232132);
755 printf("%d\n", a
/= 4);
756 printf("%d\n", a
%= 20);
757 printf("%d\n", a
&= 6);
758 printf("%d\n", a
^= 7);
759 printf("%d\n", a
|= 8);
760 printf("%d\n", a
>>= 3);
761 printf("%d\n", a
<<= 4);
765 printf("%d\n", a
+ 1);
766 printf("%d\n", a
- 2);
767 printf("%d\n", a
* 312);
768 printf("%d\n", a
/ 4);
769 printf("%d\n", b
/ 4);
770 printf("%d\n", (unsigned)b
/ 4);
771 printf("%d\n", a
% 20);
772 printf("%d\n", b
% 20);
773 printf("%d\n", (unsigned)b
% 20);
774 printf("%d\n", a
& 6);
775 printf("%d\n", a
^ 7);
776 printf("%d\n", a
| 8);
777 printf("%d\n", a
>> 3);
778 printf("%d\n", b
>> 3);
779 printf("%d\n", (unsigned)b
>> 3);
780 printf("%d\n", a
<< 4);
785 printf("%d\n", 12 + 1);
786 printf("%d\n", 12 - 2);
787 printf("%d\n", 12 * 312);
788 printf("%d\n", 12 / 4);
789 printf("%d\n", 12 % 20);
790 printf("%d\n", 12 & 6);
791 printf("%d\n", 12 ^ 7);
792 printf("%d\n", 12 | 8);
793 printf("%d\n", 12 >> 2);
794 printf("%d\n", 12 << 4);
798 printf("%d %d %d %d\n",
807 return (c
>= 'a' & c
<= 'z') | (c
>= 'A' & c
<= 'Z') | c
== '_';
810 /**********************/
812 int vstack
[10], *vstack_ptr
;
814 void vpush(int vt
, int vc
)
820 void vpop(int *ft
, int *fc
)
833 vstack_ptr
[-2] &= ~0xffffff80;
835 printf("res= %d %d\n", a
, b
);
838 void constant_expr_test()
841 printf("constant_expr:\n");
843 printf("%d\n", a
* 16);
844 printf("%d\n", a
* 1);
845 printf("%d\n", a
+ 0);
855 printf("expr_ptr:\n");
858 printf("diff=%d\n", q
- p
);
860 printf("inc=%d\n", p
- tab4
);
862 printf("dec=%d\n", p
- tab4
);
864 printf("inc=%d\n", p
- tab4
);
866 printf("dec=%d\n", p
- tab4
);
867 printf("add=%d\n", p
+ 3 - tab4
);
868 printf("add=%d\n", 3 + p
- tab4
);
870 /* check if 64bit support is ok */
873 printf("%p %p %ld\n", q
, p
, p
-q
);
874 printf("%d %d %d %d %d %d\n",
875 p
== q
, p
!= q
, p
< q
, p
<= q
, p
>= q
, p
> q
);
878 printf("%p %p %ld\n", q
, p
, p
-q
);
879 printf("%d %d %d %d %d %d\n",
880 p
== q
, p
!= q
, p
< q
, p
<= q
, p
>= q
, p
> q
);
881 p
= (int *)((char *)p
+ 0xf0000000);
882 printf("%p %p %ld\n", q
, p
, p
-q
);
883 printf("%d %d %d %d %d %d\n",
884 p
== q
, p
!= q
, p
< q
, p
<= q
, p
>= q
, p
> q
);
886 printf("%p %p %ld\n", q
, p
, p
-q
);
887 printf("%d %d %d %d %d %d\n",
888 p
== q
, p
!= q
, p
< q
, p
<= q
, p
>= q
, p
> q
);
893 struct size12 s
[2], *sp
= s
;
898 printf("%d\n", sp
[j
].i
);
905 printf("constant_expr:\n");
908 printf("%d\n", a
== a
);
909 printf("%d\n", a
!= a
);
911 printf("%d\n", a
< b
);
912 printf("%d\n", a
<= b
);
913 printf("%d\n", a
<= a
);
914 printf("%d\n", b
>= a
);
915 printf("%d\n", a
>= a
);
916 printf("%d\n", b
> a
);
918 printf("%d\n", (unsigned)a
< b
);
919 printf("%d\n", (unsigned)a
<= b
);
920 printf("%d\n", (unsigned)a
<= a
);
921 printf("%d\n", (unsigned)b
>= a
);
922 printf("%d\n", (unsigned)a
>= a
);
923 printf("%d\n", (unsigned)b
> a
);
952 printf("sizes: %d %d %d %d\n",
953 sizeof(struct struct1
),
954 sizeof(struct struct2
),
955 sizeof(union union1
),
956 sizeof(union union2
));
960 printf("st1: %d %d %d\n",
961 st1
.f1
, st1
.f2
, st1
.f3
);
964 printf("union1: %d\n", st1
.u
.v1
);
967 printf("union2: %d\n", u
.w1
);
972 printf("st2: %d %d %d\n",
973 s
->f1
, s
->f2
, s
->f3
);
974 printf("str_addr=%x\n", (int)st1
.str
- (int)&st1
.f1
);
976 /* align / size tests */
977 printf("aligntest1 sizeof=%d alignof=%d\n",
978 sizeof(struct aligntest1
), __alignof__(struct aligntest1
));
979 printf("aligntest2 sizeof=%d alignof=%d\n",
980 sizeof(struct aligntest2
), __alignof__(struct aligntest2
));
981 printf("aligntest3 sizeof=%d alignof=%d\n",
982 sizeof(struct aligntest3
), __alignof__(struct aligntest3
));
983 printf("aligntest4 sizeof=%d alignof=%d\n",
984 sizeof(struct aligntest4
), __alignof__(struct aligntest4
));
986 /* empty structures (GCC extension) */
987 printf("sizeof(struct empty) = %d\n", sizeof(struct empty
));
988 printf("alignof(struct empty) = %d\n", __alignof__(struct empty
));
991 /* XXX: depend on endianness */
992 void char_short_test()
996 printf("char_short:\n");
1000 printf("s8=%d %d\n",
1001 *(char *)&var1
, *(char *)&var2
);
1002 printf("u8=%d %d\n",
1003 *(unsigned char *)&var1
, *(unsigned char *)&var2
);
1004 printf("s16=%d %d\n",
1005 *(short *)&var1
, *(short *)&var2
);
1006 printf("u16=%d %d\n",
1007 *(unsigned short *)&var1
, *(unsigned short *)&var2
);
1008 printf("s32=%d %d\n",
1009 *(int *)&var1
, *(int *)&var2
);
1010 printf("u32=%d %d\n",
1011 *(unsigned int *)&var1
, *(unsigned int *)&var2
);
1012 *(char *)&var1
= 0x08;
1013 printf("var1=%x\n", var1
);
1014 *(short *)&var1
= 0x0809;
1015 printf("var1=%x\n", var1
);
1016 *(int *)&var1
= 0x08090a0b;
1017 printf("var1=%x\n", var1
);
1020 /******************/
1022 typedef struct Sym
{
1030 #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
1031 #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
1033 static int toupper1(int a
)
1040 int *s
, a
, b
, t
, f
, i
;
1044 printf("!s=%d\n", !s
);
1048 printf("a=%d\n", a
);
1050 printf("a=%d %d %d\n", 0 || 0, 0 || 1, 1 || 1);
1051 printf("a=%d %d %d\n", 0 && 0, 0 && 1, 1 && 1);
1052 printf("a=%d %d\n", 1 ? 1 : 0, 0 ? 1 : 0);
1067 printf("b=%d\n", a
+ (0 ? 1 : a
/ 2));
1069 /* test register spilling */
1072 a
= (a
+ b
) * ((a
< b
) ?
1073 ((b
- a
) * (a
- b
)): a
+ b
);
1074 printf("a=%d\n", a
);
1076 /* test complex || or && expressions */
1080 printf("exp=%d\n", f
== (32 <= a
&& a
<= 3));
1081 printf("r=%d\n", (t
|| f
) + (t
&& f
));
1086 int aspect_native
= 65536;
1087 double bfu_aspect
= 1.0;
1089 for(aspect_on
= 0; aspect_on
< 2; aspect_on
++) {
1090 aspect
=aspect_on
?(aspect_native
*bfu_aspect
+0.5):65535UL;
1091 printf("aspect=%d\n", aspect
);
1095 /* test ? : GCC extension */
1097 static int v1
= 34 ? : -1; /* constant case */
1098 static int v2
= 0 ? : -1; /* constant case */
1101 printf("%d %d\n", v1
, v2
);
1102 printf("%d %d\n", a
- 30 ? : a
* 2, a
+ 1 ? : a
* 2);
1105 /* again complex expression */
1106 for(i
=0;i
<256;i
++) {
1107 if (toupper1 (i
) != TOUPPER (i
))
1108 printf("error %d\n", i
);
1112 /* GCC accepts that */
1113 static int tab_reinit
[];
1114 static int tab_reinit
[10];
1116 //int cinit1; /* a global variable can be defined several times without error ! */
1120 int *cinit2
= (int []){3, 2, 1};
1122 void compound_literal_test(void)
1127 printf("compound_test:\n");
1129 p
= (int []){1, 2, 3};
1131 printf(" %d", p
[i
]);
1135 printf("%d", cinit2
[i
]);
1139 printf("q1=%s\n", q
);
1141 q
= (char *){ "tralala2" };
1142 printf("q2=%s\n", q
);
1145 printf("q3=%s\n", q3
);
1147 q
= (char []){ "tralala3" };
1148 printf("q4=%s\n", q
);
1151 p
= (int []){1, 2, cinit1
+ 3};
1153 printf(" %d", p
[i
]);
1157 p
= (int []){1, 2, 4 + i
};
1158 printf("%d %d %d\n",
1180 printf("kr_test:\n");
1181 printf("func1=%d\n", kr_func1(3, 4));
1182 printf("func2=%d\n", kr_func2(3, 4));
1189 tab
= (char*)malloc(20);
1206 /* structure assignment tests */
1212 struct structa1 ssta1
;
1214 void struct_assign_test1(struct structa1 s1
, int t
, float f
)
1216 printf("%d %d %d %f\n", s1
.f1
, s1
.f2
, t
, f
);
1219 struct structa1
struct_assign_test2(struct structa1 s1
, int t
)
1226 void struct_assign_test(void)
1229 struct structa1 lsta1
, lsta2
;
1236 printf("struct_assign_test:\n");
1240 printf("%d %d\n", s
.lsta1
.f1
, s
.lsta1
.f2
);
1242 printf("%d %d\n", s
.lsta2
.f1
, s
.lsta2
.f2
);
1247 struct_assign_test1(ps
->lsta2
, 3, 4.5);
1249 printf("before call: %d %d\n", s
.lsta2
.f1
, s
.lsta2
.f2
);
1250 ps
->lsta2
= struct_assign_test2(ps
->lsta2
, ps
->i
);
1251 printf("after call: %d %d\n", ps
->lsta2
.f1
, ps
->lsta2
.f2
);
1256 /* XXX: we should allow this even without braces */
1257 { struct_assign_test
}
1259 printf("%d\n", struct_assign_test
== t
[0].elem
);
1262 /* casts to short/char */
1264 void cast1(char a
, short b
, unsigned char c
, unsigned short d
)
1266 printf("%d %d %d %d\n", a
, b
, c
, d
);
1280 p
-= 0x700000000042;
1282 printf("cast_test:\n");
1286 printf("%d %d %d %d\n",
1289 (unsigned char)(a
+ 1),
1290 (unsigned short)(a
+ 1));
1291 printf("%d %d %d %d\n",
1294 (unsigned char)0xfffff,
1295 (unsigned short)0xfffff);
1297 a
= (bcast
= 128) + 1;
1299 a
= (scast
= 65536) + 1;
1302 printf("sizeof(c) = %d, sizeof((int)c) = %d\n", sizeof(c
), sizeof((int)c
));
1304 /* test cast from unsigned to signed short to int */
1307 printf("((unsigned)(short)0x%08x) = 0x%08x\n", b
, d
);
1310 printf("((unsigned)(char)0x%08x) = 0x%08x\n", b
, d
);
1312 /* test implicit int casting for array accesses */
1316 printf("%d %d\n", tab
[0], tab
[1]);
1318 /* test implicit casting on some operators */
1319 printf("sizeof(+(char)'a') = %d\n", sizeof(+(char)'a'));
1320 printf("sizeof(-(char)'a') = %d\n", sizeof(-(char)'a'));
1321 printf("sizeof(~(char)'a') = %d\n", sizeof(-(char)'a'));
1323 /* from pointer to integer types */
1324 printf("%d %d %ld %ld %lld %lld\n",
1325 (int)p
, (unsigned int)p
,
1326 (long)p
, (unsigned long)p
,
1327 (long long)p
, (unsigned long long)p
);
1329 /* from integers to pointers */
1330 printf("%p %p %p %p\n",
1331 (void *)a
, (void *)b
, (void *)c
, (void *)d
);
1334 /* initializers tests */
1335 struct structinit1
{
1344 int sinit3
[3] = { 1, 2, {{3}}, };
1345 int sinit4
[3][2] = { {1, 2}, {3, 4}, {5, 6} };
1346 int sinit5
[3][2] = { 1, 2, 3, 4, 5, 6 };
1347 int sinit6
[] = { 1, 2, 3 };
1348 int sinit7
[] = { [2] = 3, [0] = 1, 2 };
1349 char sinit8
[] = "hello" "trala";
1351 struct structinit1 sinit9
= { 1, 2, 3 };
1352 struct structinit1 sinit10
= { .f2
= 2, 3, .f1
= 1 };
1353 struct structinit1 sinit11
= { .f2
= 2, 3, .f1
= 1,
1361 char *sinit12
= "hello world";
1367 char sinit14
[10] = { "abc" };
1368 int sinit15
[3] = { sizeof(sinit15
), 1, 2 };
1370 struct { int a
[3], b
; } sinit16
[] = { { 1 }, 2 };
1386 struct complexinit0
{
1391 struct complexinit
{
1393 const struct complexinit0
*b
;
1396 const static struct complexinit cix
[] = {
1399 .b
= (const struct complexinit0
[]) {
1407 struct complexinit2
{
1412 struct complexinit2 cix20
;
1414 struct complexinit2 cix21
= {
1416 .b
= { 3001, 3002, 3003 }
1419 struct complexinit2 cix22
= {
1421 .b
= { 4001, 4002, 4003, 4004, 4005, 4006 }
1424 void init_test(void)
1428 int linit4
[3][2] = { {1, 2}, {3, 4}, {5, 6} };
1429 int linit6
[] = { 1, 2, 3 };
1431 char linit8
[] = "hello" "trala";
1432 int linit12
[10] = { 1, 2 };
1433 int linit13
[10] = { 1, 2, [7] = 3, [3] = 4, };
1434 char linit14
[10] = "abc";
1435 int linit15
[10] = { linit1
, linit1
+ 1, [6] = linit1
+ 2, };
1436 struct linit16
{ int a1
, a2
, a3
, a4
; } linit16
= { 1, .a3
= 2 };
1437 int linit17
= sizeof(linit17
);
1439 printf("init_test:\n");
1441 printf("sinit1=%d\n", sinit1
);
1442 printf("sinit2=%d\n", sinit2
);
1443 printf("sinit3=%d %d %d %d\n",
1449 printf("sinit6=%d\n", sizeof(sinit6
));
1450 printf("sinit7=%d %d %d %d\n",
1456 printf("sinit8=%s\n", sinit8
);
1457 printf("sinit9=%d %d %d\n",
1462 printf("sinit10=%d %d %d\n",
1467 printf("sinit11=%d %d %d %d %d %d\n",
1478 printf("[%d][%d] = %d %d %d\n",
1479 i
, j
, sinit4
[i
][j
], sinit5
[i
][j
], linit4
[i
][j
]);
1480 printf("linit1=%d\n", linit1
);
1481 printf("linit2=%d\n", linit2
);
1482 printf("linit6=%d\n", sizeof(linit6
));
1483 printf("linit8=%d %s\n", sizeof(linit8
), linit8
);
1485 printf("sinit12=%s\n", sinit12
);
1486 printf("sinit13=%d %s %s %s\n",
1491 printf("sinit14=%s\n", sinit14
);
1493 for(i
=0;i
<10;i
++) printf(" %d", linit12
[i
]);
1495 for(i
=0;i
<10;i
++) printf(" %d", linit13
[i
]);
1497 for(i
=0;i
<10;i
++) printf(" %d", linit14
[i
]);
1499 for(i
=0;i
<10;i
++) printf(" %d", linit15
[i
]);
1501 printf("%d %d %d %d\n",
1506 /* test that initialisation is done after variable declare */
1507 printf("linit17=%d\n", linit17
);
1508 printf("sinit15=%d\n", sinit15
[0]);
1509 printf("sinit16=%d %d\n", sinit16
[0].a
[0], sinit16
[1].a
[0]);
1510 printf("sinit17=%s %d %s %d\n",
1511 sinit17
[0].s
, sinit17
[0].len
,
1512 sinit17
[1].s
, sinit17
[1].len
);
1514 printf("%x ", sinit18
[i
]);
1516 /* complex init check */
1517 printf("cix: %d %d %d %d %d %d %d\n",
1519 cix
[0].b
[0].a
, cix
[0].b
[0].b
,
1520 cix
[0].b
[1].a
, cix
[0].b
[1].b
,
1521 cix
[0].b
[2].a
, cix
[0].b
[2].b
);
1522 printf("cix2: %d %d\n", cix21
.b
[2], cix22
.b
[5]);
1523 printf("sizeof cix20 %d, cix21 %d, sizeof cix22 %d\n", sizeof cix20
, sizeof cix21
, sizeof cix22
);
1551 /* ISOC99 _Bool type */
1552 void c99_bool_test(void)
1558 printf("bool_test:\n");
1559 printf("sizeof(_Bool) = %d\n", sizeof(_Bool
));
1561 printf("cast: %d %d %d\n", (_Bool
)10, (_Bool
)0, (_Bool
)a
);
1563 printf("b = %d\n", b
);
1565 printf("b = %d\n", b
);
1569 void bitfield_test(void)
1581 unsigned int f5
: 7;
1583 printf("bitfield_test:");
1584 printf("sizeof(st1) = %d\n", sizeof(st1
));
1593 printf("%d %d %d %d %d\n",
1594 st1
.f1
, st1
.f2
, st1
.f3
, st1
.f4
, st1
.f5
);
1597 printf("%d %d\n", sa
, ca
);
1601 printf("st1.f1 == -1\n");
1603 printf("st1.f1 != -1\n");
1605 printf("st1.f2 == -1\n");
1607 printf("st1.f2 != -1\n");
1609 /* bit sizes below must be bigger than 32 since GCC doesn't allow
1610 long-long bitfields whose size is not bigger than int */
1615 unsigned long long f3
: 38;
1617 st2
.f1
= 0x123456789ULL
;
1619 st2
.f2
= (long long)a
<< 25;
1622 printf("%lld %lld %lld\n", st2
.f1
, st2
.f2
, st2
.f3
);
1626 #define FLOAT_FMT "%f\n"
1628 /* x86's float isn't compatible with GCC */
1629 #define FLOAT_FMT "%.5f\n"
1632 /* declare strto* functions as they are C99 */
1633 double strtod(const char *nptr
, char **endptr
);
1636 float strtof(const char *nptr
, char **endptr
) {return (float)strtod(nptr
, endptr
);}
1637 LONG_DOUBLE
strtold(const char *nptr
, char **endptr
) {return (LONG_DOUBLE
)strtod(nptr
, endptr
);}
1639 float strtof(const char *nptr
, char **endptr
);
1640 LONG_DOUBLE
strtold(const char *nptr
, char **endptr
);
1643 #define FTEST(prefix, typename, type, fmt)\
1644 void prefix ## cmp(type a, type b)\
1646 printf("%d %d %d %d %d %d\n",\
1653 printf(fmt " " fmt " " fmt " " fmt " " fmt " " fmt " " fmt "\n",\
1661 printf(fmt "\n", ++a);\
1662 printf(fmt "\n", a++);\
1663 printf(fmt "\n", a);\
1665 printf("%d %d\n", !a, !b);\
1667 void prefix ## fcast(type a)\
1675 unsigned long long llua;\
1680 printf("ftof: %f %f %Lf\n", fa, da, la);\
1682 llia = (long long)a;\
1683 a = (a >= 0) ? a : -a;\
1684 ua = (unsigned int)a;\
1685 llua = (unsigned long long)a;\
1686 printf("ftoi: %d %u %lld %llu\n", ia, ua, llia, llua);\
1689 llia = -0x123456789012345LL;\
1690 llua = 0xf123456789012345LLU;\
1692 printf("itof: " fmt "\n", b);\
1694 printf("utof: " fmt "\n", b);\
1696 printf("lltof: " fmt "\n", b);\
1698 printf("ulltof: " fmt "\n", b);\
1701 float prefix ## retf(type a) { return a; }\
1702 double prefix ## retd(type a) { return a; }\
1703 LONG_DOUBLE prefix ## retld(type a) { return a; }\
1705 void prefix ## call(void)\
1707 printf("float: " FLOAT_FMT, prefix ## retf(42.123456789));\
1708 printf("double: %f\n", prefix ## retd(42.123456789));\
1709 printf("long double: %Lf\n", prefix ## retld(42.123456789));\
1710 printf("strto%s: %f\n", #prefix, (double)strto ## prefix("1.2", NULL));\
1713 void prefix ## signed_zeros(void) \
1715 type x = 0.0, y = -0.0, n, p;\
1717 printf ("Test 1.0 / x != 1.0 / y returns %d (should be 1).\n",\
1718 1.0 / x != 1.0 / y);\
1720 printf ("x != y; this is wrong!\n");\
1724 printf ("Test 1.0 / x != 1.0 / -x returns %d (should be 1).\n",\
1725 1.0 / x != 1.0 / n);\
1727 printf ("x != -x; this is wrong!\n");\
1731 printf ("Test 1.0 / x != 1.0 / +y returns %d (should be 1).\n",\
1732 1.0 / x != 1.0 / p);\
1734 printf ("x != +y; this is wrong!\n");\
1737 printf ("Test 1.0 / x != 1.0 / -y returns %d (should be 0).\n",\
1738 1.0 / x != 1.0 / p);\
1740 printf ("x != -y; this is wrong!\n");\
1742 void prefix ## test(void)\
1744 printf("testing '%s'\n", #typename);\
1745 prefix ## cmp(1, 2.5);\
1746 prefix ## cmp(2, 1.5);\
1747 prefix ## cmp(1, 1);\
1748 prefix ## fcast(234.6);\
1749 prefix ## fcast(-2334.6);\
1751 prefix ## signed_zeros();\
1754 FTEST(f
, float, float, "%f")
1755 FTEST(d
, double, double, "%f")
1756 FTEST(ld
, long double, LONG_DOUBLE
, "%Lf")
1758 double ftab1
[3] = { 1.2, 3.4, -5.6 };
1761 void float_test(void)
1763 #if !defined(__arm__) || defined(__ARM_PCS_VFP)
1769 printf("float_test:\n");
1770 printf("sizeof(float) = %d\n", sizeof(float));
1771 printf("sizeof(double) = %d\n", sizeof(double));
1772 printf("sizeof(long double) = %d\n", sizeof(LONG_DOUBLE
));
1776 printf("%f %f %f\n", ftab1
[0], ftab1
[1], ftab1
[2]);
1777 printf("%f %f %f\n", 2.12, .5, 2.3e10
);
1778 // printf("%f %f %f\n", 0x1234p12, 0x1e23.23p10, 0x12dp-10);
1780 printf("da=%f\n", da
);
1782 printf("fa=%f\n", fa
);
1785 printf("da = %f\n", da
);
1788 printf("db = %f\n", db
);
1797 return fib(n
-1) + fib(n
-2);
1809 printf("funcptr:\n");
1816 /* more complicated pointer computation */
1819 printf("sizeof1 = %d\n", sizeof(funcptr_test
));
1820 printf("sizeof2 = %d\n", sizeof funcptr_test
);
1821 printf("sizeof3 = %d\n", sizeof(&funcptr_test
));
1822 printf("sizeof4 = %d\n", sizeof &funcptr_test
);
1825 void lloptest(long long a
, long long b
)
1827 unsigned long long ua
, ub
;
1832 printf("arith: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1838 printf("arith1: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1844 printf("bin: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1850 printf("test: %d %d %d %d %d %d\n",
1858 printf("utest: %d %d %d %d %d %d\n",
1869 printf("arith2: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", a
, b
);
1870 printf("arith2: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", a
++, b
++);
1871 printf("arith2: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", --a
, --b
);
1872 printf("arith2: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", a
, b
);
1874 printf("not: %d %d %d %d\n", !a
, !ua
, !b
, !ub
);
1877 void llshift(long long a
, int b
)
1879 printf("shift: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1880 (unsigned long long)a
>> b
,
1883 printf("shiftc: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1884 (unsigned long long)a
>> 3,
1887 printf("shiftc: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n",
1888 (unsigned long long)a
>> 35,
1898 long long la
, lb
, lc
;
1899 unsigned long long ula
, ulb
, ulc
;
1902 la
= (la
<< 20) | 0x12345;
1904 printf("la=" LONG_LONG_FORMAT
" ula=" ULONG_LONG_FORMAT
"\n", la
, ula
);
1909 printf("lltof: %f %f %Lf\n", fa
, da
, lda
);
1914 printf("ftoll: " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", la
, lb
, lc
);
1919 printf("ulltof: %f %f %Lf\n", fa
, da
, lda
);
1924 printf("ftoull: " ULONG_LONG_FORMAT
" " ULONG_LONG_FORMAT
" " ULONG_LONG_FORMAT
"\n", ula
, ulb
, ulc
);
1927 long long llfunc1(int a
)
1937 long long int value(struct S
*v
)
1939 return ((long long int)v
->item
);
1942 void longlong_test(void)
1947 printf("longlong_test:\n");
1948 printf("sizeof(long long) = %d\n", sizeof(long long));
1953 printf(LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"\n", a
, b
);
1954 printf(LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" %Lx\n",
1958 0x1234567812345679);
1960 printf(LONG_LONG_FORMAT
"\n", a
);
1963 lloptest(0xff, 0x1234);
1964 b
= 0x72345678 << 10;
1968 b
= 0x72345678LL
<< 10;
1979 /* long long reg spill test */
1984 printf("%lld\n", value(&a
));
1986 lloptest(0x80000000, 0);
1988 /* another long long spill test */
1994 printf("%lld\n", *p
);
1999 printf("%d %d %d %d\n", a
> b
, a
< b
, a
>= b
, a
<= b
);
2001 printf(LONG_LONG_FORMAT
"\n", 0x123456789LLU
);
2004 void manyarg_test(void)
2006 LONG_DOUBLE ld
= 1234567891234LL;
2007 printf("manyarg_test:\n");
2008 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f\n",
2009 1, 2, 3, 4, 5, 6, 7, 8,
2010 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0);
2011 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2012 LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" %f %f\n",
2013 1, 2, 3, 4, 5, 6, 7, 8,
2014 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2015 1234567891234LL, 987654321986LL,
2017 printf("%Lf %d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2018 LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" %f %f\n",
2019 ld
, 1, 2, 3, 4, 5, 6, 7, 8,
2020 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2021 1234567891234LL, 987654321986LL,
2023 printf("%d %d %d %d %d %d %d %d %Lf\n",
2024 1, 2, 3, 4, 5, 6, 7, 8, ld
);
2025 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2026 LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
"%f %f %Lf\n",
2027 1, 2, 3, 4, 5, 6, 7, 8,
2028 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2029 1234567891234LL, 987654321986LL,
2031 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2032 "%Lf " LONG_LONG_FORMAT
" " LONG_LONG_FORMAT
" %f %f %Lf\n",
2033 1, 2, 3, 4, 5, 6, 7, 8,
2034 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2035 ld
, 1234567891234LL, 987654321986LL,
2039 void vprintf1(const char *fmt
, ...)
2063 i
= va_arg(ap
, int);
2067 d
= va_arg(ap
, double);
2071 ll
= va_arg(ap
, long long);
2072 printf(LONG_LONG_FORMAT
, ll
);
2075 ld
= va_arg(ap
, LONG_DOUBLE
);
2093 void stdarg_for_struct(struct myspace bob
, ...)
2095 struct myspace george
, bill
;
2100 bill
= va_arg(ap
, struct myspace
);
2101 george
= va_arg(ap
, struct myspace
);
2102 validate
= va_arg(ap
, int);
2103 printf("stdarg_for_struct: %d %d %d %d\n",
2104 bob
.profile
, bill
.profile
, george
.profile
, validate
);
2108 void stdarg_test(void)
2110 LONG_DOUBLE ld
= 1234567891234LL;
2113 vprintf1("%d %d %d\n", 1, 2, 3);
2114 vprintf1("%f %d %f\n", 1.0, 2, 3.0);
2115 vprintf1("%l %l %d %f\n", 1234567891234LL, 987654321986LL, 3, 1234.0);
2116 vprintf1("%F %F %F\n", LONG_DOUBLE_LITERAL(1.2), LONG_DOUBLE_LITERAL(2.3), LONG_DOUBLE_LITERAL(3.4));
2117 vprintf1("%d %f %l %F %d %f %l %F\n",
2118 1, 1.2, 3LL, LONG_DOUBLE_LITERAL(4.5), 6, 7.8, 9LL, LONG_DOUBLE_LITERAL(0.1));
2119 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f\n",
2120 1, 2, 3, 4, 5, 6, 7, 8,
2121 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8);
2122 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f\n",
2123 1, 2, 3, 4, 5, 6, 7, 8,
2124 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0);
2125 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2127 1, 2, 3, 4, 5, 6, 7, 8,
2128 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2129 1234567891234LL, 987654321986LL,
2131 vprintf1("%F %d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2133 ld
, 1, 2, 3, 4, 5, 6, 7, 8,
2134 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2135 1234567891234LL, 987654321986LL,
2137 vprintf1("%d %d %d %d %d %d %d %d %F\n",
2138 1, 2, 3, 4, 5, 6, 7, 8, ld
);
2139 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2141 1, 2, 3, 4, 5, 6, 7, 8,
2142 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2143 1234567891234LL, 987654321986LL,
2145 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2146 "%F %l %l %f %f %F\n",
2147 1, 2, 3, 4, 5, 6, 7, 8,
2148 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2149 ld
, 1234567891234LL, 987654321986LL,
2153 stdarg_for_struct(bob
, bob
, bob
, bob
.profile
);
2156 void whitespace_test(void)
2162 ntf("whitspace:\n");\f\v
2166 #ifdef CORRECT_CR_HANDLING
2175 #ifdef ACCEPT_CR_IN_STRINGS
2176 printf("len1=%d\n", strlen("
2178 #ifdef CORRECT_CR_HANDLING
2181 printf("len1=%d str[0]=%d\n", strlen(str
), str
[0]);
2183 printf("len1=%d\n", strlen("
a
2185 #endif /* ACCEPT_CR_IN_STRINGS */
2188 int reltab
[3] = { 1, 2, 3 };
2190 int *rel1
= &reltab
[1];
2191 int *rel2
= &reltab
[2];
2193 void relocation_test(void)
2195 printf("*rel1=%d\n", *rel1
);
2196 printf("*rel2=%d\n", *rel2
);
2199 void old_style_f(a
,b
,c
)
2203 printf("a=%d b=%d b=%f\n", a
, b
, c
);
2206 void decl_func1(int cmpfn())
2208 printf("cmpfn=%lx\n", (long)cmpfn
);
2211 void decl_func2(cmpfn
)
2214 printf("cmpfn=%lx\n", (long)cmpfn
);
2217 void old_style_function(void)
2219 old_style_f((void *)1, 2, 3.0);
2226 #if defined __i386__ || defined __x86_64__ || defined __arm__
2227 char *p
= alloca(16);
2228 strcpy(p
,"123456789012345");
2229 printf("alloca: p is %s\n", p
);
2230 char *demo
= "This is only a test.\n";
2231 /* Test alloca embedded in a larger expression */
2232 printf("alloca: %s\n", strcpy(alloca(strlen(demo
)+1),demo
) );
2236 void *bounds_checking_is_enabled()
2238 char ca
[10], *cp
= ca
-1;
2239 return (ca
!= cp
+ 1) ? cp
: NULL
;
2242 typedef int constant_negative_array_size_as_compile_time_assertion_idiom
[(1 ? 2 : 0) - 1];
2244 void c99_vla_test(int size1
, int size2
)
2246 #if defined __i386__ || defined __x86_64__
2247 int size
= size1
* size2
;
2248 int tab1
[size
][2], tab2
[10][2];
2249 void *tab1_ptr
, *tab2_ptr
, *bad_ptr
;
2251 /* "size" should have been 'captured' at tab1 declaration,
2252 so modifying it should have no effect on VLA behaviour. */
2255 printf("Test C99 VLA 1 (sizeof): ");
2256 printf("%s\n", (sizeof tab1
== size1
* size2
* 2 * sizeof(int)) ? "PASSED" : "FAILED");
2259 printf("Test C99 VLA 2 (ptrs subtract): ");
2260 printf("%s\n", (tab2
- tab1
== (tab2_ptr
- tab1_ptr
) / (sizeof(int) * 2)) ? "PASSED" : "FAILED");
2261 printf("Test C99 VLA 3 (ptr add): ");
2262 printf("%s\n", &tab1
[5][1] == (tab1_ptr
+ (5 * 2 + 1) * sizeof(int)) ? "PASSED" : "FAILED");
2263 printf("Test C99 VLA 4 (ptr access): ");
2264 tab1
[size1
][1] = 42;
2265 printf("%s\n", (*((int *) (tab1_ptr
+ (size1
* 2 + 1) * sizeof(int))) == 42) ? "PASSED" : "FAILED");
2267 printf("Test C99 VLA 5 (bounds checking (might be disabled)): ");
2268 if (bad_ptr
= bounds_checking_is_enabled()) {
2269 int *t1
= &tab1
[size1
* size2
- 1][3];
2270 int *t2
= &tab2
[9][3];
2271 printf("%s ", bad_ptr
== t1
? "PASSED" : "FAILED");
2272 printf("%s ", bad_ptr
== t2
? "PASSED" : "FAILED");
2274 char*c1
= 1 + sizeof(tab1
) + (char*)tab1
;
2275 char*c2
= 1 + sizeof(tab2
) + (char*)tab2
;
2276 printf("%s ", bad_ptr
== c1
? "PASSED" : "FAILED");
2277 printf("%s ", bad_ptr
== c2
? "PASSED" : "FAILED");
2281 printf("%s ", bad_ptr
== i1
? "PASSED" : "FAILED");
2282 printf("%s ", bad_ptr
== i2
? "PASSED" : "FAILED");
2284 int *x1
= tab1
[size1
* size2
+ 1];
2285 int *x2
= tab2
[10 + 1];
2286 printf("%s ", bad_ptr
== x1
? "PASSED" : "FAILED");
2287 printf("%s ", bad_ptr
== x2
? "PASSED" : "FAILED");
2289 printf("PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED ");
2295 typedef __SIZE_TYPE__
uintptr_t;
2297 void sizeof_test(void)
2302 printf("sizeof(int) = %d\n", sizeof(int));
2303 printf("sizeof(unsigned int) = %d\n", sizeof(unsigned int));
2304 printf("sizeof(long) = %d\n", sizeof(long));
2305 printf("sizeof(unsigned long) = %d\n", sizeof(unsigned long));
2306 printf("sizeof(short) = %d\n", sizeof(short));
2307 printf("sizeof(unsigned short) = %d\n", sizeof(unsigned short));
2308 printf("sizeof(char) = %d\n", sizeof(char));
2309 printf("sizeof(unsigned char) = %d\n", sizeof(unsigned char));
2310 printf("sizeof(func) = %d\n", sizeof sizeof_test());
2312 printf("sizeof(a++) = %d\n", sizeof a
++);
2313 printf("a=%d\n", a
);
2315 printf("sizeof(**ptr) = %d\n", sizeof (**ptr
));
2317 /* The type of sizeof should be as large as a pointer, actually
2318 it should be size_t. */
2319 printf("sizeof(sizeof(int) = %d\n", sizeof(sizeof(int)));
2322 /* Effectively <<32, but defined also on 32bit machines. */
2326 /* This checks that sizeof really can be used to manipulate
2327 uintptr_t objects, without truncation. */
2328 t2
= t
& -sizeof(uintptr_t);
2329 printf ("%lu %lu\n", t
, t2
);
2331 /* some alignof tests */
2332 printf("__alignof__(int) = %d\n", __alignof__(int));
2333 printf("__alignof__(unsigned int) = %d\n", __alignof__(unsigned int));
2334 printf("__alignof__(short) = %d\n", __alignof__(short));
2335 printf("__alignof__(unsigned short) = %d\n", __alignof__(unsigned short));
2336 printf("__alignof__(char) = %d\n", __alignof__(char));
2337 printf("__alignof__(unsigned char) = %d\n", __alignof__(unsigned char));
2338 printf("__alignof__(func) = %d\n", __alignof__
sizeof_test());
2341 void typeof_test(void)
2350 printf("a=%f b=%f c=%f\n", a
, b
, c
);
2353 void statement_expr_test(void)
2366 printf("a=%d\n", a
);
2370 void local_label_test(void)
2376 __label__ l1
, l2
, l3
, l4
;
2390 printf("a=%d\n", a
);
2400 /* inline assembler test */
2403 /* from linux kernel */
2404 static char * strncat1(char * dest
,const char * src
,size_t count
)
2407 __asm__
__volatile__(
2416 "testb %%al,%%al\n\t"
2418 "2:\txorl %2,%2\n\t"
2420 : "=&S" (d0
), "=&D" (d1
), "=&a" (d2
), "=&c" (d3
)
2421 : "0" (src
),"1" (dest
),"2" (0),"3" (0xffffffff), "g" (count
)
2426 static char * strncat2(char * dest
,const char * src
,size_t count
)
2429 __asm__
__volatile__(
2430 "repne scasb\n\t" /* one-line repne prefix + string op */
2437 "testb %%al,%%al\n\t"
2439 "2:\txorl %2,%2\n\t"
2441 : "=&S" (d0
), "=&D" (d1
), "=&a" (d2
), "=&c" (d3
)
2442 : "0" (src
),"1" (dest
),"2" (0),"3" (0xffffffff), "g" (count
)
2447 static inline void * memcpy1(void * to
, const void * from
, size_t n
)
2450 __asm__
__volatile__(
2455 "1:\ttestb $1,%b4\n\t"
2459 : "=&c" (d0
), "=&D" (d1
), "=&S" (d2
)
2460 :"0" (n
/4), "q" (n
),"1" ((long) to
),"2" ((long) from
)
2465 static inline void * memcpy2(void * to
, const void * from
, size_t n
)
2468 __asm__
__volatile__(
2469 "rep movsl\n\t" /* one-line rep prefix + string op */
2473 "1:\ttestb $1,%b4\n\t"
2477 : "=&c" (d0
), "=&D" (d1
), "=&S" (d2
)
2478 :"0" (n
/4), "q" (n
),"1" ((long) to
),"2" ((long) from
)
2483 static __inline__
void sigaddset1(unsigned int *set
, int _sig
)
2485 __asm__("btsl %1,%0" : "=m"(*set
) : "Ir"(_sig
- 1) : "cc");
2488 static __inline__
void sigdelset1(unsigned int *set
, int _sig
)
2490 asm("btrl %1,%0" : "=m"(*set
) : "Ir"(_sig
- 1) : "cc");
2493 static __inline__ __const__
unsigned int swab32(unsigned int x
)
2495 __asm__("xchgb %b0,%h0\n\t" /* swap lower bytes */
2496 "rorl $16,%0\n\t" /* swap words */
2497 "xchgb %b0,%h0" /* swap higher bytes */
2503 static __inline__
unsigned long long mul64(unsigned int a
, unsigned int b
)
2505 unsigned long long res
;
2506 __asm__("mull %2" : "=A" (res
) : "a" (a
), "r" (b
));
2510 static __inline__
unsigned long long inc64(unsigned long long a
)
2512 unsigned long long res
;
2513 __asm__("addl $1, %%eax ; adcl $0, %%edx" : "=A" (res
) : "A" (a
));
2524 printf("inline asm:\n");
2525 /* test the no operand case */
2526 asm volatile ("xorl %eax, %eax");
2528 memcpy1(buf
, "hello", 6);
2529 strncat1(buf
, " worldXXXXX", 3);
2530 printf("%s\n", buf
);
2532 memcpy2(buf
, "hello", 6);
2533 strncat2(buf
, " worldXXXXX", 3);
2534 printf("%s\n", buf
);
2536 /* 'A' constraint test */
2537 printf("mul64=0x%Lx\n", mul64(0x12345678, 0xabcd1234));
2538 printf("inc64=0x%Lx\n", inc64(0x12345678ffffffff));
2541 sigdelset1(&set
, 2);
2542 sigaddset1(&set
, 16);
2543 /* NOTE: we test here if C labels are correctly restored after the
2547 __asm__("btsl %1,%0" : "=m"(set
) : "Ir"(20) : "cc");
2548 #ifdef __GNUC__ // works strange with GCC 4.3
2551 printf("set=0x%x\n", set
);
2553 printf("swab32(0x%08x) = 0x%0x\n", val
, swab32(val
));
2567 #define COMPAT_TYPE(type1, type2) \
2569 printf("__builtin_types_compatible_p(%s, %s) = %d\n", #type1, #type2, \
2570 __builtin_types_compatible_p (type1, type2));\
2575 void builtin_test(void)
2578 COMPAT_TYPE(int, int);
2579 COMPAT_TYPE(int, unsigned int);
2580 COMPAT_TYPE(int, char);
2581 COMPAT_TYPE(int, const int);
2582 COMPAT_TYPE(int, volatile int);
2583 COMPAT_TYPE(int *, int *);
2584 COMPAT_TYPE(int *, void *);
2585 COMPAT_TYPE(int *, const int *);
2586 COMPAT_TYPE(char *, unsigned char *);
2587 COMPAT_TYPE(char *, signed char *);
2588 COMPAT_TYPE(char *, char *);
2589 /* space is needed because tcc preprocessor introduces a space between each token */
2590 COMPAT_TYPE(char * *, void *);
2592 printf("res = %d\n", __builtin_constant_p(1));
2593 printf("res = %d\n", __builtin_constant_p(1 + 2));
2594 printf("res = %d\n", __builtin_constant_p(&constant_p_var
));
2595 printf("res = %d\n", __builtin_constant_p(constant_p_var
));
2599 extern int __attribute__((weak
)) weak_f1(void);
2600 extern int __attribute__((weak
)) weak_f2(void);
2601 extern int weak_f3(void);
2602 extern int __attribute__((weak
)) weak_v1
;
2603 extern int __attribute__((weak
)) weak_v2
;
2606 extern int (*weak_fpa
)() __attribute__((weak
));
2607 extern int __attribute__((weak
)) (*weak_fpb
)();
2608 extern __attribute__((weak
)) int (*weak_fpc
)();
2610 extern int weak_asm_f1(void) asm("weak_asm_f1x") __attribute((weak
));
2611 extern int __attribute((weak
)) weak_asm_f2(void) asm("weak_asm_f2x") ;
2612 extern int __attribute((weak
)) weak_asm_f3(void) asm("weak_asm_f3x") __attribute((weak
));
2613 extern int weak_asm_v1
asm("weak_asm_v1x") __attribute((weak
));
2614 extern int __attribute((weak
)) weak_asm_v2
asm("weak_asm_v2x") ;
2615 extern int __attribute((weak
)) weak_asm_v3(void) asm("weak_asm_v3x") __attribute((weak
));
2617 static const size_t dummy
= 0;
2618 extern __typeof(dummy
) weak_dummy1
__attribute__((weak
, alias("dummy")));
2619 extern __typeof(dummy
) __attribute__((weak
, alias("dummy"))) weak_dummy2
;
2620 extern __attribute__((weak
, alias("dummy"))) __typeof(dummy
) weak_dummy3
;
2622 int some_lib_func(void);
2623 int dummy_impl_of_slf(void) { return 444; }
2624 int some_lib_func(void) __attribute__((weak
, alias("dummy_impl_of_slf")));
2626 int weak_toolate() __attribute__((weak
));
2627 int weak_toolate() { return 0; }
2629 void __attribute__((weak
)) weak_test(void)
2631 printf("weak_f1=%d\n", weak_f1
? weak_f1() : 123);
2632 printf("weak_f2=%d\n", weak_f2
? weak_f2() : 123);
2633 printf("weak_f3=%d\n", weak_f3
? weak_f3() : 123);
2634 printf("weak_v1=%d\n",&weak_v1
? weak_v1
: 123);
2635 printf("weak_v2=%d\n",&weak_v2
? weak_v2
: 123);
2636 printf("weak_v3=%d\n",&weak_v3
? weak_v3
: 123);
2638 printf("weak_fpa=%d\n",&weak_fpa
? weak_fpa() : 123);
2639 printf("weak_fpb=%d\n",&weak_fpb
? weak_fpb() : 123);
2640 printf("weak_fpc=%d\n",&weak_fpc
? weak_fpc() : 123);
2642 printf("weak_asm_f1=%d\n", weak_asm_f1
!= NULL
);
2643 printf("weak_asm_f2=%d\n", weak_asm_f2
!= NULL
);
2644 printf("weak_asm_f3=%d\n", weak_asm_f3
!= NULL
);
2645 printf("weak_asm_v1=%d\n",&weak_asm_v1
!= NULL
);
2646 printf("weak_asm_v2=%d\n",&weak_asm_v2
!= NULL
);
2647 printf("weak_asm_v3=%d\n",&weak_asm_v3
!= NULL
);
2650 int __attribute__((weak
)) weak_f2() { return 222; }
2651 int __attribute__((weak
)) weak_f3() { return 333; }
2652 int __attribute__((weak
)) weak_v2
= 222;
2653 int __attribute__((weak
)) weak_v3
= 333;
2656 void const_func(const int a
)
2660 void const_warn_test(void)
2669 int getme (struct condstruct
*s
, int i
)
2671 int i1
= (i
== 0 ? 0 : s
)->i
;
2672 int i2
= (i
== 0 ? s
: 0)->i
;
2673 int i3
= (i
== 0 ? (void*)0 : s
)->i
;
2674 int i4
= (i
== 0 ? s
: (void*)0)->i
;
2675 return i1
+ i2
+ i3
+ i4
;
2684 struct global_data global_data
;
2686 int global_data_getstuff (int *, int);
2688 void global_data_callit (int i
)
2690 *global_data
.b
[i
] = global_data_getstuff (global_data
.b
[i
], 1);
2693 int global_data_getstuff (int *p
, int i
)
2698 void global_data_test (void)
2700 global_data
.a
[0] = 42;
2701 global_data
.b
[0] = &global_data
.a
[0];
2702 global_data_callit (0);
2703 printf ("%d\n", global_data
.a
[0]);
2708 unsigned char fill
: 3;
2709 unsigned char b1
: 1;
2710 unsigned char b2
: 1;
2711 unsigned char fill2
: 3;
2714 int glob1
, glob2
, glob3
;
2716 void compare_comparisons (struct cmpcmpS
*s
)
2718 if (s
->b1
!= (glob1
== glob2
)
2719 || (s
->b2
!= (glob1
== glob3
)))
2720 printf ("comparing comparisons broken\n");
2723 void cmp_comparison_test(void)
2727 glob1
= 42; glob2
= 42;
2730 compare_comparisons (&s
);
2733 int fcompare (double a
, double b
, int code
)
2736 case 0: return a
== b
;
2737 case 1: return a
!= b
;
2738 case 2: return a
< b
;
2739 case 3: return a
>= b
;
2740 case 4: return a
> b
;
2741 case 5: return a
<= b
;
2745 void math_cmp_test(void)
2747 double nan
= 0.0/0.0;
2751 #define bug(a,b,op,iop,part) printf("Test broken: %s %s %s %s %d\n", #a, #b, #op, #iop, part)
2753 /* This asserts that "a op b" is _not_ true, but "a iop b" is true.
2754 And it does this in various ways so that all code generation paths
2755 are checked (generating inverted tests, or non-inverted tests, or
2756 producing a 0/1 value without jumps (that's done in the fcompare
2758 #define FCMP(a,b,op,iop,code) \
2759 if (fcompare (a,b,code)) \
2760 bug (a,b,op,iop,1); \
2762 bug (a,b,op,iop,2); \
2766 bug (a,b,op,iop,3); \
2767 if ((a op b) || comp) \
2768 bug (a,b,op,iop,4); \
2769 if ((a iop b) || comp) \
2774 /* Equality tests. */
2775 FCMP(nan
, nan
, ==, !=, 0);
2776 FCMP(one
, two
, ==, !=, 0);
2777 FCMP(one
, one
, !=, ==, 1);
2778 /* Non-equality is a bit special. */
2779 if (!fcompare (nan
, nan
, 1))
2780 bug (nan
, nan
, !=, ==, 6);
2782 /* Relational tests on numbers. */
2783 FCMP(two
, one
, <, >=, 2);
2784 FCMP(one
, two
, >=, <, 3);
2785 FCMP(one
, two
, >, <=, 4);
2786 FCMP(two
, one
, <=, >, 5);
2788 /* Relational tests on NaNs. Note that the inverse op here is
2789 always !=, there's no operator in C that is equivalent to !(a < b),
2790 when NaNs are involved, same for the other relational ops. */
2791 FCMP(nan
, nan
, <, !=, 2);
2792 FCMP(nan
, nan
, >=, !=, 3);
2793 FCMP(nan
, nan
, >, !=, 4);
2794 FCMP(nan
, nan
, <=, !=, 5);
2797 double get100 () { return 100.0; }
2799 void callsave_test(void)
2801 #if defined __i386__ || defined __x86_64__ || defined __arm__
2802 int i
, s
; double *d
; double t
;
2803 s
= sizeof (double);
2804 printf ("callsavetest: %d\n", s
);
2805 d
= alloca (sizeof(double));
2807 /* x86-64 had a bug were the next call to get100 would evict
2808 the lvalue &d[0] as VT_LLOCAL, and the reload would be done
2809 in int type, not pointer type. When alloca returns a pointer
2810 with the high 32 bit set (which is likely on x86-64) the access
2811 generates a segfault. */
2812 i
= d
[0] > get100 ();
2818 void bfa3(ptrdiff_t str_offset
)
2820 printf("bfa3: %s\n", (char *)__builtin_frame_address(3) + str_offset
);
2822 void bfa2(ptrdiff_t str_offset
)
2824 printf("bfa2: %s\n", (char *)__builtin_frame_address(2) + str_offset
);
2827 void bfa1(ptrdiff_t str_offset
)
2829 printf("bfa1: %s\n", (char *)__builtin_frame_address(1) + str_offset
);
2833 void builtin_frame_address_test(void)
2835 /* builtin_frame_address fails on ARM with gcc which make test3 fail */
2837 char str
[] = "__builtin_frame_address";
2838 char *fp0
= __builtin_frame_address(0);
2840 printf("str: %s\n", str
);