Limit access end-of-struct warning a bit
[tinycc.git] / tests / tcctest.c
blobbc089688bdb90a6102badb65b4ff612590a4a4d7
1 /*
2 * TCC auto test program
3 */
4 #include "config.h"
6 #if GCC_MAJOR >= 3
8 /* Unfortunately, gcc version < 3 does not handle that! */
9 #define ALL_ISOC99
11 /* only gcc 3 handles _Bool correctly */
12 #define BOOL_ISOC99
14 /* gcc 2.95.3 does not handle correctly CR in strings or after strays */
15 #define CORRECT_CR_HANDLING
17 #endif
19 #if defined(_WIN32)
20 #define LONG_LONG_FORMAT "%lld"
21 #define ULONG_LONG_FORMAT "%llu"
22 #else
23 #define LONG_LONG_FORMAT "%Ld"
24 #define ULONG_LONG_FORMAT "%Lu"
25 #endif
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
31 #else
32 #define LONG_DOUBLE long double
33 #define LONG_DOUBLE_LITERAL(x) x ## L
34 #endif
36 /* deprecated and no longer supported in gcc 3.3 */
37 //#define ACCEPT_CR_IN_STRINGS
39 /* __VA_ARGS__ and __func__ support */
40 #define C99_MACROS
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.h"
49 #include TCCLIB_INC
51 #include TCCLIB_INC1.TCCLIB_INC2
53 #include TCCLIB_INC1.h>
55 #include TCCLIB_INC3
57 #include <tcclib.h>
59 #include "tcclib.h"
61 #include "tcctest.h"
63 /* Test two more ways to include a file named like a pp-number */
64 #define INC(name) <tests/name.h>
65 #define funnyname 42test.h
66 #define incdir tests/
67 #define incname < incdir funnyname >
68 #define __stringify(x) #x
69 #define stringify(x) __stringify(x)
70 #include INC(42test)
71 #include incname
72 #include stringify(funnyname)
74 void intdiv_test();
75 void string_test();
76 void expr_test();
77 void macro_test();
78 void recursive_macro_test();
79 void scope_test();
80 void forward_test();
81 void funcptr_test();
82 void loop_test();
83 void switch_test();
84 void goto_test();
85 void enum_test();
86 void typedef_test();
87 void struct_test();
88 void array_test();
89 void expr_ptr_test();
90 void bool_test();
91 void optimize_out();
92 void expr2_test();
93 void constant_expr_test();
94 void expr_cmp_test();
95 void char_short_test();
96 void init_test(void);
97 void compound_literal_test(void);
98 int kr_test();
99 void struct_assign_test(void);
100 void cast_test(void);
101 void bitfield_test(void);
102 void c99_bool_test(void);
103 void float_test(void);
104 void longlong_test(void);
105 void manyarg_test(void);
106 void stdarg_test(void);
107 void whitespace_test(void);
108 void relocation_test(void);
109 void old_style_function(void);
110 void alloca_test(void);
111 void c99_vla_test(int size1, int size2);
112 void sizeof_test(void);
113 void typeof_test(void);
114 void local_label_test(void);
115 void statement_expr_test(void);
116 void asm_test(void);
117 void builtin_test(void);
118 void weak_test(void);
119 void global_data_test(void);
120 void cmp_comparison_test(void);
121 void math_cmp_test(void);
122 void callsave_test(void);
123 void builtin_frame_address_test(void);
124 void attrib_test(void);
126 int fib(int n);
127 void num(int n);
128 void forward_ref(void);
129 int isid(int c);
131 /* Line joining happens before tokenization, so the following
132 must be parsed as ellipsis. */
133 void funny_line_continuation (int, ..\
134 . );
136 char via_volatile (char);
138 #define A 2
139 #define N 1234 + A
140 #define pf printf
141 #define M1(a, b) (a) + (b)
143 #define str\
144 (s) # s
145 #define glue(a, b) a ## b
146 #define xglue(a, b) glue(a, b)
147 #define HIGHLOW "hello"
148 #define LOW LOW ", world"
150 static int onetwothree = 123;
151 #define onetwothree4 onetwothree
152 #define onetwothree xglue(onetwothree,4)
154 #define min(a, b) ((a) < (b) ? (a) : (b))
156 #ifdef C99_MACROS
157 #define dprintf(level,...) printf(__VA_ARGS__)
158 #endif
160 /* gcc vararg macros */
161 #define dprintf1(level, fmt, args...) printf(fmt, ## args)
163 #define MACRO_NOARGS()
165 #define AAA 3
166 #undef AAA
167 #define AAA 4
169 #if 1
170 #define B3 1
171 #elif 1
172 #define B3 2
173 #elif 0
174 #define B3 3
175 #else
176 #define B3 4
177 #endif
179 #ifdef __TINYC__
180 /* We try to handle this syntax. Make at least sure it doesn't segfault. */
181 char invalid_function_def()[] {}
182 #endif
184 #define __INT64_C(c) c ## LL
185 #define INT64_MIN (-__INT64_C(9223372036854775807)-1)
187 int qq(int x)
189 return x + 40;
191 #define qq(x) x
193 #define spin_lock(lock) do { } while (0)
194 #define wq_spin_lock spin_lock
195 #define TEST2() wq_spin_lock(a)
197 #define UINT_MAX ((unsigned) -1)
199 void intdiv_test(void)
201 printf("18/21=%u\n", 18/21);
202 printf("18%%21=%u\n", 18%21);
203 printf("41/21=%u\n", 41/21);
204 printf("41%%21=%u\n", 41%21);
205 printf("42/21=%u\n", 42/21);
206 printf("42%%21=%u\n", 42%21);
207 printf("43/21=%u\n", 43/21);
208 printf("43%%21=%u\n", 43%21);
209 printf("126/21=%u\n", 126/21);
210 printf("126%%21=%u\n", 126%21);
211 printf("131/21=%u\n", 131/21);
212 printf("131%%21=%u\n", 131%21);
213 printf("(UINT_MAX/2+3)/2=%u\n", (UINT_MAX/2+3)/2);
214 printf("(UINT_MAX/2+3)%%2=%u\n", (UINT_MAX/2+3)%2);
216 printf("18/-21=%u\n", 18/-21);
217 printf("18%%-21=%u\n", 18%-21);
218 printf("41/-21=%u\n", 41/-21);
219 printf("41%%-21=%u\n", 41%-21);
220 printf("42/-21=%u\n", 42/-21);
221 printf("42%%-21=%u\n", 42%-21);
222 printf("43/-21=%u\n", 43/-21);
223 printf("43%%-21=%u\n", 43%-21);
224 printf("126/-21=%u\n", 126/-21);
225 printf("126%%-21=%u\n", 126%-21);
226 printf("131/-21=%u\n", 131/-21);
227 printf("131%%-21=%u\n", 131%-21);
228 printf("(UINT_MAX/2+3)/-2=%u\n", (UINT_MAX/2+3)/-2);
229 printf("(UINT_MAX/2+3)%%-2=%u\n", (UINT_MAX/2+3)%-2);
231 printf("-18/21=%u\n", -18/21);
232 printf("-18%%21=%u\n", -18%21);
233 printf("-41/21=%u\n", -41/21);
234 printf("-41%%21=%u\n", -41%21);
235 printf("-42/21=%u\n", -42/21);
236 printf("-42%%21=%u\n", -42%21);
237 printf("-43/21=%u\n", -43/21);
238 printf("-43%%21=%u\n", -43%21);
239 printf("-126/21=%u\n", -126/21);
240 printf("-126%%21=%u\n", -126%21);
241 printf("-131/21=%u\n", -131/21);
242 printf("-131%%21=%u\n", -131%21);
243 printf("-(UINT_MAX/2+3)/2=%u\n", (0-(UINT_MAX/2+3))/2);
244 printf("-(UINT_MAX/2+3)%%2=%u\n", (0-(UINT_MAX/2+3))%2);
246 printf("-18/-21=%u\n", -18/-21);
247 printf("-18%%-21=%u\n", -18%-21);
248 printf("-41/-21=%u\n", -41/-21);
249 printf("-41%%-21=%u\n", -41%-21);
250 printf("-42/-21=%u\n", -42/-21);
251 printf("-42%%-21=%u\n", -42%-21);
252 printf("-43/-21=%u\n", -43/-21);
253 printf("-43%%-21=%u\n", -43%-21);
254 printf("-126/-21=%u\n", -126/-21);
255 printf("-126%%-21=%u\n", -126%-21);
256 printf("-131/-21=%u\n", -131/-21);
257 printf("-131%%-21=%u\n", -131%-21);
258 printf("-(UINT_MAX/2+3)/-2=%u\n", (0-(UINT_MAX/2+3))/-2);
259 printf("-(UINT_MAX/2+3)%%-2=%u\n", (0-(UINT_MAX/2+3))%-2);
262 void macro_test(void)
264 printf("macro:\n");\f\v
265 pf("N=%d\n", N);
266 printf("aaa=%d\n", AAA);
268 printf("min=%d\n", min(1, min(2, -1)));
270 printf("s1=%s\n", glue(HIGH, LOW));
271 printf("s2=%s\n", xglue(HIGH, LOW));
272 printf("s3=%s\n", str("c"));
273 printf("s4=%s\n", str(a1));
274 printf("B3=%d\n", B3);
276 printf("onetwothree=%d\n", onetwothree);
278 #ifdef A
279 printf("A defined\n");
280 #endif
281 #ifdef B
282 printf("B defined\n");
283 #endif
284 #ifdef A
285 printf("A defined\n");
286 #else
287 printf("A not defined\n");
288 #endif
289 #ifdef B
290 printf("B defined\n");
291 #else
292 printf("B not defined\n");
293 #endif
295 #ifdef A
296 printf("A defined\n");
297 #ifdef B
298 printf("B1 defined\n");
299 #else
300 printf("B1 not defined\n");
301 #endif
302 #else
303 printf("A not defined\n");
304 #ifdef B
305 printf("B2 defined\n");
306 #else
307 printf("B2 not defined\n");
308 #endif
309 #endif
311 #if 1+1
312 printf("test true1\n");
313 #endif
314 #if 0
315 printf("test true2\n");
316 #endif
317 #if 1-1
318 printf("test true3\n");
319 #endif
320 #if defined(A)
321 printf("test trueA\n");
322 #endif
323 #if defined(B)
324 printf("test trueB\n");
325 #endif
327 #if 0
328 printf("test 0\n");
329 #elif 0
330 printf("test 1\n");
331 #elif 2
332 printf("test 2\n");
333 #else
334 printf("test 3\n");
335 #endif
337 MACRO_NOARGS();
339 #ifdef __LINE__
340 printf("__LINE__ defined\n");
341 #endif
343 printf("__LINE__=%d __FILE__=%s\n",
344 __LINE__, __FILE__);
345 #if 0
346 #line 200
347 printf("__LINE__=%d __FILE__=%s\n",
348 __LINE__, __FILE__);
349 #line 203 "test"
350 printf("__LINE__=%d __FILE__=%s\n",
351 __LINE__, __FILE__);
352 #line 227 "tcctest.c"
353 #endif
355 /* not strictly preprocessor, but we test it there */
356 #ifdef C99_MACROS
357 printf("__func__ = %s\n", __func__);
358 dprintf(1, "vaarg=%d\n", 1);
359 #endif
360 dprintf1(1, "vaarg1\n");
361 dprintf1(1, "vaarg1=%d\n", 2);
362 dprintf1(1, "vaarg1=%d %d\n", 1, 2);
364 /* gcc extension */
365 printf("func='%s'\n", __FUNCTION__);
367 /* complicated macros in glibc */
368 printf("INT64_MIN=" LONG_LONG_FORMAT "\n", INT64_MIN);
370 int a;
371 a = 1;
372 glue(a+, +);
373 printf("a=%d\n", a);
374 glue(a <, <= 2);
375 printf("a=%d\n", a);
378 /* macro function with argument outside the macro string */
379 #define MF_s MF_hello
380 #define MF_hello(msg) printf("%s\n",msg)
382 #define MF_t printf("tralala\n"); MF_hello
384 MF_s("hi");
385 MF_t("hi");
387 /* test macro substituion inside args (should not eat stream) */
388 printf("qq=%d\n", qq(qq)(2));
390 /* test zero argument case. NOTE: gcc 2.95.x does not accept a
391 null argument without a space. gcc 3.2 fixes that. */
393 #define qq1(x) 1
394 printf("qq1=%d\n", qq1( ));
396 /* comment with stray handling *\
398 /* this is a valid *\/ comment */
399 /* this is a valid comment *\*/
400 // this is a valid\
401 comment
403 /* test function macro substitution when the function name is
404 substituted */
405 TEST2();
407 /* And again when the name and parenthes are separated by a
408 comment. */
409 TEST2 /* the comment */ ();
411 printf("%s\n", get_basefile_from_header());
412 printf("%s\n", __BASE_FILE__);
413 printf("%s\n", get_file_from_header());
414 printf("%s\n", __FILE__);
416 /* Check that funnily named include was in fact included */
417 have_included_42test_h = 1;
418 have_included_42test_h_second = 1;
419 have_included_42test_h_third = 1;
423 static void print_num(char *fn, int line, int num) {
424 printf("fn %s, line %d, num %d\n", fn, line, num);
427 void recursive_macro_test(void)
430 #define ELF32_ST_TYPE(val) ((val) & 0xf)
431 #define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
432 #define STB_WEAK 2 /* Weak symbol */
433 #define ELFW(type) ELF##32##_##type
434 printf("%d\n", ELFW(ST_INFO)(STB_WEAK, ELFW(ST_TYPE)(123)));
436 #define WRAP(x) x
438 #define print_num(x) print_num(__FILE__,__LINE__,x)
439 print_num(123);
440 WRAP(print_num(123));
441 WRAP(WRAP(print_num(123)));
443 static struct recursive_macro { int rm_field; } G;
444 #define rm_field (G.rm_field)
445 printf("rm_field = %d\n", rm_field);
446 printf("rm_field = %d\n", WRAP(rm_field));
447 WRAP((printf("rm_field = %d %d\n", rm_field, WRAP(rm_field))));
450 int op(a,b)
452 return a / b;
455 int ret(a)
457 if (a == 2)
458 return 1;
459 if (a == 3)
460 return 2;
461 return 0;
464 void ps(const char *s)
466 int c;
467 while (1) {
468 c = *s;
469 if (c == 0)
470 break;
471 printf("%c", c);
472 s++;
476 const char foo1_string[] = "\
477 bar\n\
478 test\14\
481 void string_test()
483 unsigned int b;
484 printf("string:\n");
485 printf("\141\1423\143\n");/* dezdez test */
486 printf("\x41\x42\x43\x3a\n");
487 printf("c=%c\n", 'r');
488 printf("wc=%C 0x%lx %C\n", L'a', L'\x1234', L'c');
489 printf("foo1_string='%s'\n", foo1_string);
490 #if 0
491 printf("wstring=%S\n", L"abc");
492 printf("wstring=%S\n", L"abc" L"def" "ghi");
493 printf("'\\377'=%d '\\xff'=%d\n", '\377', '\xff');
494 printf("L'\\377'=%d L'\\xff'=%d\n", L'\377', L'\xff');
495 #endif
496 ps("test\n");
497 b = 32;
498 while ((b = b + 1) < 96) {
499 printf("%c", b);
501 printf("\n");
502 printf("fib=%d\n", fib(33));
503 b = 262144;
504 while (b != 0x80000000) {
505 num(b);
506 b = b * 2;
510 void loop_test()
512 int i;
513 i = 0;
514 while (i < 10)
515 printf("%d", i++);
516 printf("\n");
517 for(i = 0; i < 10;i++)
518 printf("%d", i);
519 printf("\n");
520 i = 0;
521 do {
522 printf("%d", i++);
523 } while (i < 10);
524 printf("\n");
526 char count = 123;
527 /* c99 for loop init test */
528 for (size_t count = 1; count < 3; count++)
529 printf("count=%d\n", count);
530 printf("count = %d\n", count);
532 /* break/continue tests */
533 i = 0;
534 while (1) {
535 if (i == 6)
536 break;
537 i++;
538 if (i == 3)
539 continue;
540 printf("%d", i);
542 printf("\n");
544 /* break/continue tests */
545 i = 0;
546 do {
547 if (i == 6)
548 break;
549 i++;
550 if (i == 3)
551 continue;
552 printf("%d", i);
553 } while(1);
554 printf("\n");
556 for(i = 0;i < 10;i++) {
557 if (i == 3)
558 continue;
559 printf("%d", i);
561 printf("\n");
564 typedef int typedef_and_label;
566 void goto_test()
568 int i;
569 static void *label_table[3] = { &&label1, &&label2, &&label3 };
571 printf("goto:\n");
572 i = 0;
573 /* This needs to parse as label, not as start of decl. */
574 typedef_and_label:
575 s_loop:
576 if (i >= 10)
577 goto s_end;
578 printf("%d", i);
579 i++;
580 goto s_loop;
581 s_end:
582 printf("\n");
584 /* we also test computed gotos (GCC extension) */
585 for(i=0;i<3;i++) {
586 goto *label_table[i];
587 label1:
588 printf("label1\n");
589 goto next;
590 label2:
591 printf("label2\n");
592 goto next;
593 label3:
594 printf("label3\n");
595 next: ;
599 enum {
601 E1 = 2,
602 E2 = 4,
607 enum test {
608 E5 = 1000,
611 struct S_enum {
612 enum {E6 = 42, E7, E8} e:8;
615 enum ELong {
616 /* This is either 0 on L32 machines, or a large number
617 on L64 machines. We should be able to store this. */
618 EL_large = ((unsigned long)0xf000 << 31) << 1,
621 enum { BIASU = -1U<<31 };
622 enum { BIASS = -1 << 31 };
624 static int getint(int i)
626 if (i)
627 return 0;
628 else
629 return (int)(-1U << 31);
632 void enum_test()
634 enum test b1;
635 /* The following should give no warning */
636 unsigned *p = &b1;
637 struct S_enum s = {E7};
638 printf("enum: %d\n", s.e);
639 printf("enum:\n%d %d %d %d %d %d\n",
640 E0, E1, E2, E3, E4, E5);
641 b1 = 1;
642 printf("b1=%d\n", b1);
643 printf("enum large: %ld\n", EL_large);
645 if (getint(0) == BIASU)
646 printf("enum unsigned: ok\n");
647 else
648 printf("enum unsigned: wrong\n");
649 if (getint(0) == BIASS)
650 printf("enum unsigned: ok\n");
651 else
652 printf("enum unsigned: wrong\n");
655 typedef int *my_ptr;
657 typedef int mytype1;
658 typedef int mytype2;
660 void typedef_test()
662 my_ptr a;
663 mytype1 mytype2;
664 int b;
666 a = &b;
667 *a = 1234;
668 printf("typedef:\n");
669 printf("a=%d\n", *a);
670 mytype2 = 2;
671 printf("mytype2=%d\n", mytype2);
674 void forward_test()
676 printf("forward:\n");
677 forward_ref();
678 forward_ref();
682 void forward_ref(void)
684 printf("forward ok\n");
687 typedef struct struct1 {
688 int f1;
689 int f2, f3;
690 union union1 {
691 int v1;
692 int v2;
693 } u;
694 char str[3];
695 } struct1;
697 struct struct2 {
698 int a;
699 char b;
702 union union2 {
703 int w1;
704 int w2;
707 struct struct1 st1, st2;
709 struct empty_mem {
710 /* nothing */ ;
711 int x;
714 int main(int argc, char **argv)
716 string_test();
717 expr_test();
718 macro_test();
719 recursive_macro_test();
720 scope_test();
721 forward_test();
722 funcptr_test();
723 loop_test();
724 switch_test();
725 goto_test();
726 enum_test();
727 typedef_test();
728 struct_test();
729 array_test();
730 expr_ptr_test();
731 bool_test();
732 optimize_out();
733 expr2_test();
734 constant_expr_test();
735 expr_cmp_test();
736 char_short_test();
737 init_test();
738 compound_literal_test();
739 kr_test();
740 struct_assign_test();
741 cast_test();
742 bitfield_test();
743 c99_bool_test();
744 float_test();
745 longlong_test();
746 manyarg_test();
747 stdarg_test();
748 whitespace_test();
749 relocation_test();
750 old_style_function();
751 alloca_test();
752 c99_vla_test(5, 2);
753 sizeof_test();
754 typeof_test();
755 statement_expr_test();
756 local_label_test();
757 asm_test();
758 builtin_test();
759 #ifndef _WIN32
760 weak_test();
761 #endif
762 global_data_test();
763 cmp_comparison_test();
764 math_cmp_test();
765 callsave_test();
766 builtin_frame_address_test();
767 intdiv_test();
768 if (via_volatile (42) != 42)
769 printf ("via_volatile broken\n");
770 attrib_test();
771 return 0;
774 int tab[3];
775 int tab2[3][2];
777 int g;
779 void f1(g)
781 printf("g1=%d\n", g);
784 void scope_test()
786 printf("scope:\n");
787 g = 2;
788 f1(1);
789 printf("g2=%d\n", g);
791 int g;
792 g = 3;
793 printf("g3=%d\n", g);
795 int g;
796 g = 4;
797 printf("g4=%d\n", g);
800 printf("g5=%d\n", g);
803 void array_test()
805 int i, j, a[4];
807 printf("array:\n");
808 printf("sizeof(a) = %d\n", sizeof(a));
809 printf("sizeof(\"a\") = %d\n", sizeof("a"));
810 #ifdef C99_MACROS
811 printf("sizeof(__func__) = %d\n", sizeof(__func__));
812 #endif
813 printf("sizeof tab %d\n", sizeof(tab));
814 printf("sizeof tab2 %d\n", sizeof tab2);
815 tab[0] = 1;
816 tab[1] = 2;
817 tab[2] = 3;
818 printf("%d %d %d\n", tab[0], tab[1], tab[2]);
819 for(i=0;i<3;i++)
820 for(j=0;j<2;j++)
821 tab2[i][j] = 10 * i + j;
822 for(i=0;i<3*2;i++) {
823 printf(" %3d", ((int *)tab2)[i]);
825 printf("\n");
826 printf("sizeof(size_t)=%d\n", sizeof(size_t));
827 printf("sizeof(ptrdiff_t)=%d\n", sizeof(ptrdiff_t));
830 void expr_test()
832 int a, b;
833 a = 0;
834 printf("%d\n", a += 1);
835 printf("%d\n", a -= 2);
836 printf("%d\n", a *= 31232132);
837 printf("%d\n", a /= 4);
838 printf("%d\n", a %= 20);
839 printf("%d\n", a &= 6);
840 printf("%d\n", a ^= 7);
841 printf("%d\n", a |= 8);
842 printf("%d\n", a >>= 3);
843 printf("%d\n", a <<= 4);
845 a = 22321;
846 b = -22321;
847 printf("%d\n", a + 1);
848 printf("%d\n", a - 2);
849 printf("%d\n", a * 312);
850 printf("%d\n", a / 4);
851 printf("%d\n", b / 4);
852 printf("%d\n", (unsigned)b / 4);
853 printf("%d\n", a % 20);
854 printf("%d\n", b % 20);
855 printf("%d\n", (unsigned)b % 20);
856 printf("%d\n", a & 6);
857 printf("%d\n", a ^ 7);
858 printf("%d\n", a | 8);
859 printf("%d\n", a >> 3);
860 printf("%d\n", b >> 3);
861 printf("%d\n", (unsigned)b >> 3);
862 printf("%d\n", a << 4);
863 printf("%d\n", ~a);
864 printf("%d\n", -a);
865 printf("%d\n", +a);
867 printf("%d\n", 12 + 1);
868 printf("%d\n", 12 - 2);
869 printf("%d\n", 12 * 312);
870 printf("%d\n", 12 / 4);
871 printf("%d\n", 12 % 20);
872 printf("%d\n", 12 & 6);
873 printf("%d\n", 12 ^ 7);
874 printf("%d\n", 12 | 8);
875 printf("%d\n", 12 >> 2);
876 printf("%d\n", 12 << 4);
877 printf("%d\n", ~12);
878 printf("%d\n", -12);
879 printf("%d\n", +12);
880 printf("%d %d %d %d\n",
881 isid('a'),
882 isid('g'),
883 isid('T'),
884 isid('('));
887 int isid(int c)
889 return (c >= 'a' & c <= 'z') | (c >= 'A' & c <= 'Z') | c == '_';
892 /**********************/
894 int vstack[10], *vstack_ptr;
896 void vpush(int vt, int vc)
898 *vstack_ptr++ = vt;
899 *vstack_ptr++ = vc;
902 void vpop(int *ft, int *fc)
904 *fc = *--vstack_ptr;
905 *ft = *--vstack_ptr;
908 void expr2_test()
910 int a, b;
912 printf("expr2:\n");
913 vstack_ptr = vstack;
914 vpush(1432432, 2);
915 vstack_ptr[-2] &= ~0xffffff80;
916 vpop(&a, &b);
917 printf("res= %d %d\n", a, b);
920 void constant_expr_test()
922 int a;
923 printf("constant_expr:\n");
924 a = 3;
925 printf("%d\n", a * 16);
926 printf("%d\n", a * 1);
927 printf("%d\n", a + 0);
930 int tab4[10];
932 void expr_ptr_test()
934 int *p, *q;
935 int i = -1;
937 printf("expr_ptr:\n");
938 p = tab4;
939 q = tab4 + 10;
940 printf("diff=%d\n", q - p);
941 p++;
942 printf("inc=%d\n", p - tab4);
943 p--;
944 printf("dec=%d\n", p - tab4);
945 ++p;
946 printf("inc=%d\n", p - tab4);
947 --p;
948 printf("dec=%d\n", p - tab4);
949 printf("add=%d\n", p + 3 - tab4);
950 printf("add=%d\n", 3 + p - tab4);
952 /* check if 64bit support is ok */
953 q = p = 0;
954 q += i;
955 printf("%p %p %ld\n", q, p, p-q);
956 printf("%d %d %d %d %d %d\n",
957 p == q, p != q, p < q, p <= q, p >= q, p > q);
958 i = 0xf0000000;
959 p += i;
960 printf("%p %p %ld\n", q, p, p-q);
961 printf("%d %d %d %d %d %d\n",
962 p == q, p != q, p < q, p <= q, p >= q, p > q);
963 p = (int *)((char *)p + 0xf0000000);
964 printf("%p %p %ld\n", q, p, p-q);
965 printf("%d %d %d %d %d %d\n",
966 p == q, p != q, p < q, p <= q, p >= q, p > q);
967 p += 0xf0000000;
968 printf("%p %p %ld\n", q, p, p-q);
969 printf("%d %d %d %d %d %d\n",
970 p == q, p != q, p < q, p <= q, p >= q, p > q);
972 struct size12 {
973 int i, j, k;
975 struct size12 s[2], *sp = s;
976 int i, j;
977 sp->i = 42;
978 sp++;
979 j = -1;
980 printf("%d\n", sp[j].i);
982 #ifdef __LP64__
983 i = 1;
984 p = (int*)0x100000000UL + i;
985 i = ((long)p) >> 32;
986 printf("largeptr: %p %d\n", p, i);
987 #endif
990 void expr_cmp_test()
992 int a, b;
993 printf("constant_expr:\n");
994 a = -1;
995 b = 1;
996 printf("%d\n", a == a);
997 printf("%d\n", a != a);
999 printf("%d\n", a < b);
1000 printf("%d\n", a <= b);
1001 printf("%d\n", a <= a);
1002 printf("%d\n", b >= a);
1003 printf("%d\n", a >= a);
1004 printf("%d\n", b > a);
1006 printf("%d\n", (unsigned)a < b);
1007 printf("%d\n", (unsigned)a <= b);
1008 printf("%d\n", (unsigned)a <= a);
1009 printf("%d\n", (unsigned)b >= a);
1010 printf("%d\n", (unsigned)a >= a);
1011 printf("%d\n", (unsigned)b > a);
1014 struct empty {
1017 struct aligntest1 {
1018 char a[10];
1021 struct aligntest2 {
1022 int a;
1023 char b[10];
1026 struct aligntest3 {
1027 double a, b;
1030 struct aligntest4 {
1031 double a[0];
1034 struct __attribute__((aligned(16))) aligntest5
1036 int i;
1038 struct aligntest6
1040 int i;
1041 } __attribute__((aligned(16)));
1042 struct aligntest7
1044 int i;
1046 struct aligntest5 altest5[2];
1047 struct aligntest6 altest6[2];
1048 int pad1;
1049 /* altest7 is correctly aligned to 16 bytes also with TCC,
1050 but __alignof__ returns the wrong result (4) because we
1051 can't store the alignment yet when specified on symbols
1052 directly (it's stored in the type so we'd need to make
1053 a copy of it).
1054 struct aligntest7 altest7[2] __attribute__((aligned(16)));*/
1056 struct aligntest8
1058 int i;
1059 } __attribute__((aligned(4096)));
1061 struct Large {
1062 unsigned long flags;
1063 union {
1064 void *u1;
1065 int *u2;
1068 struct {
1069 union {
1070 unsigned long index;
1071 void *freelist;
1073 union {
1074 unsigned long counters;
1075 struct {
1076 int bla;
1081 union {
1082 struct {
1083 long u3;
1084 long u4;
1086 void *u5;
1087 struct {
1088 unsigned long compound_head;
1089 unsigned int compound_dtor;
1090 unsigned int compound_order;
1093 } __attribute__((aligned(2 * sizeof(long))));
1095 typedef unsigned long long __attribute__((aligned(4))) unaligned_u64;
1097 struct aligntest9 {
1098 unsigned int buf_nr;
1099 unaligned_u64 start_lba;
1102 struct aligntest10 {
1103 unsigned int buf_nr;
1104 unsigned long long start_lba;
1107 void struct_test()
1109 struct1 *s;
1110 union union2 u;
1111 struct Large ls;
1113 printf("struct:\n");
1114 printf("sizes: %d %d %d %d\n",
1115 sizeof(struct struct1),
1116 sizeof(struct struct2),
1117 sizeof(union union1),
1118 sizeof(union union2));
1119 printf("offsets: %d\n", (int)((char*)&st1.u.v1 - (char*)&st1));
1120 st1.f1 = 1;
1121 st1.f2 = 2;
1122 st1.f3 = 3;
1123 printf("st1: %d %d %d\n",
1124 st1.f1, st1.f2, st1.f3);
1125 st1.u.v1 = 1;
1126 st1.u.v2 = 2;
1127 printf("union1: %d\n", st1.u.v1);
1128 u.w1 = 1;
1129 u.w2 = 2;
1130 printf("union2: %d\n", u.w1);
1131 s = &st2;
1132 s->f1 = 3;
1133 s->f2 = 2;
1134 s->f3 = 1;
1135 printf("st2: %d %d %d\n",
1136 s->f1, s->f2, s->f3);
1137 printf("str_addr=%x\n", (int)st1.str - (int)&st1.f1);
1139 /* align / size tests */
1140 printf("aligntest1 sizeof=%d alignof=%d\n",
1141 sizeof(struct aligntest1), __alignof__(struct aligntest1));
1142 printf("aligntest2 sizeof=%d alignof=%d\n",
1143 sizeof(struct aligntest2), __alignof__(struct aligntest2));
1144 printf("aligntest3 sizeof=%d alignof=%d\n",
1145 sizeof(struct aligntest3), __alignof__(struct aligntest3));
1146 printf("aligntest4 sizeof=%d alignof=%d\n",
1147 sizeof(struct aligntest4), __alignof__(struct aligntest4));
1148 printf("aligntest5 sizeof=%d alignof=%d\n",
1149 sizeof(struct aligntest5), __alignof__(struct aligntest5));
1150 printf("aligntest6 sizeof=%d alignof=%d\n",
1151 sizeof(struct aligntest6), __alignof__(struct aligntest6));
1152 printf("aligntest7 sizeof=%d alignof=%d\n",
1153 sizeof(struct aligntest7), __alignof__(struct aligntest7));
1154 printf("aligntest8 sizeof=%d alignof=%d\n",
1155 sizeof(struct aligntest8), __alignof__(struct aligntest8));
1156 printf("aligntest9 sizeof=%d alignof=%d\n",
1157 sizeof(struct aligntest9), __alignof__(struct aligntest9));
1158 printf("aligntest10 sizeof=%d alignof=%d\n",
1159 sizeof(struct aligntest10), __alignof__(struct aligntest10));
1160 printf("altest5 sizeof=%d alignof=%d\n",
1161 sizeof(altest5), __alignof__(altest5));
1162 printf("altest6 sizeof=%d alignof=%d\n",
1163 sizeof(altest6), __alignof__(altest6));
1164 /*printf("altest7 sizeof=%d alignof=%d\n",
1165 sizeof(altest7), __alignof__(altest7));*/
1167 /* empty structures (GCC extension) */
1168 printf("sizeof(struct empty) = %d\n", sizeof(struct empty));
1169 printf("alignof(struct empty) = %d\n", __alignof__(struct empty));
1171 printf("Large: sizeof=%d\n", sizeof(ls));
1172 memset(&ls, 0, sizeof(ls));
1173 ls.compound_head = 42;
1174 printf("Large: offsetof(compound_head)=%d\n", (int)((char*)&ls.compound_head - (char*)&ls));
1177 /* XXX: depend on endianness */
1178 void char_short_test()
1180 int var1, var2;
1182 printf("char_short:\n");
1184 var1 = 0x01020304;
1185 var2 = 0xfffefdfc;
1186 printf("s8=%d %d\n",
1187 *(char *)&var1, *(char *)&var2);
1188 printf("u8=%d %d\n",
1189 *(unsigned char *)&var1, *(unsigned char *)&var2);
1190 printf("s16=%d %d\n",
1191 *(short *)&var1, *(short *)&var2);
1192 printf("u16=%d %d\n",
1193 *(unsigned short *)&var1, *(unsigned short *)&var2);
1194 printf("s32=%d %d\n",
1195 *(int *)&var1, *(int *)&var2);
1196 printf("u32=%d %d\n",
1197 *(unsigned int *)&var1, *(unsigned int *)&var2);
1198 *(char *)&var1 = 0x08;
1199 printf("var1=%x\n", var1);
1200 *(short *)&var1 = 0x0809;
1201 printf("var1=%x\n", var1);
1202 *(int *)&var1 = 0x08090a0b;
1203 printf("var1=%x\n", var1);
1206 /******************/
1208 typedef struct Sym {
1209 int v;
1210 int t;
1211 int c;
1212 struct Sym *next;
1213 struct Sym *prev;
1214 } Sym;
1216 #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
1217 #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
1219 static int toupper1(int a)
1221 return TOUPPER(a);
1224 static unsigned int calc_vm_flags(unsigned int prot)
1226 unsigned int prot_bits;
1227 /* This used to segfault in some revisions: */
1228 prot_bits = ((0x1==0x00000001)?(prot&0x1):(prot&0x1)?0x00000001:0);
1229 return prot_bits;
1232 void bool_test()
1234 int *s, a, b, t, f, i;
1236 a = 0;
1237 s = (void*)0;
1238 printf("!s=%d\n", !s);
1240 if (!s || !s[0])
1241 a = 1;
1242 printf("a=%d\n", a);
1244 printf("a=%d %d %d\n", 0 || 0, 0 || 1, 1 || 1);
1245 printf("a=%d %d %d\n", 0 && 0, 0 && 1, 1 && 1);
1246 printf("a=%d %d\n", 1 ? 1 : 0, 0 ? 1 : 0);
1247 #if 1 && 1
1248 printf("a1\n");
1249 #endif
1250 #if 1 || 0
1251 printf("a2\n");
1252 #endif
1253 #if 1 ? 0 : 1
1254 printf("a3\n");
1255 #endif
1256 #if 0 ? 0 : 1
1257 printf("a4\n");
1258 #endif
1260 a = 4;
1261 printf("b=%d\n", a + (0 ? 1 : a / 2));
1263 /* test register spilling */
1264 a = 10;
1265 b = 10;
1266 a = (a + b) * ((a < b) ?
1267 ((b - a) * (a - b)): a + b);
1268 printf("a=%d\n", a);
1270 /* test complex || or && expressions */
1271 t = 1;
1272 f = 0;
1273 a = 32;
1274 printf("exp=%d\n", f == (32 <= a && a <= 3));
1275 printf("r=%d\n", (t || f) + (t && f));
1277 /* test ? : cast */
1279 int aspect_on;
1280 int aspect_native = 65536;
1281 double bfu_aspect = 1.0;
1282 int aspect;
1283 for(aspect_on = 0; aspect_on < 2; aspect_on++) {
1284 aspect=aspect_on?(aspect_native*bfu_aspect+0.5):65535UL;
1285 printf("aspect=%d\n", aspect);
1289 /* test ? : GCC extension */
1291 static int v1 = 34 ? : -1; /* constant case */
1292 static int v2 = 0 ? : -1; /* constant case */
1293 int a = 30;
1295 printf("%d %d\n", v1, v2);
1296 printf("%d %d\n", a - 30 ? : a * 2, a + 1 ? : a * 2);
1299 /* again complex expression */
1300 for(i=0;i<256;i++) {
1301 if (toupper1 (i) != TOUPPER (i))
1302 printf("error %d\n", i);
1304 printf ("bits = 0x%x\n", calc_vm_flags (0x1));
1307 extern int undefined_function(void);
1308 extern int defined_function(void);
1310 static inline void refer_to_undefined(void)
1312 undefined_function();
1315 void optimize_out(void)
1317 int i = 0 ? undefined_function() : defined_function();
1318 printf ("oo:%d\n", i);
1319 int j = 1 ? defined_function() : undefined_function();
1320 printf ("oo:%d\n", j);
1321 if (0)
1322 printf("oo:%d\n", undefined_function());
1323 else
1324 printf("oo:%d\n", defined_function());
1325 if (1)
1326 printf("oo:%d\n", defined_function());
1327 else
1328 printf("oo:%d\n", undefined_function());
1329 while (1) {
1330 printf("oow:%d\n", defined_function());
1331 break;
1332 printf("oow:%d\n", undefined_function());
1334 j = 1;
1335 /* Following is a switch without {} block intentionally. */
1336 switch (j)
1337 case 1: break;
1338 printf ("oos:%d\n", defined_function());
1339 /* The following break shouldn't lead to disabled code after
1340 the while. */
1341 while (1)
1342 break;
1343 printf ("ool1:%d\n", defined_function());
1344 /* Same for the other types of loops. */
1346 break;
1347 while (1);
1348 printf ("ool2:%d\n", defined_function());
1349 for (;;)
1350 break;
1351 printf ("ool3:%d\n", defined_function());
1352 /* Normal {} blocks without controlling statements
1353 shouldn't reactivate code emission */
1354 while (1) {
1356 break;
1358 printf ("ool4:%d\n", undefined_function());
1360 j = 1;
1361 while (j) {
1362 if (j == 0)
1363 break; /* this break shouldn't disable code outside the if. */
1364 printf("ool5:%d\n", defined_function());
1365 j--;
1368 j = 1;
1369 while (j) {
1370 if (1)
1371 j--;
1372 else
1373 breakhere: break;
1374 printf("ool6:%d\n", defined_function());
1375 goto breakhere;
1378 /* Test that constants in logical && are optimized: */
1379 i = 0 && undefined_function();
1380 i = defined_function() && 0 && undefined_function();
1381 if (0 && undefined_function())
1382 undefined_function();
1383 if (defined_function() && 0)
1384 undefined_function();
1385 if (0 && 0)
1386 undefined_function();
1387 if (defined_function() && 0 && undefined_function())
1388 undefined_function();
1389 /* The same for || : */
1390 i = 1 || undefined_function();
1391 i = defined_function() || 1 || undefined_function();
1392 if (1 || undefined_function())
1394 else
1395 undefined_function();
1396 if (defined_function() || 1)
1398 else
1399 undefined_function();
1400 if (1 || 1)
1402 else
1403 undefined_function();
1404 if (defined_function() || 1 || undefined_function())
1406 else
1407 undefined_function();
1409 if (defined_function() && 0)
1410 refer_to_undefined();
1412 if (0) {
1413 (void)sizeof( ({
1414 do { } while (0);
1416 }) );
1417 undefined_function();
1420 /* Leave the "if(1)return; printf()" in this order and last in the function */
1421 if (1)
1422 return;
1423 printf ("oor:%d\n", undefined_function());
1426 int defined_function(void)
1428 static int i = 40;
1429 return i++;
1432 /* GCC accepts that */
1433 static int tab_reinit[];
1434 static int tab_reinit[10];
1436 //int cinit1; /* a global variable can be defined several times without error ! */
1437 int cinit1;
1438 int cinit1;
1439 int cinit1 = 0;
1440 int *cinit2 = (int []){3, 2, 1};
1442 void compound_literal_test(void)
1444 int *p, i;
1445 char *q, *q3;
1447 printf("compound_test:\n");
1449 p = (int []){1, 2, 3};
1450 for(i=0;i<3;i++)
1451 printf(" %d", p[i]);
1452 printf("\n");
1454 for(i=0;i<3;i++)
1455 printf("%d", cinit2[i]);
1456 printf("\n");
1458 q = "tralala1";
1459 printf("q1=%s\n", q);
1461 q = (char *){ "tralala2" };
1462 printf("q2=%s\n", q);
1464 q3 = (char *){ q };
1465 printf("q3=%s\n", q3);
1467 q = (char []){ "tralala3" };
1468 printf("q4=%s\n", q);
1470 #ifdef ALL_ISOC99
1471 p = (int []){1, 2, cinit1 + 3};
1472 for(i=0;i<3;i++)
1473 printf(" %d", p[i]);
1474 printf("\n");
1476 for(i=0;i<3;i++) {
1477 p = (int []){1, 2, 4 + i};
1478 printf("%d %d %d\n",
1479 p[0],
1480 p[1],
1481 p[2]);
1483 #endif
1486 /* K & R protos */
1488 kr_func1(a, b)
1490 return a + b;
1493 int kr_func2(a, b)
1495 return a + b;
1498 kr_test()
1500 printf("kr_test:\n");
1501 printf("func1=%d\n", kr_func1(3, 4));
1502 printf("func2=%d\n", kr_func2(3, 4));
1503 return 0;
1506 void num(int n)
1508 char *tab, *p;
1509 tab = (char*)malloc(20);
1510 p = tab;
1511 while (1) {
1512 *p = 48 + (n % 10);
1513 p++;
1514 n = n / 10;
1515 if (n == 0)
1516 break;
1518 while (p != tab) {
1519 p--;
1520 printf("%c", *p);
1522 printf("\n");
1523 free(tab);
1526 /* structure assignment tests */
1527 struct structa1 {
1528 int f1;
1529 char f2;
1532 struct structa1 ssta1;
1534 void struct_assign_test1(struct structa1 s1, int t, float f)
1536 printf("%d %d %d %f\n", s1.f1, s1.f2, t, f);
1539 struct structa1 struct_assign_test2(struct structa1 s1, int t)
1541 s1.f1 += t;
1542 s1.f2 -= t;
1543 return s1;
1546 void struct_assign_test(void)
1548 struct S {
1549 struct structa1 lsta1, lsta2;
1550 int i;
1551 } s, *ps;
1553 ps = &s;
1554 ps->i = 4;
1555 #if 0
1556 printf("struct_assign_test:\n");
1558 s.lsta1.f1 = 1;
1559 s.lsta1.f2 = 2;
1560 printf("%d %d\n", s.lsta1.f1, s.lsta1.f2);
1561 s.lsta2 = s.lsta1;
1562 printf("%d %d\n", s.lsta2.f1, s.lsta2.f2);
1563 #else
1564 s.lsta2.f1 = 1;
1565 s.lsta2.f2 = 2;
1566 #endif
1567 struct_assign_test1(ps->lsta2, 3, 4.5);
1569 printf("before call: %d %d\n", s.lsta2.f1, s.lsta2.f2);
1570 ps->lsta2 = struct_assign_test2(ps->lsta2, ps->i);
1571 printf("after call: %d %d\n", ps->lsta2.f1, ps->lsta2.f2);
1573 static struct {
1574 void (*elem)();
1575 } t[] = {
1576 /* XXX: we should allow this even without braces */
1577 { struct_assign_test }
1579 printf("%d\n", struct_assign_test == t[0].elem);
1582 /* casts to short/char */
1584 void cast1(char a, short b, unsigned char c, unsigned short d)
1586 printf("%d %d %d %d\n", a, b, c, d);
1589 char bcast;
1590 short scast;
1592 void cast_test()
1594 int a;
1595 char c;
1596 char tab[10];
1597 unsigned b,d;
1598 short s;
1599 char *p = NULL;
1600 p -= 0x700000000042;
1602 printf("cast_test:\n");
1603 a = 0xfffff;
1604 cast1(a, a, a, a);
1605 a = 0xffffe;
1606 printf("%d %d %d %d\n",
1607 (char)(a + 1),
1608 (short)(a + 1),
1609 (unsigned char)(a + 1),
1610 (unsigned short)(a + 1));
1611 printf("%d %d %d %d\n",
1612 (char)0xfffff,
1613 (short)0xfffff,
1614 (unsigned char)0xfffff,
1615 (unsigned short)0xfffff);
1617 a = (bcast = 128) + 1;
1618 printf("%d\n", a);
1619 a = (scast = 65536) + 1;
1620 printf("%d\n", a);
1622 printf("sizeof(c) = %d, sizeof((int)c) = %d\n", sizeof(c), sizeof((int)c));
1624 /* test cast from unsigned to signed short to int */
1625 b = 0xf000;
1626 d = (short)b;
1627 printf("((unsigned)(short)0x%08x) = 0x%08x\n", b, d);
1628 b = 0xf0f0;
1629 d = (char)b;
1630 printf("((unsigned)(char)0x%08x) = 0x%08x\n", b, d);
1632 /* test implicit int casting for array accesses */
1633 c = 0;
1634 tab[1] = 2;
1635 tab[c] = 1;
1636 printf("%d %d\n", tab[0], tab[1]);
1638 /* test implicit casting on some operators */
1639 printf("sizeof(+(char)'a') = %d\n", sizeof(+(char)'a'));
1640 printf("sizeof(-(char)'a') = %d\n", sizeof(-(char)'a'));
1641 printf("sizeof(~(char)'a') = %d\n", sizeof(-(char)'a'));
1643 /* from pointer to integer types */
1644 printf("%d %d %ld %ld %lld %lld\n",
1645 (int)p, (unsigned int)p,
1646 (long)p, (unsigned long)p,
1647 (long long)p, (unsigned long long)p);
1649 /* from integers to pointers */
1650 printf("%p %p %p %p\n",
1651 (void *)a, (void *)b, (void *)c, (void *)d);
1654 /* initializers tests */
1655 struct structinit1 {
1656 int f1;
1657 char f2;
1658 short f3;
1659 int farray[3];
1662 int sinit1 = 2;
1663 int sinit2 = { 3 };
1664 int sinit3[3] = { 1, 2, {{3}}, };
1665 int sinit4[3][2] = { {1, 2}, {3, 4}, {5, 6} };
1666 int sinit5[3][2] = { 1, 2, 3, 4, 5, 6 };
1667 int sinit6[] = { 1, 2, 3 };
1668 int sinit7[] = { [2] = 3, [0] = 1, 2 };
1669 char sinit8[] = "hello" "trala";
1671 struct structinit1 sinit9 = { 1, 2, 3 };
1672 struct structinit1 sinit10 = { .f2 = 2, 3, .f1 = 1 };
1673 struct structinit1 sinit11 = { .f2 = 2, 3, .f1 = 1,
1674 #ifdef ALL_ISOC99
1675 .farray[0] = 10,
1676 .farray[1] = 11,
1677 .farray[2] = 12,
1678 #endif
1681 char *sinit12 = "hello world";
1682 char *sinit13[] = {
1683 "test1",
1684 "test2",
1685 "test3",
1687 char sinit14[10] = { "abc" };
1688 int sinit15[3] = { sizeof(sinit15), 1, 2 };
1690 struct { int a[3], b; } sinit16[] = { { 1 }, 2 };
1692 struct bar {
1693 char *s;
1694 int len;
1695 } sinit17[] = {
1696 "a1", 4,
1697 "a2", 1
1700 int sinit18[10] = {
1701 [2 ... 5] = 20,
1703 [8] = 10,
1706 struct complexinit0 {
1707 int a;
1708 int b;
1711 struct complexinit {
1712 int a;
1713 const struct complexinit0 *b;
1716 const static struct complexinit cix[] = {
1717 [0] = {
1718 .a = 2000,
1719 .b = (const struct complexinit0[]) {
1720 { 2001, 2002 },
1721 { 2003, 2003 },
1727 struct complexinit2 {
1728 int a;
1729 int b[];
1732 struct complexinit2 cix20;
1734 struct complexinit2 cix21 = {
1735 .a = 3000,
1736 .b = { 3001, 3002, 3003 }
1739 struct complexinit2 cix22 = {
1740 .a = 4000,
1741 .b = { 4001, 4002, 4003, 4004, 4005, 4006 }
1744 typedef int arrtype1[];
1745 arrtype1 sinit19 = {1};
1746 arrtype1 sinit20 = {2,3};
1747 typedef int arrtype2[3];
1748 arrtype2 sinit21 = {4};
1749 arrtype2 sinit22 = {5,6,7};
1751 /* Address comparisons of non-weak symbols with zero can be const-folded */
1752 int sinit23[2] = { "astring" ? sizeof("astring") : -1,
1753 &sinit23 ? 42 : -1 };
1755 extern int external_inited = 42;
1757 void init_test(void)
1759 int linit1 = 2;
1760 int linit2 = { 3 };
1761 int linit4[3][2] = { {1, 2}, {3, 4}, {5, 6} };
1762 int linit6[] = { 1, 2, 3 };
1763 int i, j;
1764 char linit8[] = "hello" "trala";
1765 int linit12[10] = { 1, 2 };
1766 int linit13[10] = { 1, 2, [7] = 3, [3] = 4, };
1767 char linit14[10] = "abc";
1768 int linit15[10] = { linit1, linit1 + 1, [6] = linit1 + 2, };
1769 struct linit16 { int a1, a2, a3, a4; } linit16 = { 1, .a3 = 2 };
1770 int linit17 = sizeof(linit17);
1771 int zero = 0;
1772 /* Addresses on non-weak symbols are non-zero, but not the access itself */
1773 int linit18[2] = {&zero ? 1 : -1, zero ? -1 : 1 };
1775 printf("init_test:\n");
1777 printf("sinit1=%d\n", sinit1);
1778 printf("sinit2=%d\n", sinit2);
1779 printf("sinit3=%d %d %d %d\n",
1780 sizeof(sinit3),
1781 sinit3[0],
1782 sinit3[1],
1783 sinit3[2]
1785 printf("sinit6=%d\n", sizeof(sinit6));
1786 printf("sinit7=%d %d %d %d\n",
1787 sizeof(sinit7),
1788 sinit7[0],
1789 sinit7[1],
1790 sinit7[2]
1792 printf("sinit8=%s\n", sinit8);
1793 printf("sinit9=%d %d %d\n",
1794 sinit9.f1,
1795 sinit9.f2,
1796 sinit9.f3
1798 printf("sinit10=%d %d %d\n",
1799 sinit10.f1,
1800 sinit10.f2,
1801 sinit10.f3
1803 printf("sinit11=%d %d %d %d %d %d\n",
1804 sinit11.f1,
1805 sinit11.f2,
1806 sinit11.f3,
1807 sinit11.farray[0],
1808 sinit11.farray[1],
1809 sinit11.farray[2]
1812 for(i=0;i<3;i++)
1813 for(j=0;j<2;j++)
1814 printf("[%d][%d] = %d %d %d\n",
1815 i, j, sinit4[i][j], sinit5[i][j], linit4[i][j]);
1816 printf("linit1=%d\n", linit1);
1817 printf("linit2=%d\n", linit2);
1818 printf("linit6=%d\n", sizeof(linit6));
1819 printf("linit8=%d %s\n", sizeof(linit8), linit8);
1821 printf("sinit12=%s\n", sinit12);
1822 printf("sinit13=%d %s %s %s\n",
1823 sizeof(sinit13),
1824 sinit13[0],
1825 sinit13[1],
1826 sinit13[2]);
1827 printf("sinit14=%s\n", sinit14);
1829 for(i=0;i<10;i++) printf(" %d", linit12[i]);
1830 printf("\n");
1831 for(i=0;i<10;i++) printf(" %d", linit13[i]);
1832 printf("\n");
1833 for(i=0;i<10;i++) printf(" %d", linit14[i]);
1834 printf("\n");
1835 for(i=0;i<10;i++) printf(" %d", linit15[i]);
1836 printf("\n");
1837 printf("%d %d %d %d\n",
1838 linit16.a1,
1839 linit16.a2,
1840 linit16.a3,
1841 linit16.a4);
1842 /* test that initialisation is done after variable declare */
1843 printf("linit17=%d\n", linit17);
1844 printf("sinit15=%d\n", sinit15[0]);
1845 printf("sinit16=%d %d\n", sinit16[0].a[0], sinit16[1].a[0]);
1846 printf("sinit17=%s %d %s %d\n",
1847 sinit17[0].s, sinit17[0].len,
1848 sinit17[1].s, sinit17[1].len);
1849 for(i=0;i<10;i++)
1850 printf("%x ", sinit18[i]);
1851 printf("\n");
1852 /* complex init check */
1853 printf("cix: %d %d %d %d %d %d %d\n",
1854 cix[0].a,
1855 cix[0].b[0].a, cix[0].b[0].b,
1856 cix[0].b[1].a, cix[0].b[1].b,
1857 cix[0].b[2].a, cix[0].b[2].b);
1858 printf("cix2: %d %d\n", cix21.b[2], cix22.b[5]);
1859 printf("sizeof cix20 %d, cix21 %d, sizeof cix22 %d\n", sizeof cix20, sizeof cix21, sizeof cix22);
1861 printf("arrtype1: %d %d %d\n", sinit19[0], sinit20[0], sinit20[1]);
1862 printf("arrtype2: %d %d\n", sizeof(sinit19), sizeof(sinit20));
1863 printf("arrtype3: %d %d %d\n", sinit21[0], sinit21[1], sinit21[2]);
1864 printf("arrtype4: %d %d %d\n", sinit22[0], sinit22[1], sinit22[2]);
1865 printf("arrtype5: %d %d\n", sizeof(sinit21), sizeof(sinit22));
1866 printf("arrtype6: %d\n", sizeof(arrtype2));
1868 printf("sinit23= %d %d\n", sinit23[0], sinit23[1]);
1869 printf("linit18= %d %d\n", linit18[0], linit18[1]);
1872 void switch_uc(unsigned char uc)
1874 switch (uc) {
1875 case 0xfb ... 0xfe:
1876 printf("ucsw:1\n");
1877 break;
1878 case 0xff:
1879 printf("ucsw:2\n");
1880 break;
1881 case 0 ... 5:
1882 printf("ucsw:3\n");
1883 break;
1884 default:
1885 printf("ucsw: broken!\n");
1889 void switch_sc(signed char sc)
1891 switch (sc) {
1892 case -5 ... -2:
1893 printf("scsw:1\n");
1894 break;
1895 case -1:
1896 printf("scsw:2\n");
1897 break;
1898 case 0 ... 5:
1899 printf("scsw:3\n");
1900 break;
1901 default:
1902 printf("scsw: broken!\n");
1906 void switch_test()
1908 int i;
1909 unsigned long long ull;
1910 long long ll;
1912 for(i=0;i<15;i++) {
1913 switch(i) {
1914 case 0:
1915 case 1:
1916 printf("a");
1917 break;
1918 default:
1919 printf("%d", i);
1920 break;
1921 case 8 ... 12:
1922 printf("c");
1923 break;
1924 case 3:
1925 printf("b");
1926 break;
1927 case 0xc33c6b9fU:
1928 case 0x7c9eeeb9U:
1929 break;
1932 printf("\n");
1934 for (i = 1; i <= 5; i++) {
1935 ull = (unsigned long long)i << 61;
1936 switch (ull) {
1937 case 1ULL << 61:
1938 printf("ullsw:1\n");
1939 break;
1940 case 2ULL << 61:
1941 printf("ullsw:2\n");
1942 break;
1943 case 3ULL << 61:
1944 printf("ullsw:3\n");
1945 break;
1946 case 4ULL << 61:
1947 printf("ullsw:4\n");
1948 break;
1949 case 5ULL << 61:
1950 printf("ullsw:5\n");
1951 break;
1952 default:
1953 printf("ullsw: broken!\n");
1957 for (i = 1; i <= 5; i++) {
1958 ll = (long long)i << 61;
1959 switch (ll) {
1960 case 1LL << 61:
1961 printf("llsw:1\n");
1962 break;
1963 case 2LL << 61:
1964 printf("llsw:2\n");
1965 break;
1966 case 3LL << 61:
1967 printf("llsw:3\n");
1968 break;
1969 case 4LL << 61:
1970 printf("llsw:4\n");
1971 break;
1972 case 5LL << 61:
1973 printf("llsw:5\n");
1974 break;
1975 default:
1976 printf("llsw: broken!\n");
1980 for (i = -5; i <= 5; i++) {
1981 switch_uc((unsigned char)i);
1984 for (i = -5; i <= 5; i++) {
1985 switch_sc ((signed char)i);
1989 /* ISOC99 _Bool type */
1990 void c99_bool_test(void)
1992 #ifdef BOOL_ISOC99
1993 int a;
1994 _Bool b;
1996 printf("bool_test:\n");
1997 printf("sizeof(_Bool) = %d\n", sizeof(_Bool));
1998 a = 3;
1999 printf("cast: %d %d %d\n", (_Bool)10, (_Bool)0, (_Bool)a);
2000 b = 3;
2001 printf("b = %d\n", b);
2002 b++;
2003 printf("b = %d\n", b);
2004 #endif
2007 void bitfield_test(void)
2009 int a;
2010 short sa;
2011 unsigned char ca;
2012 struct sbf1 {
2013 int f1 : 3;
2014 int : 2;
2015 int f2 : 1;
2016 int : 0;
2017 int f3 : 5;
2018 int f4 : 7;
2019 unsigned int f5 : 7;
2020 } st1;
2021 printf("bitfield_test:");
2022 printf("sizeof(st1) = %d\n", sizeof(st1));
2024 st1.f1 = 3;
2025 st1.f2 = 1;
2026 st1.f3 = 15;
2027 a = 120;
2028 st1.f4 = a;
2029 st1.f5 = a;
2030 st1.f5++;
2031 printf("%d %d %d %d %d\n",
2032 st1.f1, st1.f2, st1.f3, st1.f4, st1.f5);
2033 sa = st1.f5;
2034 ca = st1.f5;
2035 printf("%d %d\n", sa, ca);
2037 st1.f1 = 7;
2038 if (st1.f1 == -1)
2039 printf("st1.f1 == -1\n");
2040 else
2041 printf("st1.f1 != -1\n");
2042 if (st1.f2 == -1)
2043 printf("st1.f2 == -1\n");
2044 else
2045 printf("st1.f2 != -1\n");
2047 struct sbf2 {
2048 long long f1 : 45;
2049 long long : 2;
2050 long long f2 : 35;
2051 unsigned long long f3 : 38;
2052 } st2;
2053 st2.f1 = 0x123456789ULL;
2054 a = 120;
2055 st2.f2 = (long long)a << 25;
2056 st2.f3 = a;
2057 st2.f2++;
2058 printf("%lld %lld %lld\n", st2.f1, st2.f2, st2.f3);
2060 #if 0
2061 Disabled for now until further clarification re GCC compatibility
2062 struct sbf3 {
2063 int f1 : 7;
2064 int f2 : 1;
2065 char f3;
2066 int f4 : 8;
2067 int f5 : 1;
2068 int f6 : 16;
2069 } st3;
2070 printf("sizeof(st3) = %d\n", sizeof(st3));
2071 #endif
2073 struct sbf4 {
2074 int x : 31;
2075 char y : 2;
2076 } st4;
2077 st4.y = 1;
2078 printf("st4.y == %d\n", st4.y);
2079 struct sbf5 {
2080 int a;
2081 char b;
2082 int x : 12, y : 4, : 0, : 4, z : 3;
2083 char c;
2084 } st5 = { 1, 2, 3, 4, -3, 6 };
2085 printf("st5 = %d %d %d %d %d %d\n", st5.a, st5.b, st5.x, st5.y, st5.z, st5.c);
2086 struct sbf6 {
2087 short x : 12;
2088 unsigned char y : 2;
2089 } st6;
2090 st6.y = 1;
2091 printf("st6.y == %d\n", st6.y);
2094 #ifdef __x86_64__
2095 #define FLOAT_FMT "%f\n"
2096 #else
2097 /* x86's float isn't compatible with GCC */
2098 #define FLOAT_FMT "%.5f\n"
2099 #endif
2101 /* declare strto* functions as they are C99 */
2102 double strtod(const char *nptr, char **endptr);
2104 #if defined(_WIN32)
2105 float strtof(const char *nptr, char **endptr) {return (float)strtod(nptr, endptr);}
2106 LONG_DOUBLE strtold(const char *nptr, char **endptr) {return (LONG_DOUBLE)strtod(nptr, endptr);}
2107 #else
2108 float strtof(const char *nptr, char **endptr);
2109 LONG_DOUBLE strtold(const char *nptr, char **endptr);
2110 #endif
2112 #define FTEST(prefix, typename, type, fmt)\
2113 void prefix ## cmp(type a, type b)\
2115 printf("%d %d %d %d %d %d\n",\
2116 a == b,\
2117 a != b,\
2118 a < b,\
2119 a > b,\
2120 a >= b,\
2121 a <= b);\
2122 printf(fmt " " fmt " " fmt " " fmt " " fmt " " fmt " " fmt "\n",\
2125 a + b,\
2126 a - b,\
2127 a * b,\
2128 a / b,\
2129 -a);\
2130 printf(fmt "\n", ++a);\
2131 printf(fmt "\n", a++);\
2132 printf(fmt "\n", a);\
2133 b = 0;\
2134 printf("%d %d\n", !a, !b);\
2136 void prefix ## fcast(type a)\
2138 float fa;\
2139 double da;\
2140 LONG_DOUBLE la;\
2141 int ia;\
2142 long long llia;\
2143 unsigned int ua;\
2144 unsigned long long llua;\
2145 type b;\
2146 fa = a;\
2147 da = a;\
2148 la = a;\
2149 printf("ftof: %f %f %Lf\n", fa, da, la);\
2150 ia = (int)a;\
2151 llia = (long long)a;\
2152 a = (a >= 0) ? a : -a;\
2153 ua = (unsigned int)a;\
2154 llua = (unsigned long long)a;\
2155 printf("ftoi: %d %u %lld %llu\n", ia, ua, llia, llua);\
2156 ia = -1234;\
2157 ua = 0x81234500;\
2158 llia = -0x123456789012345LL;\
2159 llua = 0xf123456789012345LLU;\
2160 b = ia;\
2161 printf("itof: " fmt "\n", b);\
2162 b = ua;\
2163 printf("utof: " fmt "\n", b);\
2164 b = llia;\
2165 printf("lltof: " fmt "\n", b);\
2166 b = llua;\
2167 printf("ulltof: " fmt "\n", b);\
2170 float prefix ## retf(type a) { return a; }\
2171 double prefix ## retd(type a) { return a; }\
2172 LONG_DOUBLE prefix ## retld(type a) { return a; }\
2174 void prefix ## call(void)\
2176 printf("float: " FLOAT_FMT, prefix ## retf(42.123456789));\
2177 printf("double: %f\n", prefix ## retd(42.123456789));\
2178 printf("long double: %Lf\n", prefix ## retld(42.123456789));\
2179 printf("strto%s: %f\n", #prefix, (double)strto ## prefix("1.2", NULL));\
2182 void prefix ## signed_zeros(void) \
2184 type x = 0.0, y = -0.0, n, p;\
2185 if (x == y)\
2186 printf ("Test 1.0 / x != 1.0 / y returns %d (should be 1).\n",\
2187 1.0 / x != 1.0 / y);\
2188 else\
2189 printf ("x != y; this is wrong!\n");\
2191 n = -x;\
2192 if (x == n)\
2193 printf ("Test 1.0 / x != 1.0 / -x returns %d (should be 1).\n",\
2194 1.0 / x != 1.0 / n);\
2195 else\
2196 printf ("x != -x; this is wrong!\n");\
2198 p = +y;\
2199 if (x == p)\
2200 printf ("Test 1.0 / x != 1.0 / +y returns %d (should be 1).\n",\
2201 1.0 / x != 1.0 / p);\
2202 else\
2203 printf ("x != +y; this is wrong!\n");\
2204 p = -y;\
2205 if (x == p)\
2206 printf ("Test 1.0 / x != 1.0 / -y returns %d (should be 0).\n",\
2207 1.0 / x != 1.0 / p);\
2208 else\
2209 printf ("x != -y; this is wrong!\n");\
2211 void prefix ## test(void)\
2213 printf("testing '%s'\n", #typename);\
2214 prefix ## cmp(1, 2.5);\
2215 prefix ## cmp(2, 1.5);\
2216 prefix ## cmp(1, 1);\
2217 prefix ## fcast(234.6);\
2218 prefix ## fcast(-2334.6);\
2219 prefix ## call();\
2220 prefix ## signed_zeros();\
2223 FTEST(f, float, float, "%f")
2224 FTEST(d, double, double, "%f")
2225 FTEST(ld, long double, LONG_DOUBLE, "%Lf")
2227 double ftab1[3] = { 1.2, 3.4, -5.6 };
2230 void float_test(void)
2232 #if !defined(__arm__) || defined(__ARM_PCS_VFP)
2233 float fa, fb;
2234 double da, db;
2235 int a;
2236 unsigned int b;
2238 printf("float_test:\n");
2239 printf("sizeof(float) = %d\n", sizeof(float));
2240 printf("sizeof(double) = %d\n", sizeof(double));
2241 printf("sizeof(long double) = %d\n", sizeof(LONG_DOUBLE));
2242 ftest();
2243 dtest();
2244 ldtest();
2245 printf("%f %f %f\n", ftab1[0], ftab1[1], ftab1[2]);
2246 printf("%f %f %f\n", 2.12, .5, 2.3e10);
2247 // printf("%f %f %f\n", 0x1234p12, 0x1e23.23p10, 0x12dp-10);
2248 da = 123;
2249 printf("da=%f\n", da);
2250 fa = 123;
2251 printf("fa=%f\n", fa);
2252 a = 4000000000;
2253 da = a;
2254 printf("da = %f\n", da);
2255 b = 4000000000;
2256 db = b;
2257 printf("db = %f\n", db);
2258 #endif
2261 int fib(int n)
2263 if (n <= 2)
2264 return 1;
2265 else
2266 return fib(n-1) + fib(n-2);
2269 void funcptr_test()
2271 void (*func)(int);
2272 int a;
2273 struct {
2274 int dummy;
2275 void (*func)(int);
2276 } st1;
2277 long diff;
2279 printf("funcptr:\n");
2280 func = &num;
2281 (*func)(12345);
2282 func = num;
2283 a = 1;
2284 a = 1;
2285 func(12345);
2286 /* more complicated pointer computation */
2287 st1.func = num;
2288 st1.func(12346);
2289 printf("sizeof1 = %d\n", sizeof(funcptr_test));
2290 printf("sizeof2 = %d\n", sizeof funcptr_test);
2291 printf("sizeof3 = %d\n", sizeof(&funcptr_test));
2292 printf("sizeof4 = %d\n", sizeof &funcptr_test);
2293 a = 0;
2294 func = num + a;
2295 diff = func - num;
2296 func(42);
2297 (func + diff)(42);
2298 (num + a)(43);
2301 void lloptest(long long a, long long b)
2303 unsigned long long ua, ub;
2305 ua = a;
2306 ub = b;
2307 /* arith */
2308 printf("arith: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2309 a + b,
2310 a - b,
2311 a * b);
2313 if (b != 0) {
2314 printf("arith1: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2315 a / b,
2316 a % b);
2319 /* binary */
2320 printf("bin: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2321 a & b,
2322 a | b,
2323 a ^ b);
2325 /* tests */
2326 printf("test: %d %d %d %d %d %d\n",
2327 a == b,
2328 a != b,
2329 a < b,
2330 a > b,
2331 a >= b,
2332 a <= b);
2334 printf("utest: %d %d %d %d %d %d\n",
2335 ua == ub,
2336 ua != ub,
2337 ua < ub,
2338 ua > ub,
2339 ua >= ub,
2340 ua <= ub);
2342 /* arith2 */
2343 a++;
2344 b++;
2345 printf("arith2: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", a, b);
2346 printf("arith2: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", a++, b++);
2347 printf("arith2: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", --a, --b);
2348 printf("arith2: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", a, b);
2349 b = ub = 0;
2350 printf("not: %d %d %d %d\n", !a, !ua, !b, !ub);
2353 void llshift(long long a, int b)
2355 printf("shift: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2356 (unsigned long long)a >> b,
2357 a >> b,
2358 a << b);
2359 printf("shiftc: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2360 (unsigned long long)a >> 3,
2361 a >> 3,
2362 a << 3);
2363 printf("shiftc: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2364 (unsigned long long)a >> 35,
2365 a >> 35,
2366 a << 35);
2369 void llfloat(void)
2371 float fa;
2372 double da;
2373 LONG_DOUBLE lda;
2374 long long la, lb, lc;
2375 unsigned long long ula, ulb, ulc;
2376 la = 0x12345678;
2377 ula = 0x72345678;
2378 la = (la << 20) | 0x12345;
2379 ula = ula << 33;
2380 printf("la=" LONG_LONG_FORMAT " ula=" ULONG_LONG_FORMAT "\n", la, ula);
2382 fa = la;
2383 da = la;
2384 lda = la;
2385 printf("lltof: %f %f %Lf\n", fa, da, lda);
2387 la = fa;
2388 lb = da;
2389 lc = lda;
2390 printf("ftoll: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", la, lb, lc);
2392 fa = ula;
2393 da = ula;
2394 lda = ula;
2395 printf("ulltof: %f %f %Lf\n", fa, da, lda);
2397 ula = fa;
2398 ulb = da;
2399 ulc = lda;
2400 printf("ftoull: " ULONG_LONG_FORMAT " " ULONG_LONG_FORMAT " " ULONG_LONG_FORMAT "\n", ula, ulb, ulc);
2403 long long llfunc1(int a)
2405 return a * 2;
2408 struct S {
2409 int id;
2410 char item;
2413 long long int value(struct S *v)
2415 return ((long long int)v->item);
2418 long long llfunc2(long long x, long long y, int z)
2420 return x * y * z;
2423 void longlong_test(void)
2425 long long a, b, c;
2426 int ia;
2427 unsigned int ua;
2428 printf("longlong_test:\n");
2429 printf("sizeof(long long) = %d\n", sizeof(long long));
2430 ia = -1;
2431 ua = -2;
2432 a = ia;
2433 b = ua;
2434 printf(LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", a, b);
2435 printf(LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " %Lx\n",
2436 (long long)1,
2437 (long long)-2,
2438 1LL,
2439 0x1234567812345679);
2440 a = llfunc1(-3);
2441 printf(LONG_LONG_FORMAT "\n", a);
2443 lloptest(1000, 23);
2444 lloptest(0xff, 0x1234);
2445 b = 0x72345678 << 10;
2446 lloptest(-3, b);
2447 llshift(0x123, 5);
2448 llshift(-23, 5);
2449 b = 0x72345678LL << 10;
2450 llshift(b, 47);
2452 llfloat();
2453 #if 1
2454 b = 0x12345678;
2455 a = -1;
2456 c = a + b;
2457 printf("%Lx\n", c);
2458 #endif
2460 /* long long reg spill test */
2462 struct S a;
2464 a.item = 3;
2465 printf("%lld\n", value(&a));
2467 lloptest(0x80000000, 0);
2470 long long *p, v, **pp;
2471 v = 1;
2472 p = &v;
2473 p[0]++;
2474 printf("another long long spill test : %lld\n", *p);
2475 pp = &p;
2477 v = llfunc2(**pp, **pp, ia);
2478 printf("a long long function (arm-)reg-args test : %lld\n", v);
2480 a = 68719476720LL;
2481 b = 4294967295LL;
2482 printf("%d %d %d %d\n", a > b, a < b, a >= b, a <= b);
2484 printf(LONG_LONG_FORMAT "\n", 0x123456789LLU);
2486 /* long long pointer deref in argument passing test */
2487 a = 0x123;
2488 long long *p = &a;
2489 llshift(*p, 5);
2492 void manyarg_test(void)
2494 LONG_DOUBLE ld = 1234567891234LL;
2495 printf("manyarg_test:\n");
2496 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f\n",
2497 1, 2, 3, 4, 5, 6, 7, 8,
2498 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0);
2499 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2500 LONG_LONG_FORMAT " " LONG_LONG_FORMAT " %f %f\n",
2501 1, 2, 3, 4, 5, 6, 7, 8,
2502 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2503 1234567891234LL, 987654321986LL,
2504 42.0, 43.0);
2505 printf("%Lf %d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2506 LONG_LONG_FORMAT " " LONG_LONG_FORMAT " %f %f\n",
2507 ld, 1, 2, 3, 4, 5, 6, 7, 8,
2508 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2509 1234567891234LL, 987654321986LL,
2510 42.0, 43.0);
2511 printf("%d %d %d %d %d %d %d %d %Lf\n",
2512 1, 2, 3, 4, 5, 6, 7, 8, ld);
2513 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2514 LONG_LONG_FORMAT " " LONG_LONG_FORMAT "%f %f %Lf\n",
2515 1, 2, 3, 4, 5, 6, 7, 8,
2516 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2517 1234567891234LL, 987654321986LL,
2518 42.0, 43.0, ld);
2519 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2520 "%Lf " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " %f %f %Lf\n",
2521 1, 2, 3, 4, 5, 6, 7, 8,
2522 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2523 ld, 1234567891234LL, 987654321986LL,
2524 42.0, 43.0, ld);
2527 void vprintf1(const char *fmt, ...)
2529 va_list ap, aq;
2530 const char *p;
2531 int c, i;
2532 double d;
2533 long long ll;
2534 LONG_DOUBLE ld;
2536 va_start(aq, fmt);
2537 va_copy(ap, aq);
2539 p = fmt;
2540 for(;;) {
2541 c = *p;
2542 if (c == '\0')
2543 break;
2544 p++;
2545 if (c == '%') {
2546 c = *p;
2547 switch(c) {
2548 case '\0':
2549 goto the_end;
2550 case 'd':
2551 i = va_arg(ap, int);
2552 printf("%d", i);
2553 break;
2554 case 'f':
2555 d = va_arg(ap, double);
2556 printf("%f", d);
2557 break;
2558 case 'l':
2559 ll = va_arg(ap, long long);
2560 printf(LONG_LONG_FORMAT, ll);
2561 break;
2562 case 'F':
2563 ld = va_arg(ap, LONG_DOUBLE);
2564 printf("%Lf", ld);
2565 break;
2567 p++;
2568 } else {
2569 putchar(c);
2572 the_end:
2573 va_end(aq);
2574 va_end(ap);
2577 struct myspace {
2578 short int profile;
2581 void stdarg_for_struct(struct myspace bob, ...)
2583 struct myspace george, bill;
2584 va_list ap;
2585 short int validate;
2587 va_start(ap, bob);
2588 bill = va_arg(ap, struct myspace);
2589 george = va_arg(ap, struct myspace);
2590 validate = va_arg(ap, int);
2591 printf("stdarg_for_struct: %d %d %d %d\n",
2592 bob.profile, bill.profile, george.profile, validate);
2593 va_end(ap);
2596 void stdarg_for_libc(const char *fmt, ...)
2598 va_list args;
2599 va_start(args, fmt);
2600 vprintf(fmt, args);
2601 va_end(args);
2604 void stdarg_test(void)
2606 LONG_DOUBLE ld = 1234567891234LL;
2607 struct myspace bob;
2609 vprintf1("%d %d %d\n", 1, 2, 3);
2610 vprintf1("%f %d %f\n", 1.0, 2, 3.0);
2611 vprintf1("%l %l %d %f\n", 1234567891234LL, 987654321986LL, 3, 1234.0);
2612 vprintf1("%F %F %F\n", LONG_DOUBLE_LITERAL(1.2), LONG_DOUBLE_LITERAL(2.3), LONG_DOUBLE_LITERAL(3.4));
2613 vprintf1("%d %f %l %F %d %f %l %F\n",
2614 1, 1.2, 3LL, LONG_DOUBLE_LITERAL(4.5), 6, 7.8, 9LL, LONG_DOUBLE_LITERAL(0.1));
2615 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f\n",
2616 1, 2, 3, 4, 5, 6, 7, 8,
2617 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8);
2618 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f\n",
2619 1, 2, 3, 4, 5, 6, 7, 8,
2620 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0);
2621 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2622 "%l %l %f %f\n",
2623 1, 2, 3, 4, 5, 6, 7, 8,
2624 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2625 1234567891234LL, 987654321986LL,
2626 42.0, 43.0);
2627 vprintf1("%F %d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2628 "%l %l %f %f\n",
2629 ld, 1, 2, 3, 4, 5, 6, 7, 8,
2630 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2631 1234567891234LL, 987654321986LL,
2632 42.0, 43.0);
2633 vprintf1("%d %d %d %d %d %d %d %d %F\n",
2634 1, 2, 3, 4, 5, 6, 7, 8, ld);
2635 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2636 "%l %l %f %f %F\n",
2637 1, 2, 3, 4, 5, 6, 7, 8,
2638 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2639 1234567891234LL, 987654321986LL,
2640 42.0, 43.0, ld);
2641 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2642 "%F %l %l %f %f %F\n",
2643 1, 2, 3, 4, 5, 6, 7, 8,
2644 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2645 ld, 1234567891234LL, 987654321986LL,
2646 42.0, 43.0, ld);
2648 bob.profile = 42;
2649 stdarg_for_struct(bob, bob, bob, bob.profile);
2650 stdarg_for_libc("stdarg_for_libc: %s %.2f %d\n", "string", 1.23, 456);
2653 void whitespace_test(void)
2655 char *str;
2657 \f\v #if 1
2658 pri\
2659 ntf("whitspace:\n");\f\v
2660 #endif
2661 pf("N=%d\n", 2);
2663 #ifdef CORRECT_CR_HANDLING
2664 pri\
2665 ntf("aaa=%d\n", 3);
2666 #endif
2668 pri\
2670 ntf("min=%d\n", 4);
2672 #ifdef ACCEPT_CR_IN_STRINGS
2673 printf("len1=%d\n", strlen("
2674 "));
2675 #ifdef CORRECT_CR_HANDLING
2676 str = "
2678 printf("len1=%d str[0]=%d\n", strlen(str), str[0]);
2679 #endif
2680 printf("len1=%d\n", strlen(" a
2681 "));
2682 #endif /* ACCEPT_CR_IN_STRINGS */
2685 int reltab[3] = { 1, 2, 3 };
2687 int *rel1 = &reltab[1];
2688 int *rel2 = &reltab[2];
2690 #ifdef _WIN64
2691 void relocation_test(void) {}
2692 #else
2693 void getmyaddress(void)
2695 printf("in getmyaddress\n");
2698 #ifdef __LP64__
2699 long __pa_symbol(void)
2701 /* This 64bit constant was handled incorrectly, it was used as addend
2702 (which can hold 64bit just fine) in connection with a symbol,
2703 and TCC generates wrong code for that (displacements are 32bit only).
2704 This effectively is "+ 0x80000000", and if addresses of globals
2705 are below 2GB the result should be a number without high 32 bits set. */
2706 return ((long)(((unsigned long)(&rel1))) - (0xffffffff80000000UL));
2708 #endif
2710 unsigned long theaddress = (unsigned long)getmyaddress;
2711 void relocation_test(void)
2713 void (*fptr)(void) = (void (*)(void))theaddress;
2714 printf("*rel1=%d\n", *rel1);
2715 printf("*rel2=%d\n", *rel2);
2716 fptr();
2717 #ifdef __LP64__
2718 printf("pa_symbol=0x%lx\n", __pa_symbol() >> 63);
2719 #endif
2721 #endif
2723 void old_style_f(a,b,c)
2724 int a, b;
2725 double c;
2727 printf("a=%d b=%d b=%f\n", a, b, c);
2730 void decl_func1(int cmpfn())
2732 printf("cmpfn=%lx\n", (long)cmpfn);
2735 void decl_func2(cmpfn)
2736 int cmpfn();
2738 printf("cmpfn=%lx\n", (long)cmpfn);
2741 void old_style_function(void)
2743 old_style_f((void *)1, 2, 3.0);
2744 decl_func1(NULL);
2745 decl_func2(NULL);
2748 void alloca_test()
2750 #if defined __i386__ || defined __x86_64__ || defined __arm__
2751 char *p = alloca(16);
2752 strcpy(p,"123456789012345");
2753 printf("alloca: p is %s\n", p);
2754 char *demo = "This is only a test.\n";
2755 /* Test alloca embedded in a larger expression */
2756 printf("alloca: %s\n", strcpy(alloca(strlen(demo)+1),demo) );
2757 #endif
2760 void *bounds_checking_is_enabled()
2762 char ca[10], *cp = ca-1;
2763 return (ca != cp + 1) ? cp : NULL;
2766 typedef int constant_negative_array_size_as_compile_time_assertion_idiom[(1 ? 2 : 0) - 1];
2768 void c99_vla_test(int size1, int size2)
2770 #if defined __i386__ || defined __x86_64__
2771 int size = size1 * size2;
2772 int tab1[size][2], tab2[10][2];
2773 void *tab1_ptr, *tab2_ptr, *bad_ptr;
2775 /* "size" should have been 'captured' at tab1 declaration,
2776 so modifying it should have no effect on VLA behaviour. */
2777 size = size-1;
2779 printf("Test C99 VLA 1 (sizeof): ");
2780 printf("%s\n", (sizeof tab1 == size1 * size2 * 2 * sizeof(int)) ? "PASSED" : "FAILED");
2781 tab1_ptr = tab1;
2782 tab2_ptr = tab2;
2783 printf("Test C99 VLA 2 (ptrs subtract): ");
2784 printf("%s\n", (tab2 - tab1 == (tab2_ptr - tab1_ptr) / (sizeof(int) * 2)) ? "PASSED" : "FAILED");
2785 printf("Test C99 VLA 3 (ptr add): ");
2786 printf("%s\n", &tab1[5][1] == (tab1_ptr + (5 * 2 + 1) * sizeof(int)) ? "PASSED" : "FAILED");
2787 printf("Test C99 VLA 4 (ptr access): ");
2788 tab1[size1][1] = 42;
2789 printf("%s\n", (*((int *) (tab1_ptr + (size1 * 2 + 1) * sizeof(int))) == 42) ? "PASSED" : "FAILED");
2791 printf("Test C99 VLA 5 (bounds checking (might be disabled)): ");
2792 if (bad_ptr = bounds_checking_is_enabled()) {
2793 int *t1 = &tab1[size1 * size2 - 1][3];
2794 int *t2 = &tab2[9][3];
2795 printf("%s ", bad_ptr == t1 ? "PASSED" : "FAILED");
2796 printf("%s ", bad_ptr == t2 ? "PASSED" : "FAILED");
2798 char*c1 = 1 + sizeof(tab1) + (char*)tab1;
2799 char*c2 = 1 + sizeof(tab2) + (char*)tab2;
2800 printf("%s ", bad_ptr == c1 ? "PASSED" : "FAILED");
2801 printf("%s ", bad_ptr == c2 ? "PASSED" : "FAILED");
2803 int *i1 = tab1[-1];
2804 int *i2 = tab2[-1];
2805 printf("%s ", bad_ptr == i1 ? "PASSED" : "FAILED");
2806 printf("%s ", bad_ptr == i2 ? "PASSED" : "FAILED");
2808 int *x1 = tab1[size1 * size2 + 1];
2809 int *x2 = tab2[10 + 1];
2810 printf("%s ", bad_ptr == x1 ? "PASSED" : "FAILED");
2811 printf("%s ", bad_ptr == x2 ? "PASSED" : "FAILED");
2812 } else {
2813 printf("PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED ");
2815 printf("\n");
2816 #endif
2819 #ifndef __TINYC__
2820 typedef __SIZE_TYPE__ uintptr_t;
2821 #endif
2823 void sizeof_test(void)
2825 int a;
2826 int **ptr;
2828 printf("sizeof(int) = %d\n", sizeof(int));
2829 printf("sizeof(unsigned int) = %d\n", sizeof(unsigned int));
2830 printf("sizeof(long) = %d\n", sizeof(long));
2831 printf("sizeof(unsigned long) = %d\n", sizeof(unsigned long));
2832 printf("sizeof(short) = %d\n", sizeof(short));
2833 printf("sizeof(unsigned short) = %d\n", sizeof(unsigned short));
2834 printf("sizeof(char) = %d\n", sizeof(char));
2835 printf("sizeof(unsigned char) = %d\n", sizeof(unsigned char));
2836 printf("sizeof(func) = %d\n", sizeof sizeof_test());
2837 a = 1;
2838 printf("sizeof(a++) = %d\n", sizeof a++);
2839 printf("a=%d\n", a);
2840 ptr = NULL;
2841 printf("sizeof(**ptr) = %d\n", sizeof (**ptr));
2843 /* The type of sizeof should be as large as a pointer, actually
2844 it should be size_t. */
2845 printf("sizeof(sizeof(int) = %d\n", sizeof(sizeof(int)));
2846 uintptr_t t = 1;
2847 uintptr_t t2;
2848 /* Effectively <<32, but defined also on 32bit machines. */
2849 t <<= 16;
2850 t <<= 16;
2851 t++;
2852 /* This checks that sizeof really can be used to manipulate
2853 uintptr_t objects, without truncation. */
2854 t2 = t & -sizeof(uintptr_t);
2855 printf ("%lu %lu\n", t, t2);
2857 /* some alignof tests */
2858 printf("__alignof__(int) = %d\n", __alignof__(int));
2859 printf("__alignof__(unsigned int) = %d\n", __alignof__(unsigned int));
2860 printf("__alignof__(short) = %d\n", __alignof__(short));
2861 printf("__alignof__(unsigned short) = %d\n", __alignof__(unsigned short));
2862 printf("__alignof__(char) = %d\n", __alignof__(char));
2863 printf("__alignof__(unsigned char) = %d\n", __alignof__(unsigned char));
2864 printf("__alignof__(func) = %d\n", __alignof__ sizeof_test());
2866 /* sizes of VLAs need to be evaluated even inside sizeof: */
2867 a = 2;
2868 printf("sizeof(char[1+2*a]) = %d\n", sizeof(char[1+2*a]));
2869 /* And checking if sizeof compound literal works. Parenthesized: */
2870 printf("sizeof( (struct {int i; int j;}){4,5} ) = %d\n",
2871 sizeof( (struct {int i; int j;}){4,5} ));
2872 /* And as direct sizeof argument (as unary expression): */
2873 printf("sizeof (struct {short i; short j;}){4,5} = %d\n",
2874 sizeof (struct {short i; short j;}){4,5} );
2876 /* sizeof(x && y) should be sizeof(int), even if constant
2877 evaluating is possible. */
2878 printf("sizeof(t && 0) = %d\n", sizeof(t && 0));
2879 printf("sizeof(1 && 1) = %d\n", sizeof(1 && 1));
2880 printf("sizeof(t || 1) = %d\n", sizeof(t || 1));
2881 printf("sizeof(0 || 0) = %d\n", sizeof(0 || 0));
2884 void typeof_test(void)
2886 double a;
2887 typeof(a) b;
2888 typeof(float) c;
2890 a = 1.5;
2891 b = 2.5;
2892 c = 3.5;
2893 printf("a=%f b=%f c=%f\n", a, b, c);
2897 struct hlist_node;
2898 struct hlist_head {
2899 struct hlist_node *first, *last;
2902 void statement_expr_test(void)
2904 int a, i;
2906 /* Basic stmt expr test */
2907 a = 0;
2908 for(i=0;i<10;i++) {
2909 a += 1 +
2910 ( { int b, j;
2911 b = 0;
2912 for(j=0;j<5;j++)
2913 b += j; b;
2914 } );
2916 printf("a=%d\n", a);
2918 /* Test that symbols aren't freed prematurely.
2919 With SYM_DEBUG valgrind will show a read from a freed
2920 symbol, and tcc will show an (invalid) warning on the initialization
2921 of 'ptr' below, if symbols are popped after the stmt expr. */
2922 void *v = (void*)39;
2923 typeof(({
2924 (struct hlist_node *)v;
2925 })) x;
2926 typeof (x)
2927 ptr = (struct hlist_node *)v;
2929 /* This part used to segfault when symbols were popped prematurely.
2930 The symbols for the static local would be overwritten with
2931 helper symbols from the pre-processor expansions in between. */
2932 #define some_attr __attribute__((aligned(1)))
2933 #define tps(str) ({ \
2934 static const char *t some_attr = str; \
2935 t; \
2937 printf ("stmtexpr: %s %s\n",
2938 tps("somerandomlongstring"),
2939 tps("anotherlongstring"));
2941 /* Test that the three decls of 't' don't interact. */
2942 int t = 40;
2943 int b = ({ int t = 41; t; });
2944 int c = ({ int t = 42; t; });
2946 /* Test that aggregate return values work. */
2947 struct hlist_head h
2948 = ({
2949 typedef struct hlist_head T;
2950 long pre = 48;
2951 T t = { (void*)43, (void*)44 };
2952 long post = 49;
2955 printf ("stmtexpr: %d %d %d\n", t, b, c);
2956 printf ("stmtexpr: %ld %ld\n", (long)h.first, (long)h.last);
2959 void local_label_test(void)
2961 int a;
2962 goto l1;
2964 a = 1 + ({
2965 __label__ l1, l2, l3, l4;
2966 goto l1;
2968 printf("aa1\n");
2969 goto l3;
2971 printf("aa3\n");
2972 goto l4;
2974 printf("aa2\n");
2975 goto l2;
2976 l3:;
2979 printf("a=%d\n", a);
2980 return;
2982 printf("bb1\n");
2983 goto l2;
2985 printf("bb2\n");
2986 goto l4;
2989 /* inline assembler test */
2990 #if defined(__i386__) || defined(__x86_64__)
2992 /* from linux kernel */
2993 static char * strncat1(char * dest,const char * src,size_t count)
2995 long d0, d1, d2, d3;
2996 __asm__ __volatile__(
2997 "repne\n\t"
2998 "scasb\n\t"
2999 "dec %1\n\t"
3000 "mov %8,%3\n"
3001 "1:\tdec %3\n\t"
3002 "js 2f\n\t"
3003 "lodsb\n\t"
3004 "stosb\n\t"
3005 "testb %%al,%%al\n\t"
3006 "jne 1b\n"
3007 "2:\txor %2,%2\n\t"
3008 "stosb"
3009 : "=&S" (d0), "=&D" (d1), "=&a" (d2), "=&c" (d3)
3010 : "0" (src),"1" (dest),"2" (0),"3" (0xffffffff), "g" (count)
3011 : "memory");
3012 return dest;
3015 static char * strncat2(char * dest,const char * src,size_t count)
3017 long d0, d1, d2, d3;
3018 __asm__ __volatile__(
3019 "repne scasb\n\t" /* one-line repne prefix + string op */
3020 "dec %1\n\t"
3021 "mov %8,%3\n"
3022 "1:\tdec %3\n\t"
3023 "js 2f\n\t"
3024 "lodsb\n\t"
3025 "stosb\n\t"
3026 "testb %%al,%%al\n\t"
3027 "jne 1b\n"
3028 "2:\txor %2,%2\n\t"
3029 "stosb"
3030 : "=&S" (d0), "=&D" (d1), "=&a" (d2), "=&c" (d3)
3031 : "0" (src),"1" (dest),"2" (0),"3" (0xffffffff), "g" (count)
3032 : "memory");
3033 return dest;
3036 static inline void * memcpy1(void * to, const void * from, size_t n)
3038 long d0, d1, d2;
3039 __asm__ __volatile__(
3040 "rep ; movsl\n\t"
3041 "testb $2,%b4\n\t"
3042 "je 1f\n\t"
3043 "movsw\n"
3044 "1:\ttestb $1,%b4\n\t"
3045 "je 2f\n\t"
3046 "movsb\n"
3047 "2:"
3048 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
3049 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
3050 : "memory");
3051 return (to);
3054 static inline void * memcpy2(void * to, const void * from, size_t n)
3056 long d0, d1, d2;
3057 __asm__ __volatile__(
3058 "rep movsl\n\t" /* one-line rep prefix + string op */
3059 "testb $2,%b4\n\t"
3060 "je 1f\n\t"
3061 "movsw\n"
3062 "1:\ttestb $1,%b4\n\t"
3063 "je 2f\n\t"
3064 "movsb\n"
3065 "2:"
3066 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
3067 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
3068 : "memory");
3069 return (to);
3072 static __inline__ void sigaddset1(unsigned int *set, int _sig)
3074 __asm__("btsl %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc");
3077 static __inline__ void sigdelset1(unsigned int *set, int _sig)
3079 asm("btrl %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc", "flags");
3082 static __inline__ __const__ unsigned int swab32(unsigned int x)
3084 __asm__("xchgb %b0,%h0\n\t" /* swap lower bytes */
3085 "rorl $16,%0\n\t" /* swap words */
3086 "xchgb %b0,%h0" /* swap higher bytes */
3087 :"=" "q" (x)
3088 : "0" (x));
3089 return x;
3092 static __inline__ unsigned long long mul64(unsigned int a, unsigned int b)
3094 unsigned long long res;
3095 #ifdef __x86_64__
3096 /* Using the A constraint is wrong (it means rdx:rax, which is too large)
3097 but still test the 32bit->64bit mull. */
3098 unsigned int resh, resl;
3099 __asm__("mull %2" : "=a" (resl), "=d" (resh) : "a" (a), "r" (b));
3100 res = ((unsigned long long)resh << 32) | resl;
3101 #else
3102 __asm__("mull %2" : "=A" (res) : "a" (a), "r" (b));
3103 #endif
3104 return res;
3107 static __inline__ unsigned long long inc64(unsigned long long a)
3109 unsigned long long res;
3110 #ifdef __x86_64__
3111 /* Using the A constraint is wrong, and increments are tested
3112 elsewere. */
3113 res = a + 1;
3114 #else
3115 __asm__("addl $1, %%eax ; adcl $0, %%edx" : "=A" (res) : "A" (a));
3116 #endif
3117 return res;
3120 struct struct123 {
3121 int a;
3122 int b;
3124 struct struct1231 {
3125 unsigned long addr;
3128 unsigned long mconstraint_test(struct struct1231 *r)
3130 unsigned long ret;
3131 unsigned int a[2];
3132 a[0] = 0;
3133 __asm__ volatile ("lea %2,%0; movl 4(%0),%k0; addl %2,%k0; movl $51,%2; movl $52,4%2; movl $63,%1"
3134 : "=&r" (ret), "=m" (a)
3135 : "m" (*(struct struct123 *)r->addr));
3136 return ret + a[0];
3139 #ifdef __x86_64__
3140 int fls64(unsigned long long x)
3142 int bitpos = -1;
3143 asm("bsrq %1,%q0"
3144 : "+r" (bitpos)
3145 : "rm" (x));
3146 return bitpos + 1;
3148 #endif
3150 void other_constraints_test(void)
3152 unsigned long ret;
3153 int var;
3154 #ifndef _WIN64
3155 __asm__ volatile ("mov %P1,%0" : "=r" (ret) : "p" (&var));
3156 printf ("oc1: %d\n", ret == (unsigned long)&var);
3157 #endif
3160 #ifndef _WIN32
3161 /* Test global asm blocks playing with aliases. */
3162 void base_func(void)
3164 printf ("asmc: base\n");
3167 extern void override_func1 (void);
3168 extern void override_func2 (void);
3170 asm(".weak override_func1\n.set override_func1, base_func");
3171 asm(".set override_func1, base_func");
3172 asm(".set override_func2, base_func");
3174 void override_func2 (void)
3176 printf ("asmc: override2\n");
3179 /* This checks a construct used by the linux kernel to encode
3180 references to strings by PC relative references. */
3181 extern int bug_table[] __attribute__((section("__bug_table")));
3182 char * get_asm_string (void)
3184 extern int some_symbol;
3185 asm volatile (".globl some_symbol\n"
3186 "jmp .+6\n"
3187 "1:\n"
3188 "some_symbol: .long 0\n"
3189 ".pushsection __bug_table, \"a\"\n"
3190 ".globl bug_table\n"
3191 "bug_table:\n"
3192 /* The first entry (1b-2b) is unused in this test,
3193 but we include it to check if cross-section
3194 PC-relative references work. */
3195 "2:\t.long 1b - 2b, %c0 - 2b\n"
3196 ".popsection\n" : : "i" ("A string"));
3197 char * str = ((char*)bug_table) + bug_table[1];
3198 return str;
3200 #endif
3202 unsigned int set;
3204 void fancy_copy (unsigned *in, unsigned *out)
3206 asm volatile ("" : "=r" (*out) : "0" (*in));
3209 void fancy_copy2 (unsigned *in, unsigned *out)
3211 asm volatile ("mov %0,(%1)" : : "r" (*in), "r" (out) : "memory");
3214 #ifdef __x86_64__
3215 void clobber_r12(void)
3217 asm volatile("mov $1, %%r12" ::: "r12");
3219 #endif
3221 void test_high_clobbers(void)
3223 #ifdef __x86_64__
3224 register long val asm("r12");
3225 long val2;
3226 /* This tests if asm clobbers correctly save/restore callee saved
3227 registers if they are clobbered and if it's the high 8 x86-64
3228 registers. This is fragile for GCC as the constraints do not
3229 correctly capture the data flow, but good enough for us. */
3230 asm volatile("mov $0x4542, %%r12" : "=r" (val):: "memory");
3231 clobber_r12();
3232 #ifndef _WIN64
3233 asm volatile("mov %%r12, %0" : "=r" (val2) : "r" (val): "memory");
3234 printf("asmhc: 0x%x\n", val2);
3235 #endif
3236 #endif
3239 static long cpu_number;
3240 void trace_console(long len, long len2)
3242 #ifdef __x86_64__
3243 /* This generated invalid code when the emission of the switch
3244 table isn't disabled. The asms are necessary to show the bug,
3245 normal statements don't work (they need to generate some code
3246 even under nocode_wanted, which normal statements don't do,
3247 but asms do). Also at least these number of cases is necessary
3248 to generate enough "random" bytes. They ultimately are enough
3249 to create invalid instruction patterns to which the first
3250 skip-to-decision-table jump jumps. If decision table emission
3251 is disabled all of this is no problem.
3253 It also is necessary that the switches are in a statement expression
3254 (which has the property of not being enterable from outside. no
3255 matter what). */
3256 if (0
3259 long pscr_ret__;
3260 switch(len) {
3261 case 4:
3263 long pfo_ret__;
3264 switch (len2) {
3265 case 8: printf("bla"); pfo_ret__ = 42; break;
3267 pscr_ret__ = pfo_ret__;
3269 break;
3270 case 8:
3272 long pfo_ret__;
3273 switch (len2) {
3274 case 1:asm("movq %1,%0": "=r" (pfo_ret__) : "m" (cpu_number)); break;
3275 case 2:asm("movq %1,%0": "=r" (pfo_ret__) : "m" (cpu_number)); break;
3276 case 4:asm("movq %1,%0": "=r" (pfo_ret__) : "m" (cpu_number)); break;
3277 case 8:asm("movq %1,%0": "=r" (pfo_ret__) : "m" (cpu_number)); break;
3278 default: printf("impossible\n");
3280 pscr_ret__ = pfo_ret__;
3282 break;
3284 pscr_ret__;
3287 printf("huh?\n");
3289 #endif
3292 void test_asm_dead_code(void)
3294 long rdi;
3295 /* Try to make sure that xdi contains a zero, and hence will
3296 lead to a segfault if the next asm is evaluated without
3297 arguments being set up. */
3298 asm volatile ("" : "=D" (rdi) : "0" (0));
3299 (void)sizeof (({
3300 int var;
3301 /* This shouldn't trigger a segfault, either the argument
3302 registers need to be set up and the asm emitted despite
3303 this being in an unevaluated context, or both the argument
3304 setup _and_ the asm emission need to be suppressed. The latter
3305 is better. Disabling asm code gen when suppression is on
3306 also fixes the above trace_console bug, but that came earlier
3307 than asm suppression. */
3308 asm volatile ("movl $0,(%0)" : : "D" (&var) : "memory");
3309 var;
3310 }));
3313 void asm_test(void)
3315 char buf[128];
3316 unsigned int val, val2;
3317 struct struct123 s1;
3318 struct struct1231 s2 = { (unsigned long)&s1 };
3319 /* Hide the outer base_func, but check later that the inline
3320 asm block gets the outer one. */
3321 int base_func = 42;
3322 void override_func3 (void);
3323 unsigned long asmret;
3324 #ifdef BOOL_ISOC99
3325 _Bool somebool;
3326 #endif
3327 register int regvar asm("%esi");
3329 printf("inline asm:\n");
3331 // parse 0x1E-1 as 3 tokens in asm mode
3332 asm volatile ("mov $0x1E-1,%eax");
3334 /* test the no operand case */
3335 asm volatile ("xorl %eax, %eax");
3337 memcpy1(buf, "hello", 6);
3338 strncat1(buf, " worldXXXXX", 3);
3339 printf("%s\n", buf);
3341 memcpy2(buf, "hello", 6);
3342 strncat2(buf, " worldXXXXX", 3);
3343 printf("%s\n", buf);
3345 /* 'A' constraint test */
3346 printf("mul64=0x%Lx\n", mul64(0x12345678, 0xabcd1234));
3347 printf("inc64=0x%Lx\n", inc64(0x12345678ffffffff));
3349 s1.a = 42;
3350 s1.b = 43;
3351 printf("mconstraint: %d", mconstraint_test(&s2));
3352 printf(" %d %d\n", s1.a, s1.b);
3353 other_constraints_test();
3354 set = 0xff;
3355 sigdelset1(&set, 2);
3356 sigaddset1(&set, 16);
3357 /* NOTE: we test here if C labels are correctly restored after the
3358 asm statement */
3359 goto label1;
3360 label2:
3361 __asm__("btsl %1,%0" : "=m"(set) : "Ir"(20) : "cc");
3362 printf("set=0x%x\n", set);
3363 val = 0x01020304;
3364 printf("swab32(0x%08x) = 0x%0x\n", val, swab32(val));
3365 #ifndef _WIN32
3366 override_func1();
3367 override_func2();
3368 /* The base_func ref from the following inline asm should find
3369 the global one, not the local decl from this function. */
3370 asm volatile(".weak override_func3\n.set override_func3, base_func");
3371 override_func3();
3372 printf("asmstr: %s\n", get_asm_string());
3373 #endif
3374 /* Check that we can also load structs of appropriate layout
3375 into registers. */
3376 asm volatile("" : "=r" (asmret) : "0"(s2));
3377 if (asmret != s2.addr)
3378 printf("asmstr: failed\n");
3379 #ifdef BOOL_ISOC99
3380 /* Check that the typesize correctly sets the register size to
3381 8 bit. */
3382 asm volatile("cmp %1,%2; sete %0" : "=a"(somebool) : "r"(1), "r"(2));
3383 if (!somebool)
3384 printf("asmbool: failed\n");
3385 #endif
3386 val = 43;
3387 fancy_copy (&val, &val2);
3388 printf ("fancycpy(%d)=%d\n", val, val2);
3389 val = 44;
3390 fancy_copy2 (&val, &val2);
3391 printf ("fancycpy2(%d)=%d\n", val, val2);
3392 asm volatile ("mov $0x4243, %%esi" : "=r" (regvar));
3393 printf ("regvar=%x\n", regvar);
3394 test_high_clobbers();
3395 trace_console(8, 8);
3396 test_asm_dead_code();
3397 return;
3398 label1:
3399 goto label2;
3402 #else
3404 void asm_test(void)
3408 #endif
3410 #define COMPAT_TYPE(type1, type2) \
3412 printf("__builtin_types_compatible_p(%s, %s) = %d\n", #type1, #type2, \
3413 __builtin_types_compatible_p (type1, type2));\
3416 int constant_p_var;
3418 void builtin_test(void)
3420 short s;
3421 int i;
3422 long long ll;
3423 #if GCC_MAJOR >= 3
3424 COMPAT_TYPE(int, int);
3425 COMPAT_TYPE(int, unsigned int);
3426 COMPAT_TYPE(int, char);
3427 COMPAT_TYPE(int, const int);
3428 COMPAT_TYPE(int, volatile int);
3429 COMPAT_TYPE(int *, int *);
3430 COMPAT_TYPE(int *, void *);
3431 COMPAT_TYPE(int *, const int *);
3432 COMPAT_TYPE(char *, unsigned char *);
3433 COMPAT_TYPE(char *, signed char *);
3434 COMPAT_TYPE(char *, char *);
3435 /* space is needed because tcc preprocessor introduces a space between each token */
3436 COMPAT_TYPE(char * *, void *);
3437 #endif
3438 printf("res = %d\n", __builtin_constant_p(1));
3439 printf("res = %d\n", __builtin_constant_p(1 + 2));
3440 printf("res = %d\n", __builtin_constant_p(&constant_p_var));
3441 printf("res = %d\n", __builtin_constant_p(constant_p_var));
3442 printf("res = %d\n", __builtin_constant_p(100000 / constant_p_var));
3443 s = 1;
3444 ll = 2;
3445 i = __builtin_choose_expr (1 != 0, ll, s);
3446 printf("bce: %d\n", i);
3447 i = __builtin_choose_expr (1 != 1, ll, s);
3448 printf("bce: %d\n", i);
3449 i = sizeof (__builtin_choose_expr (1, ll, s));
3450 printf("bce: %d\n", i);
3451 i = sizeof (__builtin_choose_expr (0, ll, s));
3452 printf("bce: %d\n", i);
3454 //printf("bera: %p\n", __builtin_extract_return_addr((void*)43));
3457 #ifndef _WIN32
3458 extern int __attribute__((weak)) weak_f1(void);
3459 extern int __attribute__((weak)) weak_f2(void);
3460 extern int weak_f3(void);
3461 extern int __attribute__((weak)) weak_v1;
3462 extern int __attribute__((weak)) weak_v2;
3463 extern int weak_v3;
3465 extern int (*weak_fpa)() __attribute__((weak));
3466 extern int __attribute__((weak)) (*weak_fpb)();
3467 extern __attribute__((weak)) int (*weak_fpc)();
3469 extern int weak_asm_f1(void) asm("weak_asm_f1x") __attribute((weak));
3470 extern int __attribute((weak)) weak_asm_f2(void) asm("weak_asm_f2x") ;
3471 extern int __attribute((weak)) weak_asm_f3(void) asm("weak_asm_f3x") __attribute((weak));
3472 extern int weak_asm_v1 asm("weak_asm_v1x") __attribute((weak));
3473 extern int __attribute((weak)) weak_asm_v2 asm("weak_asm_v2x") ;
3474 extern int __attribute((weak)) weak_asm_v3(void) asm("weak_asm_v3x") __attribute((weak));
3476 static const size_t dummy = 0;
3477 extern __typeof(dummy) weak_dummy1 __attribute__((weak, alias("dummy")));
3478 extern __typeof(dummy) __attribute__((weak, alias("dummy"))) weak_dummy2;
3479 extern __attribute__((weak, alias("dummy"))) __typeof(dummy) weak_dummy3;
3481 int some_lib_func(void);
3482 int dummy_impl_of_slf(void) { return 444; }
3483 int some_lib_func(void) __attribute__((weak, alias("dummy_impl_of_slf")));
3485 int weak_toolate() __attribute__((weak));
3486 int weak_toolate() { return 0; }
3488 void __attribute__((weak)) weak_test(void)
3490 printf("weak_f1=%d\n", weak_f1 ? weak_f1() : 123);
3491 printf("weak_f2=%d\n", weak_f2 ? weak_f2() : 123);
3492 printf("weak_f3=%d\n", weak_f3 ? weak_f3() : 123);
3493 printf("weak_v1=%d\n",&weak_v1 ? weak_v1 : 123);
3494 printf("weak_v2=%d\n",&weak_v2 ? weak_v2 : 123);
3495 printf("weak_v3=%d\n",&weak_v3 ? weak_v3 : 123);
3497 printf("weak_fpa=%d\n",&weak_fpa ? weak_fpa() : 123);
3498 printf("weak_fpb=%d\n",&weak_fpb ? weak_fpb() : 123);
3499 printf("weak_fpc=%d\n",&weak_fpc ? weak_fpc() : 123);
3501 printf("weak_asm_f1=%d\n", weak_asm_f1 != NULL);
3502 printf("weak_asm_f2=%d\n", weak_asm_f2 != NULL);
3503 printf("weak_asm_f3=%d\n", weak_asm_f3 != NULL);
3504 printf("weak_asm_v1=%d\n",&weak_asm_v1 != NULL);
3505 printf("weak_asm_v2=%d\n",&weak_asm_v2 != NULL);
3506 printf("weak_asm_v3=%d\n",&weak_asm_v3 != NULL);
3507 printf("some_lib_func=%d\n", &some_lib_func ? some_lib_func() : 0);
3510 int __attribute__((weak)) weak_f2() { return 222; }
3511 int __attribute__((weak)) weak_f3() { return 333; }
3512 int __attribute__((weak)) weak_v2 = 222;
3513 int __attribute__((weak)) weak_v3 = 333;
3514 #endif
3516 void const_func(const int a)
3520 void const_warn_test(void)
3522 const_func(1);
3525 struct condstruct {
3526 int i;
3529 int getme (struct condstruct *s, int i)
3531 int i1 = (i == 0 ? 0 : s)->i;
3532 int i2 = (i == 0 ? s : 0)->i;
3533 int i3 = (i == 0 ? (void*)0 : s)->i;
3534 int i4 = (i == 0 ? s : (void*)0)->i;
3535 return i1 + i2 + i3 + i4;
3538 struct global_data
3540 int a[40];
3541 int *b[40];
3544 struct global_data global_data;
3546 int global_data_getstuff (int *, int);
3548 void global_data_callit (int i)
3550 *global_data.b[i] = global_data_getstuff (global_data.b[i], 1);
3553 int global_data_getstuff (int *p, int i)
3555 return *p + i;
3558 void global_data_test (void)
3560 global_data.a[0] = 42;
3561 global_data.b[0] = &global_data.a[0];
3562 global_data_callit (0);
3563 printf ("%d\n", global_data.a[0]);
3566 struct cmpcmpS
3568 unsigned char fill : 3;
3569 unsigned char b1 : 1;
3570 unsigned char b2 : 1;
3571 unsigned char fill2 : 3;
3574 int glob1, glob2, glob3;
3576 void compare_comparisons (struct cmpcmpS *s)
3578 if (s->b1 != (glob1 == glob2)
3579 || (s->b2 != (glob1 == glob3)))
3580 printf ("comparing comparisons broken\n");
3583 void cmp_comparison_test(void)
3585 struct cmpcmpS s;
3586 s.b1 = 1;
3587 glob1 = 42; glob2 = 42;
3588 s.b2 = 0;
3589 glob3 = 43;
3590 compare_comparisons (&s);
3593 int fcompare (double a, double b, int code)
3595 switch (code) {
3596 case 0: return a == b;
3597 case 1: return a != b;
3598 case 2: return a < b;
3599 case 3: return a >= b;
3600 case 4: return a > b;
3601 case 5: return a <= b;
3605 void math_cmp_test(void)
3607 double nan = 0.0/0.0;
3608 double one = 1.0;
3609 double two = 2.0;
3610 int comp = 0;
3611 #define bug(a,b,op,iop,part) printf("Test broken: %s %s %s %s %d\n", #a, #b, #op, #iop, part)
3613 /* This asserts that "a op b" is _not_ true, but "a iop b" is true.
3614 And it does this in various ways so that all code generation paths
3615 are checked (generating inverted tests, or non-inverted tests, or
3616 producing a 0/1 value without jumps (that's done in the fcompare
3617 function). */
3618 #define FCMP(a,b,op,iop,code) \
3619 if (fcompare (a,b,code)) \
3620 bug (a,b,op,iop,1); \
3621 if (a op b) \
3622 bug (a,b,op,iop,2); \
3623 if (a iop b) \
3625 else \
3626 bug (a,b,op,iop,3); \
3627 if ((a op b) || comp) \
3628 bug (a,b,op,iop,4); \
3629 if ((a iop b) || comp) \
3631 else \
3632 bug (a,b,op,iop,5);
3634 /* Equality tests. */
3635 FCMP(nan, nan, ==, !=, 0);
3636 FCMP(one, two, ==, !=, 0);
3637 FCMP(one, one, !=, ==, 1);
3638 /* Non-equality is a bit special. */
3639 if (!fcompare (nan, nan, 1))
3640 bug (nan, nan, !=, ==, 6);
3642 /* Relational tests on numbers. */
3643 FCMP(two, one, <, >=, 2);
3644 FCMP(one, two, >=, <, 3);
3645 FCMP(one, two, >, <=, 4);
3646 FCMP(two, one, <=, >, 5);
3648 /* Relational tests on NaNs. Note that the inverse op here is
3649 always !=, there's no operator in C that is equivalent to !(a < b),
3650 when NaNs are involved, same for the other relational ops. */
3651 FCMP(nan, nan, <, !=, 2);
3652 FCMP(nan, nan, >=, !=, 3);
3653 FCMP(nan, nan, >, !=, 4);
3654 FCMP(nan, nan, <=, !=, 5);
3657 double get100 () { return 100.0; }
3659 void callsave_test(void)
3661 #if defined __i386__ || defined __x86_64__ || defined __arm__
3662 int i, s; double *d; double t;
3663 s = sizeof (double);
3664 printf ("callsavetest: %d\n", s);
3665 d = alloca (sizeof(double));
3666 d[0] = 10.0;
3667 /* x86-64 had a bug were the next call to get100 would evict
3668 the lvalue &d[0] as VT_LLOCAL, and the reload would be done
3669 in int type, not pointer type. When alloca returns a pointer
3670 with the high 32 bit set (which is likely on x86-64) the access
3671 generates a segfault. */
3672 i = d[0] > get100 ();
3673 printf ("%d\n", i);
3674 #endif
3678 void bfa3(ptrdiff_t str_offset)
3680 printf("bfa3: %s\n", (char *)__builtin_frame_address(3) + str_offset);
3682 void bfa2(ptrdiff_t str_offset)
3684 printf("bfa2: %s\n", (char *)__builtin_frame_address(2) + str_offset);
3685 bfa3(str_offset);
3687 void bfa1(ptrdiff_t str_offset)
3689 printf("bfa1: %s\n", (char *)__builtin_frame_address(1) + str_offset);
3690 bfa2(str_offset);
3693 void builtin_frame_address_test(void)
3695 /* builtin_frame_address fails on ARM with gcc which make test3 fail */
3696 #ifndef __arm__
3697 char str[] = "__builtin_frame_address";
3698 char *fp0 = __builtin_frame_address(0);
3700 printf("str: %s\n", str);
3701 bfa1(str-fp0);
3702 #endif
3705 char via_volatile (char i)
3707 char volatile vi;
3708 vi = i;
3709 return vi;
3712 struct __attribute__((__packed__)) Spacked {
3713 char a;
3714 short b;
3715 int c;
3717 struct Spacked spacked;
3718 typedef struct __attribute__((__packed__)) {
3719 char a;
3720 short b;
3721 int c;
3722 } Spacked2;
3723 Spacked2 spacked2;
3724 typedef struct Spacked3_s {
3725 char a;
3726 short b;
3727 int c;
3728 } __attribute__((__packed__)) Spacked3;
3729 Spacked3 spacked3;
3730 struct gate_struct64 {
3731 unsigned short offset_low;
3732 unsigned short segment;
3733 unsigned ist : 3, zero0 : 5, type : 5, dpl : 2, p : 1;
3734 unsigned short offset_middle;
3735 unsigned offset_high;
3736 unsigned zero1;
3737 } __attribute__((packed));
3738 typedef struct gate_struct64 gate_desc;
3739 gate_desc a_gate_desc;
3740 void attrib_test(void)
3742 #ifndef _WIN32
3743 printf("attr: %d %d %d %d\n", sizeof(struct Spacked),
3744 sizeof(spacked), sizeof(Spacked2), sizeof(spacked2));
3745 printf("attr: %d %d\n", sizeof(Spacked3), sizeof(spacked3));
3746 printf("attr: %d %d\n", sizeof(gate_desc), sizeof(a_gate_desc));
3747 #endif
3749 extern __attribute__((__unused__)) char * __attribute__((__unused__)) *
3750 strange_attrib_placement (void);
3752 void * __attribute__((__unused__)) get_void_ptr (void *a)
3754 return a;
3757 /* This part checks for a bug in TOK_GET (used for inline expansion),
3758 where the large long long constant left the the high bits set for
3759 the integer constant token. */
3760 static inline
3761 int __get_order(unsigned long long size)
3763 int order;
3764 size -= 0xffff880000000000ULL; // this const left high bits set in the token
3766 struct S { int i : 1; } s; // constructed for this '1'
3768 order = size;
3769 return order;
3772 /* This just forces the above inline function to be actually emitted. */
3773 int force_get_order(unsigned long s)
3775 return __get_order(s);