Fix shortening casts of long long
[tinycc.git] / tests / tcctest.c
blob56d51dc8c68b4072842d18f3c9e34d3c2bd0e132
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 substitution 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 parentheses 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). -- FIXED */
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;
2237 static double nan2 = 0.0/0.0;
2238 static double inf1 = 1.0/0.0;
2239 static double inf2 = 1e5000;
2241 printf("float_test:\n");
2242 printf("sizeof(float) = %d\n", sizeof(float));
2243 printf("sizeof(double) = %d\n", sizeof(double));
2244 printf("sizeof(long double) = %d\n", sizeof(LONG_DOUBLE));
2245 ftest();
2246 dtest();
2247 ldtest();
2248 printf("%f %f %f\n", ftab1[0], ftab1[1], ftab1[2]);
2249 printf("%f %f %f\n", 2.12, .5, 2.3e10);
2250 // printf("%f %f %f\n", 0x1234p12, 0x1e23.23p10, 0x12dp-10);
2251 da = 123;
2252 printf("da=%f\n", da);
2253 fa = 123;
2254 printf("fa=%f\n", fa);
2255 a = 4000000000;
2256 da = a;
2257 printf("da = %f\n", da);
2258 b = 4000000000;
2259 db = b;
2260 printf("db = %f\n", db);
2261 printf("nan != nan = %d, inf1 = %f, inf2 = %f\n", nan2 != nan2, inf1, inf2);
2262 #endif
2265 int fib(int n)
2267 if (n <= 2)
2268 return 1;
2269 else
2270 return fib(n-1) + fib(n-2);
2273 void funcptr_test()
2275 void (*func)(int);
2276 int a;
2277 struct {
2278 int dummy;
2279 void (*func)(int);
2280 } st1;
2281 long diff;
2283 printf("funcptr:\n");
2284 func = &num;
2285 (*func)(12345);
2286 func = num;
2287 a = 1;
2288 a = 1;
2289 func(12345);
2290 /* more complicated pointer computation */
2291 st1.func = num;
2292 st1.func(12346);
2293 printf("sizeof1 = %d\n", sizeof(funcptr_test));
2294 printf("sizeof2 = %d\n", sizeof funcptr_test);
2295 printf("sizeof3 = %d\n", sizeof(&funcptr_test));
2296 printf("sizeof4 = %d\n", sizeof &funcptr_test);
2297 a = 0;
2298 func = num + a;
2299 diff = func - num;
2300 func(42);
2301 (func + diff)(42);
2302 (num + a)(43);
2305 void lloptest(long long a, long long b)
2307 unsigned long long ua, ub;
2309 ua = a;
2310 ub = b;
2311 /* arith */
2312 printf("arith: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2313 a + b,
2314 a - b,
2315 a * b);
2317 if (b != 0) {
2318 printf("arith1: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2319 a / b,
2320 a % b);
2323 /* binary */
2324 printf("bin: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2325 a & b,
2326 a | b,
2327 a ^ b);
2329 /* tests */
2330 printf("test: %d %d %d %d %d %d\n",
2331 a == b,
2332 a != b,
2333 a < b,
2334 a > b,
2335 a >= b,
2336 a <= b);
2338 printf("utest: %d %d %d %d %d %d\n",
2339 ua == ub,
2340 ua != ub,
2341 ua < ub,
2342 ua > ub,
2343 ua >= ub,
2344 ua <= ub);
2346 /* arith2 */
2347 a++;
2348 b++;
2349 printf("arith2: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", a, b);
2350 printf("arith2: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", a++, b++);
2351 printf("arith2: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", --a, --b);
2352 printf("arith2: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", a, b);
2353 b = ub = 0;
2354 printf("not: %d %d %d %d\n", !a, !ua, !b, !ub);
2357 void llshift(long long a, int b)
2359 printf("shift: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2360 (unsigned long long)a >> b,
2361 a >> b,
2362 a << b);
2363 printf("shiftc: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2364 (unsigned long long)a >> 3,
2365 a >> 3,
2366 a << 3);
2367 printf("shiftc: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n",
2368 (unsigned long long)a >> 35,
2369 a >> 35,
2370 a << 35);
2373 void llfloat(void)
2375 float fa;
2376 double da;
2377 LONG_DOUBLE lda;
2378 long long la, lb, lc;
2379 unsigned long long ula, ulb, ulc;
2380 la = 0x12345678;
2381 ula = 0x72345678;
2382 la = (la << 20) | 0x12345;
2383 ula = ula << 33;
2384 printf("la=" LONG_LONG_FORMAT " ula=" ULONG_LONG_FORMAT "\n", la, ula);
2386 fa = la;
2387 da = la;
2388 lda = la;
2389 printf("lltof: %f %f %Lf\n", fa, da, lda);
2391 la = fa;
2392 lb = da;
2393 lc = lda;
2394 printf("ftoll: " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", la, lb, lc);
2396 fa = ula;
2397 da = ula;
2398 lda = ula;
2399 printf("ulltof: %f %f %Lf\n", fa, da, lda);
2401 ula = fa;
2402 ulb = da;
2403 ulc = lda;
2404 printf("ftoull: " ULONG_LONG_FORMAT " " ULONG_LONG_FORMAT " " ULONG_LONG_FORMAT "\n", ula, ulb, ulc);
2407 long long llfunc1(int a)
2409 return a * 2;
2412 struct S {
2413 int id;
2414 char item;
2417 long long int value(struct S *v)
2419 return ((long long int)v->item);
2422 long long llfunc2(long long x, long long y, int z)
2424 return x * y * z;
2427 void longlong_test(void)
2429 long long a, b, c;
2430 int ia;
2431 unsigned int ua;
2432 printf("longlong_test:\n");
2433 printf("sizeof(long long) = %d\n", sizeof(long long));
2434 ia = -1;
2435 ua = -2;
2436 a = ia;
2437 b = ua;
2438 printf(LONG_LONG_FORMAT " " LONG_LONG_FORMAT "\n", a, b);
2439 printf(LONG_LONG_FORMAT " " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " %Lx\n",
2440 (long long)1,
2441 (long long)-2,
2442 1LL,
2443 0x1234567812345679);
2444 a = llfunc1(-3);
2445 printf(LONG_LONG_FORMAT "\n", a);
2447 lloptest(1000, 23);
2448 lloptest(0xff, 0x1234);
2449 b = 0x72345678 << 10;
2450 lloptest(-3, b);
2451 llshift(0x123, 5);
2452 llshift(-23, 5);
2453 b = 0x72345678LL << 10;
2454 llshift(b, 47);
2456 llfloat();
2457 #if 1
2458 b = 0x12345678;
2459 a = -1;
2460 c = a + b;
2461 printf("%Lx\n", c);
2462 #endif
2464 /* long long reg spill test */
2466 struct S a;
2468 a.item = 3;
2469 printf("%lld\n", value(&a));
2471 lloptest(0x80000000, 0);
2474 long long *p, v, **pp;
2475 v = 1;
2476 p = &v;
2477 p[0]++;
2478 printf("another long long spill test : %lld\n", *p);
2479 pp = &p;
2481 v = llfunc2(**pp, **pp, ia);
2482 printf("a long long function (arm-)reg-args test : %lld\n", v);
2484 a = 68719476720LL;
2485 b = 4294967295LL;
2486 printf("%d %d %d %d\n", a > b, a < b, a >= b, a <= b);
2488 printf(LONG_LONG_FORMAT "\n", 0x123456789LLU);
2490 /* long long pointer deref in argument passing test */
2491 a = 0x123;
2492 long long *p = &a;
2493 llshift(*p, 5);
2495 /* shortening followed by widening */
2496 unsigned long long u = 0x8000000000000001ULL;
2497 u = (unsigned)(u + 1);
2498 printf("long long u=" ULONG_LONG_FORMAT "\n", u);
2501 void manyarg_test(void)
2503 LONG_DOUBLE ld = 1234567891234LL;
2504 printf("manyarg_test:\n");
2505 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f\n",
2506 1, 2, 3, 4, 5, 6, 7, 8,
2507 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0);
2508 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2509 LONG_LONG_FORMAT " " LONG_LONG_FORMAT " %f %f\n",
2510 1, 2, 3, 4, 5, 6, 7, 8,
2511 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2512 1234567891234LL, 987654321986LL,
2513 42.0, 43.0);
2514 printf("%Lf %d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2515 LONG_LONG_FORMAT " " LONG_LONG_FORMAT " %f %f\n",
2516 ld, 1, 2, 3, 4, 5, 6, 7, 8,
2517 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2518 1234567891234LL, 987654321986LL,
2519 42.0, 43.0);
2520 printf("%d %d %d %d %d %d %d %d %Lf\n",
2521 1, 2, 3, 4, 5, 6, 7, 8, ld);
2522 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2523 LONG_LONG_FORMAT " " LONG_LONG_FORMAT "%f %f %Lf\n",
2524 1, 2, 3, 4, 5, 6, 7, 8,
2525 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2526 1234567891234LL, 987654321986LL,
2527 42.0, 43.0, ld);
2528 printf("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2529 "%Lf " LONG_LONG_FORMAT " " LONG_LONG_FORMAT " %f %f %Lf\n",
2530 1, 2, 3, 4, 5, 6, 7, 8,
2531 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2532 ld, 1234567891234LL, 987654321986LL,
2533 42.0, 43.0, ld);
2536 void vprintf1(const char *fmt, ...)
2538 va_list ap, aq;
2539 const char *p;
2540 int c, i;
2541 double d;
2542 long long ll;
2543 LONG_DOUBLE ld;
2545 va_start(aq, fmt);
2546 va_copy(ap, aq);
2548 p = fmt;
2549 for(;;) {
2550 c = *p;
2551 if (c == '\0')
2552 break;
2553 p++;
2554 if (c == '%') {
2555 c = *p;
2556 switch(c) {
2557 case '\0':
2558 goto the_end;
2559 case 'd':
2560 i = va_arg(ap, int);
2561 printf("%d", i);
2562 break;
2563 case 'f':
2564 d = va_arg(ap, double);
2565 printf("%f", d);
2566 break;
2567 case 'l':
2568 ll = va_arg(ap, long long);
2569 printf(LONG_LONG_FORMAT, ll);
2570 break;
2571 case 'F':
2572 ld = va_arg(ap, LONG_DOUBLE);
2573 printf("%Lf", ld);
2574 break;
2576 p++;
2577 } else {
2578 putchar(c);
2581 the_end:
2582 va_end(aq);
2583 va_end(ap);
2586 struct myspace {
2587 short int profile;
2590 void stdarg_for_struct(struct myspace bob, ...)
2592 struct myspace george, bill;
2593 va_list ap;
2594 short int validate;
2596 va_start(ap, bob);
2597 bill = va_arg(ap, struct myspace);
2598 george = va_arg(ap, struct myspace);
2599 validate = va_arg(ap, int);
2600 printf("stdarg_for_struct: %d %d %d %d\n",
2601 bob.profile, bill.profile, george.profile, validate);
2602 va_end(ap);
2605 void stdarg_for_libc(const char *fmt, ...)
2607 va_list args;
2608 va_start(args, fmt);
2609 vprintf(fmt, args);
2610 va_end(args);
2613 void stdarg_test(void)
2615 LONG_DOUBLE ld = 1234567891234LL;
2616 struct myspace bob;
2618 vprintf1("%d %d %d\n", 1, 2, 3);
2619 vprintf1("%f %d %f\n", 1.0, 2, 3.0);
2620 vprintf1("%l %l %d %f\n", 1234567891234LL, 987654321986LL, 3, 1234.0);
2621 vprintf1("%F %F %F\n", LONG_DOUBLE_LITERAL(1.2), LONG_DOUBLE_LITERAL(2.3), LONG_DOUBLE_LITERAL(3.4));
2622 vprintf1("%d %f %l %F %d %f %l %F\n",
2623 1, 1.2, 3LL, LONG_DOUBLE_LITERAL(4.5), 6, 7.8, 9LL, LONG_DOUBLE_LITERAL(0.1));
2624 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f\n",
2625 1, 2, 3, 4, 5, 6, 7, 8,
2626 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8);
2627 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f\n",
2628 1, 2, 3, 4, 5, 6, 7, 8,
2629 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0);
2630 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2631 "%l %l %f %f\n",
2632 1, 2, 3, 4, 5, 6, 7, 8,
2633 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2634 1234567891234LL, 987654321986LL,
2635 42.0, 43.0);
2636 vprintf1("%F %d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2637 "%l %l %f %f\n",
2638 ld, 1, 2, 3, 4, 5, 6, 7, 8,
2639 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2640 1234567891234LL, 987654321986LL,
2641 42.0, 43.0);
2642 vprintf1("%d %d %d %d %d %d %d %d %F\n",
2643 1, 2, 3, 4, 5, 6, 7, 8, ld);
2644 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2645 "%l %l %f %f %F\n",
2646 1, 2, 3, 4, 5, 6, 7, 8,
2647 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2648 1234567891234LL, 987654321986LL,
2649 42.0, 43.0, ld);
2650 vprintf1("%d %d %d %d %d %d %d %d %f %f %f %f %f %f %f %f %f %f "
2651 "%F %l %l %f %f %F\n",
2652 1, 2, 3, 4, 5, 6, 7, 8,
2653 0.1, 1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0,
2654 ld, 1234567891234LL, 987654321986LL,
2655 42.0, 43.0, ld);
2657 bob.profile = 42;
2658 stdarg_for_struct(bob, bob, bob, bob.profile);
2659 stdarg_for_libc("stdarg_for_libc: %s %.2f %d\n", "string", 1.23, 456);
2662 void whitespace_test(void)
2664 char *str;
2666 \f\v #if 1
2667 pri\
2668 ntf("whitspace:\n");\f\v
2669 #endif
2670 pf("N=%d\n", 2);
2672 #ifdef CORRECT_CR_HANDLING
2673 pri\
2674 ntf("aaa=%d\n", 3);
2675 #endif
2677 pri\
2679 ntf("min=%d\n", 4);
2681 #ifdef ACCEPT_CR_IN_STRINGS
2682 printf("len1=%d\n", strlen("
2683 "));
2684 #ifdef CORRECT_CR_HANDLING
2685 str = "
2687 printf("len1=%d str[0]=%d\n", strlen(str), str[0]);
2688 #endif
2689 printf("len1=%d\n", strlen(" a
2690 "));
2691 #endif /* ACCEPT_CR_IN_STRINGS */
2694 int reltab[3] = { 1, 2, 3 };
2696 int *rel1 = &reltab[1];
2697 int *rel2 = &reltab[2];
2699 #ifdef _WIN64
2700 void relocation_test(void) {}
2701 #else
2702 void getmyaddress(void)
2704 printf("in getmyaddress\n");
2707 #ifdef __LP64__
2708 long __pa_symbol(void)
2710 /* This 64bit constant was handled incorrectly, it was used as addend
2711 (which can hold 64bit just fine) in connection with a symbol,
2712 and TCC generates wrong code for that (displacements are 32bit only).
2713 This effectively is "+ 0x80000000", and if addresses of globals
2714 are below 2GB the result should be a number without high 32 bits set. */
2715 return ((long)(((unsigned long)(&rel1))) - (0xffffffff80000000UL));
2717 #endif
2719 unsigned long theaddress = (unsigned long)getmyaddress;
2720 void relocation_test(void)
2722 void (*fptr)(void) = (void (*)(void))theaddress;
2723 printf("*rel1=%d\n", *rel1);
2724 printf("*rel2=%d\n", *rel2);
2725 fptr();
2726 #ifdef __LP64__
2727 printf("pa_symbol=0x%lx\n", __pa_symbol() >> 63);
2728 #endif
2730 #endif
2732 void old_style_f(a,b,c)
2733 int a, b;
2734 double c;
2736 printf("a=%d b=%d b=%f\n", a, b, c);
2739 void decl_func1(int cmpfn())
2741 printf("cmpfn=%lx\n", (long)cmpfn);
2744 void decl_func2(cmpfn)
2745 int cmpfn();
2747 printf("cmpfn=%lx\n", (long)cmpfn);
2750 void old_style_function(void)
2752 old_style_f((void *)1, 2, 3.0);
2753 decl_func1(NULL);
2754 decl_func2(NULL);
2757 void alloca_test()
2759 #if defined __i386__ || defined __x86_64__ || defined __arm__
2760 char *p = alloca(16);
2761 strcpy(p,"123456789012345");
2762 printf("alloca: p is %s\n", p);
2763 char *demo = "This is only a test.\n";
2764 /* Test alloca embedded in a larger expression */
2765 printf("alloca: %s\n", strcpy(alloca(strlen(demo)+1),demo) );
2766 #endif
2769 void *bounds_checking_is_enabled()
2771 char ca[10], *cp = ca-1;
2772 return (ca != cp + 1) ? cp : NULL;
2775 typedef int constant_negative_array_size_as_compile_time_assertion_idiom[(1 ? 2 : 0) - 1];
2777 void c99_vla_test(int size1, int size2)
2779 #if defined __i386__ || defined __x86_64__
2780 int size = size1 * size2;
2781 int tab1[size][2], tab2[10][2];
2782 void *tab1_ptr, *tab2_ptr, *bad_ptr;
2784 /* "size" should have been 'captured' at tab1 declaration,
2785 so modifying it should have no effect on VLA behaviour. */
2786 size = size-1;
2788 printf("Test C99 VLA 1 (sizeof): ");
2789 printf("%s\n", (sizeof tab1 == size1 * size2 * 2 * sizeof(int)) ? "PASSED" : "FAILED");
2790 tab1_ptr = tab1;
2791 tab2_ptr = tab2;
2792 printf("Test C99 VLA 2 (ptrs subtract): ");
2793 printf("%s\n", (tab2 - tab1 == (tab2_ptr - tab1_ptr) / (sizeof(int) * 2)) ? "PASSED" : "FAILED");
2794 printf("Test C99 VLA 3 (ptr add): ");
2795 printf("%s\n", &tab1[5][1] == (tab1_ptr + (5 * 2 + 1) * sizeof(int)) ? "PASSED" : "FAILED");
2796 printf("Test C99 VLA 4 (ptr access): ");
2797 tab1[size1][1] = 42;
2798 printf("%s\n", (*((int *) (tab1_ptr + (size1 * 2 + 1) * sizeof(int))) == 42) ? "PASSED" : "FAILED");
2800 printf("Test C99 VLA 5 (bounds checking (might be disabled)): ");
2801 if (bad_ptr = bounds_checking_is_enabled()) {
2802 int *t1 = &tab1[size1 * size2 - 1][3];
2803 int *t2 = &tab2[9][3];
2804 printf("%s ", bad_ptr == t1 ? "PASSED" : "FAILED");
2805 printf("%s ", bad_ptr == t2 ? "PASSED" : "FAILED");
2807 char*c1 = 1 + sizeof(tab1) + (char*)tab1;
2808 char*c2 = 1 + sizeof(tab2) + (char*)tab2;
2809 printf("%s ", bad_ptr == c1 ? "PASSED" : "FAILED");
2810 printf("%s ", bad_ptr == c2 ? "PASSED" : "FAILED");
2812 int *i1 = tab1[-1];
2813 int *i2 = tab2[-1];
2814 printf("%s ", bad_ptr == i1 ? "PASSED" : "FAILED");
2815 printf("%s ", bad_ptr == i2 ? "PASSED" : "FAILED");
2817 int *x1 = tab1[size1 * size2 + 1];
2818 int *x2 = tab2[10 + 1];
2819 printf("%s ", bad_ptr == x1 ? "PASSED" : "FAILED");
2820 printf("%s ", bad_ptr == x2 ? "PASSED" : "FAILED");
2821 } else {
2822 printf("PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED ");
2824 printf("\n");
2825 #endif
2828 #ifndef __TINYC__
2829 typedef __SIZE_TYPE__ uintptr_t;
2830 #endif
2832 void sizeof_test(void)
2834 int a;
2835 int **ptr;
2837 printf("sizeof(int) = %d\n", sizeof(int));
2838 printf("sizeof(unsigned int) = %d\n", sizeof(unsigned int));
2839 printf("sizeof(long) = %d\n", sizeof(long));
2840 printf("sizeof(unsigned long) = %d\n", sizeof(unsigned long));
2841 printf("sizeof(short) = %d\n", sizeof(short));
2842 printf("sizeof(unsigned short) = %d\n", sizeof(unsigned short));
2843 printf("sizeof(char) = %d\n", sizeof(char));
2844 printf("sizeof(unsigned char) = %d\n", sizeof(unsigned char));
2845 printf("sizeof(func) = %d\n", sizeof sizeof_test());
2846 a = 1;
2847 printf("sizeof(a++) = %d\n", sizeof a++);
2848 printf("a=%d\n", a);
2849 ptr = NULL;
2850 printf("sizeof(**ptr) = %d\n", sizeof (**ptr));
2852 /* The type of sizeof should be as large as a pointer, actually
2853 it should be size_t. */
2854 printf("sizeof(sizeof(int) = %d\n", sizeof(sizeof(int)));
2855 uintptr_t t = 1;
2856 uintptr_t t2;
2857 /* Effectively <<32, but defined also on 32bit machines. */
2858 t <<= 16;
2859 t <<= 16;
2860 t++;
2861 /* This checks that sizeof really can be used to manipulate
2862 uintptr_t objects, without truncation. */
2863 t2 = t & -sizeof(uintptr_t);
2864 printf ("%lu %lu\n", t, t2);
2866 /* some alignof tests */
2867 printf("__alignof__(int) = %d\n", __alignof__(int));
2868 printf("__alignof__(unsigned int) = %d\n", __alignof__(unsigned int));
2869 printf("__alignof__(short) = %d\n", __alignof__(short));
2870 printf("__alignof__(unsigned short) = %d\n", __alignof__(unsigned short));
2871 printf("__alignof__(char) = %d\n", __alignof__(char));
2872 printf("__alignof__(unsigned char) = %d\n", __alignof__(unsigned char));
2873 printf("__alignof__(func) = %d\n", __alignof__ sizeof_test());
2875 /* sizes of VLAs need to be evaluated even inside sizeof: */
2876 a = 2;
2877 printf("sizeof(char[1+2*a]) = %d\n", sizeof(char[1+2*a]));
2878 /* And checking if sizeof compound literal works. Parenthesized: */
2879 printf("sizeof( (struct {int i; int j;}){4,5} ) = %d\n",
2880 sizeof( (struct {int i; int j;}){4,5} ));
2881 /* And as direct sizeof argument (as unary expression): */
2882 printf("sizeof (struct {short i; short j;}){4,5} = %d\n",
2883 sizeof (struct {short i; short j;}){4,5} );
2885 /* sizeof(x && y) should be sizeof(int), even if constant
2886 evaluating is possible. */
2887 printf("sizeof(t && 0) = %d\n", sizeof(t && 0));
2888 printf("sizeof(1 && 1) = %d\n", sizeof(1 && 1));
2889 printf("sizeof(t || 1) = %d\n", sizeof(t || 1));
2890 printf("sizeof(0 || 0) = %d\n", sizeof(0 || 0));
2893 void typeof_test(void)
2895 double a;
2896 typeof(a) b;
2897 typeof(float) c;
2899 a = 1.5;
2900 b = 2.5;
2901 c = 3.5;
2902 printf("a=%f b=%f c=%f\n", a, b, c);
2906 struct hlist_node;
2907 struct hlist_head {
2908 struct hlist_node *first, *last;
2911 void consume_ulong (unsigned long i)
2913 i = 0;
2916 void statement_expr_test(void)
2918 int a, i;
2920 /* Basic stmt expr test */
2921 a = 0;
2922 for(i=0;i<10;i++) {
2923 a += 1 +
2924 ( { int b, j;
2925 b = 0;
2926 for(j=0;j<5;j++)
2927 b += j; b;
2928 } );
2930 printf("a=%d\n", a);
2932 /* Test that symbols aren't freed prematurely.
2933 With SYM_DEBUG valgrind will show a read from a freed
2934 symbol, and tcc will show an (invalid) warning on the initialization
2935 of 'ptr' below, if symbols are popped after the stmt expr. */
2936 void *v = (void*)39;
2937 typeof(({
2938 (struct hlist_node *)v;
2939 })) x;
2940 typeof (x)
2941 ptr = (struct hlist_node *)v;
2943 /* This part used to segfault when symbols were popped prematurely.
2944 The symbols for the static local would be overwritten with
2945 helper symbols from the pre-processor expansions in between. */
2946 #define some_attr __attribute__((aligned(1)))
2947 #define tps(str) ({ \
2948 static const char *t some_attr = str; \
2949 t; \
2951 printf ("stmtexpr: %s %s\n",
2952 tps("somerandomlongstring"),
2953 tps("anotherlongstring"));
2955 /* Test that the three decls of 't' don't interact. */
2956 int t = 40;
2957 int b = ({ int t = 41; t; });
2958 int c = ({ int t = 42; t; });
2960 /* Test that aggregate return values work. */
2961 struct hlist_head h
2962 = ({
2963 typedef struct hlist_head T;
2964 long pre = 48;
2965 T t = { (void*)43, (void*)44 };
2966 long post = 49;
2969 printf ("stmtexpr: %d %d %d\n", t, b, c);
2970 printf ("stmtexpr: %ld %ld\n", (long)h.first, (long)h.last);
2972 /* Test that we can give out addresses of local labels. */
2973 consume_ulong(({ __label__ __here; __here: (unsigned long)&&__here; }));
2976 void local_label_test(void)
2978 int a;
2979 goto l1;
2981 a = 1 + ({
2982 __label__ l1, l2, l3, l4;
2983 goto l1;
2985 printf("aa1\n");
2986 goto l3;
2988 printf("aa3\n");
2989 goto l4;
2991 printf("aa2\n");
2992 goto l2;
2993 l3:;
2996 printf("a=%d\n", a);
2997 return;
2999 printf("bb1\n");
3000 goto l2;
3002 printf("bb2\n");
3003 goto l4;
3006 /* inline assembler test */
3007 #if defined(__i386__) || defined(__x86_64__)
3009 /* from linux kernel */
3010 static char * strncat1(char * dest,const char * src,size_t count)
3012 long d0, d1, d2, d3;
3013 __asm__ __volatile__(
3014 "repne\n\t"
3015 "scasb\n\t"
3016 "dec %1\n\t"
3017 "mov %8,%3\n"
3018 "1:\tdec %3\n\t"
3019 "js 2f\n\t"
3020 "lodsb\n\t"
3021 "stosb\n\t"
3022 "testb %%al,%%al\n\t"
3023 "jne 1b\n"
3024 "2:\txor %2,%2\n\t"
3025 "stosb"
3026 : "=&S" (d0), "=&D" (d1), "=&a" (d2), "=&c" (d3)
3027 : "0" (src),"1" (dest),"2" (0),"3" (0xffffffff), "g" (count)
3028 : "memory");
3029 return dest;
3032 static char * strncat2(char * dest,const char * src,size_t count)
3034 long d0, d1, d2, d3;
3035 __asm__ __volatile__(
3036 "repne scasb\n\t" /* one-line repne prefix + string op */
3037 "dec %1\n\t"
3038 "mov %8,%3\n"
3039 "1:\tdec %3\n\t"
3040 "js 2f\n\t"
3041 "lodsb\n\t"
3042 "stosb\n\t"
3043 "testb %%al,%%al\n\t"
3044 "jne 1b\n"
3045 "2:\txor %2,%2\n\t"
3046 "stosb"
3047 : "=&S" (d0), "=&D" (d1), "=&a" (d2), "=&c" (d3)
3048 : "0" (src),"1" (dest),"2" (0),"3" (0xffffffff), "g" (count)
3049 : "memory");
3050 return dest;
3053 static inline void * memcpy1(void * to, const void * from, size_t n)
3055 long d0, d1, d2;
3056 __asm__ __volatile__(
3057 "rep ; movsl\n\t"
3058 "testb $2,%b4\n\t"
3059 "je 1f\n\t"
3060 "movsw\n"
3061 "1:\ttestb $1,%b4\n\t"
3062 "je 2f\n\t"
3063 "movsb\n"
3064 "2:"
3065 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
3066 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
3067 : "memory");
3068 return (to);
3071 static inline void * memcpy2(void * to, const void * from, size_t n)
3073 long d0, d1, d2;
3074 __asm__ __volatile__(
3075 "rep movsl\n\t" /* one-line rep prefix + string op */
3076 "testb $2,%b4\n\t"
3077 "je 1f\n\t"
3078 "movsw\n"
3079 "1:\ttestb $1,%b4\n\t"
3080 "je 2f\n\t"
3081 "movsb\n"
3082 "2:"
3083 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
3084 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
3085 : "memory");
3086 return (to);
3089 static __inline__ void sigaddset1(unsigned int *set, int _sig)
3091 __asm__("btsl %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc");
3094 static __inline__ void sigdelset1(unsigned int *set, int _sig)
3096 asm("btrl %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc", "flags");
3099 static __inline__ __const__ unsigned int swab32(unsigned int x)
3101 __asm__("xchgb %b0,%h0\n\t" /* swap lower bytes */
3102 "rorl $16,%0\n\t" /* swap words */
3103 "xchgb %b0,%h0" /* swap higher bytes */
3104 :"=" "q" (x)
3105 : "0" (x));
3106 return x;
3109 static __inline__ unsigned long long mul64(unsigned int a, unsigned int b)
3111 unsigned long long res;
3112 #ifdef __x86_64__
3113 /* Using the A constraint is wrong (it means rdx:rax, which is too large)
3114 but still test the 32bit->64bit mull. */
3115 unsigned int resh, resl;
3116 __asm__("mull %2" : "=a" (resl), "=d" (resh) : "a" (a), "r" (b));
3117 res = ((unsigned long long)resh << 32) | resl;
3118 #else
3119 __asm__("mull %2" : "=A" (res) : "a" (a), "r" (b));
3120 #endif
3121 return res;
3124 static __inline__ unsigned long long inc64(unsigned long long a)
3126 unsigned long long res;
3127 #ifdef __x86_64__
3128 /* Using the A constraint is wrong, and increments are tested
3129 elsewhere. */
3130 res = a + 1;
3131 #else
3132 __asm__("addl $1, %%eax ; adcl $0, %%edx" : "=A" (res) : "A" (a));
3133 #endif
3134 return res;
3137 struct struct123 {
3138 int a;
3139 int b;
3141 struct struct1231 {
3142 unsigned long addr;
3145 unsigned long mconstraint_test(struct struct1231 *r)
3147 unsigned long ret;
3148 unsigned int a[2];
3149 a[0] = 0;
3150 __asm__ volatile ("lea %2,%0; movl 4(%0),%k0; addl %2,%k0; movl $51,%2; movl $52,4%2; movl $63,%1"
3151 : "=&r" (ret), "=m" (a)
3152 : "m" (*(struct struct123 *)r->addr));
3153 return ret + a[0];
3156 #ifdef __x86_64__
3157 int fls64(unsigned long long x)
3159 int bitpos = -1;
3160 asm("bsrq %1,%q0"
3161 : "+r" (bitpos)
3162 : "rm" (x));
3163 return bitpos + 1;
3165 #endif
3167 void other_constraints_test(void)
3169 unsigned long ret;
3170 int var;
3171 #ifndef _WIN64
3172 __asm__ volatile ("mov %P1,%0" : "=r" (ret) : "p" (&var));
3173 printf ("oc1: %d\n", ret == (unsigned long)&var);
3174 #endif
3177 #ifndef _WIN32
3178 /* Test global asm blocks playing with aliases. */
3179 void base_func(void)
3181 printf ("asmc: base\n");
3184 extern void override_func1 (void);
3185 extern void override_func2 (void);
3187 asm(".weak override_func1\n.set override_func1, base_func");
3188 asm(".set override_func1, base_func");
3189 asm(".set override_func2, base_func");
3191 void override_func2 (void)
3193 printf ("asmc: override2\n");
3196 /* This checks a construct used by the linux kernel to encode
3197 references to strings by PC relative references. */
3198 extern int bug_table[] __attribute__((section("__bug_table")));
3199 char * get_asm_string (void)
3201 extern int some_symbol;
3202 asm volatile (".globl some_symbol\n"
3203 "jmp .+6\n"
3204 "1:\n"
3205 "some_symbol: .long 0\n"
3206 ".pushsection __bug_table, \"a\"\n"
3207 ".globl bug_table\n"
3208 "bug_table:\n"
3209 /* The first entry (1b-2b) is unused in this test,
3210 but we include it to check if cross-section
3211 PC-relative references work. */
3212 "2:\t.long 1b - 2b, %c0 - 2b\n"
3213 ".popsection\n" : : "i" ("A string"));
3214 char * str = ((char*)bug_table) + bug_table[1];
3215 return str;
3218 /* This checks another constructs with local labels. */
3219 extern unsigned char alld_stuff[];
3220 asm(".data\n"
3221 ".byte 41\n"
3222 "alld_stuff:\n"
3223 "661:\n"
3224 ".byte 42\n"
3225 "662:\n"
3226 ".pushsection .data.ignore\n"
3227 ".long 661b - .\n" /* This reference to 661 generates an external sym
3228 which shouldn't somehow overwrite the offset that's
3229 already determined for it. */
3230 ".popsection\n"
3231 ".byte 662b - 661b\n" /* So that this value is undeniably 1. */);
3233 void asm_local_label_diff (void)
3235 printf ("asm_local_label_diff: %d %d\n", alld_stuff[0], alld_stuff[1]);
3238 /* This checks that static local variables are available from assembler. */
3239 void asm_local_statics (void)
3241 static int localint = 41;
3242 asm("incl %0" : "+m" (localint));
3243 printf ("asm_local_statics: %d\n", localint);
3245 #endif
3247 static
3248 unsigned int set;
3250 void fancy_copy (unsigned *in, unsigned *out)
3252 asm volatile ("" : "=r" (*out) : "0" (*in));
3255 void fancy_copy2 (unsigned *in, unsigned *out)
3257 asm volatile ("mov %0,(%1)" : : "r" (*in), "r" (out) : "memory");
3260 #if defined __x86_64__ && !defined _WIN64
3261 void clobber_r12(void)
3263 asm volatile("mov $1, %%r12" ::: "r12");
3265 #endif
3267 void test_high_clobbers(void)
3269 #if defined __x86_64__ && !defined _WIN64
3270 register long val asm("r12");
3271 long val2;
3272 /* This tests if asm clobbers correctly save/restore callee saved
3273 registers if they are clobbered and if it's the high 8 x86-64
3274 registers. This is fragile for GCC as the constraints do not
3275 correctly capture the data flow, but good enough for us. */
3276 asm volatile("mov $0x4542, %%r12" : "=r" (val):: "memory");
3277 clobber_r12();
3278 asm volatile("mov %%r12, %0" : "=r" (val2) : "r" (val): "memory");
3279 printf("asmhc: 0x%x\n", val2);
3280 #endif
3283 static long cpu_number;
3284 void trace_console(long len, long len2)
3286 #ifdef __x86_64__
3287 /* This generated invalid code when the emission of the switch
3288 table isn't disabled. The asms are necessary to show the bug,
3289 normal statements don't work (they need to generate some code
3290 even under nocode_wanted, which normal statements don't do,
3291 but asms do). Also at least these number of cases is necessary
3292 to generate enough "random" bytes. They ultimately are enough
3293 to create invalid instruction patterns to which the first
3294 skip-to-decision-table jump jumps. If decision table emission
3295 is disabled all of this is no problem.
3297 It also is necessary that the switches are in a statement expression
3298 (which has the property of not being enterable from outside. no
3299 matter what). */
3300 if (0
3303 long pscr_ret__;
3304 switch(len) {
3305 case 4:
3307 long pfo_ret__;
3308 switch (len2) {
3309 case 8: printf("bla"); pfo_ret__ = 42; break;
3311 pscr_ret__ = pfo_ret__;
3313 break;
3314 case 8:
3316 long pfo_ret__;
3317 switch (len2) {
3318 case 1:asm("movq %1,%0": "=r" (pfo_ret__) : "m" (cpu_number)); break;
3319 case 2:asm("movq %1,%0": "=r" (pfo_ret__) : "m" (cpu_number)); break;
3320 case 4:asm("movq %1,%0": "=r" (pfo_ret__) : "m" (cpu_number)); break;
3321 case 8:asm("movq %1,%0": "=r" (pfo_ret__) : "m" (cpu_number)); break;
3322 default: printf("impossible\n");
3324 pscr_ret__ = pfo_ret__;
3326 break;
3328 pscr_ret__;
3331 printf("huh?\n");
3333 #endif
3336 void test_asm_dead_code(void)
3338 long rdi;
3339 /* Try to make sure that xdi contains a zero, and hence will
3340 lead to a segfault if the next asm is evaluated without
3341 arguments being set up. */
3342 asm volatile ("" : "=D" (rdi) : "0" (0));
3343 (void)sizeof (({
3344 int var;
3345 /* This shouldn't trigger a segfault, either the argument
3346 registers need to be set up and the asm emitted despite
3347 this being in an unevaluated context, or both the argument
3348 setup _and_ the asm emission need to be suppressed. The latter
3349 is better. Disabling asm code gen when suppression is on
3350 also fixes the above trace_console bug, but that came earlier
3351 than asm suppression. */
3352 asm volatile ("movl $0,(%0)" : : "D" (&var) : "memory");
3353 var;
3354 }));
3357 void test_asm_call(void)
3359 #if defined __x86_64__ && !defined _WIN64
3360 static char str[] = "PATH";
3361 char *s;
3362 /* This tests if a reference to an undefined symbol from an asm
3363 block, which isn't otherwise referenced in this file, is correctly
3364 regarded as global symbol, so that it's resolved by other object files
3365 or libraries. We chose getenv here, which isn't used anywhere else
3366 in this file. (If we used e.g. printf, which is used we already
3367 would have a global symbol entry, not triggering the bug which is
3368 tested here). */
3369 /* two pushes so stack remains aligned */
3370 asm volatile ("push %%rdi; push %%rdi; mov %0, %%rdi;"
3371 #if 1 && !defined(__TINYC__) && (defined(__PIC__) || defined(__PIE__))
3372 "call getenv@plt;"
3373 #else
3374 "call getenv;"
3375 #endif
3376 "pop %%rdi; pop %%rdi"
3377 : "=a" (s) : "r" (str));
3378 printf("asmd: %s\n", s);
3379 #endif
3382 #if defined __x86_64__
3383 # define RX "(%rip)"
3384 #else
3385 # define RX
3386 #endif
3388 void asm_dot_test(void)
3390 int x;
3391 for (x = 1;; ++x) {
3392 int r = x;
3393 switch (x) {
3394 case 1:
3395 asm(".text; lea S"RX",%eax; lea ."RX",%ecx; sub %ecx,%eax; S=.; jmp p0");
3396 case 2:
3397 asm(".text; jmp .+6; .int 123; mov .-4"RX",%eax; jmp p0");
3398 case 3:
3399 asm(".data; Y=.; .int 999; X=Y; .int 456; X=.-4");
3400 asm(".text; mov X"RX",%eax; jmp p0");
3401 case 4:
3402 asm(".data; X=.; .int 789; Y=.; .int 999");
3403 asm(".text; mov X"RX",%eax; X=Y; jmp p0");
3404 case 0:
3405 asm(".text; p0=.; mov %%eax,%0;" : "=m"(r)); break;
3407 if (r == x)
3408 break;
3409 printf("asm_dot_test %d: %d\n", x, r);
3413 void asm_test(void)
3415 char buf[128];
3416 unsigned int val, val2;
3417 struct struct123 s1;
3418 struct struct1231 s2 = { (unsigned long)&s1 };
3419 /* Hide the outer base_func, but check later that the inline
3420 asm block gets the outer one. */
3421 int base_func = 42;
3422 void override_func3 (void);
3423 unsigned long asmret;
3424 #ifdef BOOL_ISOC99
3425 _Bool somebool;
3426 #endif
3427 register int regvar asm("%esi");
3429 printf("inline asm:\n");
3431 // parse 0x1E-1 as 3 tokens in asm mode
3432 asm volatile ("mov $0x1E-1,%eax");
3434 /* test the no operand case */
3435 asm volatile ("xorl %eax, %eax");
3437 memcpy1(buf, "hello", 6);
3438 strncat1(buf, " worldXXXXX", 3);
3439 printf("%s\n", buf);
3441 memcpy2(buf, "hello", 6);
3442 strncat2(buf, " worldXXXXX", 3);
3443 printf("%s\n", buf);
3445 /* 'A' constraint test */
3446 printf("mul64=0x%Lx\n", mul64(0x12345678, 0xabcd1234));
3447 printf("inc64=0x%Lx\n", inc64(0x12345678ffffffff));
3449 s1.a = 42;
3450 s1.b = 43;
3451 printf("mconstraint: %d", mconstraint_test(&s2));
3452 printf(" %d %d\n", s1.a, s1.b);
3453 other_constraints_test();
3454 set = 0xff;
3455 sigdelset1(&set, 2);
3456 sigaddset1(&set, 16);
3457 /* NOTE: we test here if C labels are correctly restored after the
3458 asm statement */
3459 goto label1;
3460 label2:
3461 __asm__("btsl %1,%0" : "=m"(set) : "Ir"(20) : "cc");
3462 printf("set=0x%x\n", set);
3463 val = 0x01020304;
3464 printf("swab32(0x%08x) = 0x%0x\n", val, swab32(val));
3465 #ifndef _WIN32
3466 override_func1();
3467 override_func2();
3468 /* The base_func ref from the following inline asm should find
3469 the global one, not the local decl from this function. */
3470 asm volatile(".weak override_func3\n.set override_func3, base_func");
3471 override_func3();
3472 printf("asmstr: %s\n", get_asm_string());
3473 asm_local_label_diff();
3474 asm_local_statics();
3475 #endif
3476 /* Check that we can also load structs of appropriate layout
3477 into registers. */
3478 asm volatile("" : "=r" (asmret) : "0"(s2));
3479 if (asmret != s2.addr)
3480 printf("asmstr: failed\n");
3481 #ifdef BOOL_ISOC99
3482 /* Check that the typesize correctly sets the register size to
3483 8 bit. */
3484 asm volatile("cmp %1,%2; sete %0" : "=a"(somebool) : "r"(1), "r"(2));
3485 if (!somebool)
3486 printf("asmbool: failed\n");
3487 #endif
3488 val = 43;
3489 fancy_copy (&val, &val2);
3490 printf ("fancycpy(%d)=%d\n", val, val2);
3491 val = 44;
3492 fancy_copy2 (&val, &val2);
3493 printf ("fancycpy2(%d)=%d\n", val, val2);
3494 asm volatile ("mov $0x4243, %%esi" : "=r" (regvar));
3495 printf ("regvar=%x\n", regvar);
3496 test_high_clobbers();
3497 trace_console(8, 8);
3498 test_asm_dead_code();
3499 test_asm_call();
3500 asm_dot_test();
3501 return;
3502 label1:
3503 goto label2;
3506 #else
3508 void asm_test(void)
3512 #endif
3514 #define COMPAT_TYPE(type1, type2) \
3516 printf("__builtin_types_compatible_p(%s, %s) = %d\n", #type1, #type2, \
3517 __builtin_types_compatible_p (type1, type2));\
3520 int constant_p_var;
3522 void builtin_test(void)
3524 short s;
3525 int i;
3526 long long ll;
3527 #if GCC_MAJOR >= 3
3528 COMPAT_TYPE(int, int);
3529 COMPAT_TYPE(int, unsigned int);
3530 COMPAT_TYPE(int, char);
3531 COMPAT_TYPE(int, const int);
3532 COMPAT_TYPE(int, volatile int);
3533 COMPAT_TYPE(int *, int *);
3534 COMPAT_TYPE(int *, void *);
3535 COMPAT_TYPE(int *, const int *);
3536 COMPAT_TYPE(char *, unsigned char *);
3537 COMPAT_TYPE(char *, signed char *);
3538 COMPAT_TYPE(char *, char *);
3539 /* space is needed because tcc preprocessor introduces a space between each token */
3540 COMPAT_TYPE(char * *, void *);
3541 #endif
3542 printf("res = %d\n", __builtin_constant_p(1));
3543 printf("res = %d\n", __builtin_constant_p(1 + 2));
3544 printf("res = %d\n", __builtin_constant_p(&constant_p_var));
3545 printf("res = %d\n", __builtin_constant_p(constant_p_var));
3546 printf("res = %d\n", __builtin_constant_p(100000 / constant_p_var));
3547 s = 1;
3548 ll = 2;
3549 i = __builtin_choose_expr (1 != 0, ll, s);
3550 printf("bce: %d\n", i);
3551 i = __builtin_choose_expr (1 != 1, ll, s);
3552 printf("bce: %d\n", i);
3553 i = sizeof (__builtin_choose_expr (1, ll, s));
3554 printf("bce: %d\n", i);
3555 i = sizeof (__builtin_choose_expr (0, ll, s));
3556 printf("bce: %d\n", i);
3558 //printf("bera: %p\n", __builtin_extract_return_addr((void*)43));
3561 #ifndef _WIN32
3562 extern int __attribute__((weak)) weak_f1(void);
3563 extern int __attribute__((weak)) weak_f2(void);
3564 extern int weak_f3(void);
3565 extern int __attribute__((weak)) weak_v1;
3566 extern int __attribute__((weak)) weak_v2;
3567 extern int weak_v3;
3569 extern int (*weak_fpa)() __attribute__((weak));
3570 extern int __attribute__((weak)) (*weak_fpb)();
3571 extern __attribute__((weak)) int (*weak_fpc)();
3573 extern int weak_asm_f1(void) asm("weak_asm_f1x") __attribute((weak));
3574 extern int __attribute((weak)) weak_asm_f2(void) asm("weak_asm_f2x") ;
3575 extern int __attribute((weak)) weak_asm_f3(void) asm("weak_asm_f3x") __attribute((weak));
3576 extern int weak_asm_v1 asm("weak_asm_v1x") __attribute((weak));
3577 extern int __attribute((weak)) weak_asm_v2 asm("weak_asm_v2x") ;
3578 extern int __attribute((weak)) weak_asm_v3(void) asm("weak_asm_v3x") __attribute((weak));
3580 static const size_t dummy = 0;
3581 extern __typeof(dummy) weak_dummy1 __attribute__((weak, alias("dummy")));
3582 extern __typeof(dummy) __attribute__((weak, alias("dummy"))) weak_dummy2;
3583 extern __attribute__((weak, alias("dummy"))) __typeof(dummy) weak_dummy3;
3585 int some_lib_func(void);
3586 int dummy_impl_of_slf(void) { return 444; }
3587 int some_lib_func(void) __attribute__((weak, alias("dummy_impl_of_slf")));
3589 int weak_toolate() __attribute__((weak));
3590 int weak_toolate() { return 0; }
3592 void __attribute__((weak)) weak_test(void)
3594 printf("weak_f1=%d\n", weak_f1 ? weak_f1() : 123);
3595 printf("weak_f2=%d\n", weak_f2 ? weak_f2() : 123);
3596 printf("weak_f3=%d\n", weak_f3 ? weak_f3() : 123);
3597 printf("weak_v1=%d\n",&weak_v1 ? weak_v1 : 123);
3598 printf("weak_v2=%d\n",&weak_v2 ? weak_v2 : 123);
3599 printf("weak_v3=%d\n",&weak_v3 ? weak_v3 : 123);
3601 printf("weak_fpa=%d\n",&weak_fpa ? weak_fpa() : 123);
3602 printf("weak_fpb=%d\n",&weak_fpb ? weak_fpb() : 123);
3603 printf("weak_fpc=%d\n",&weak_fpc ? weak_fpc() : 123);
3605 printf("weak_asm_f1=%d\n", weak_asm_f1 != NULL);
3606 printf("weak_asm_f2=%d\n", weak_asm_f2 != NULL);
3607 printf("weak_asm_f3=%d\n", weak_asm_f3 != NULL);
3608 printf("weak_asm_v1=%d\n",&weak_asm_v1 != NULL);
3609 printf("weak_asm_v2=%d\n",&weak_asm_v2 != NULL);
3610 printf("weak_asm_v3=%d\n",&weak_asm_v3 != NULL);
3611 printf("some_lib_func=%d\n", &some_lib_func ? some_lib_func() : 0);
3614 int __attribute__((weak)) weak_f2() { return 222; }
3615 int __attribute__((weak)) weak_f3() { return 333; }
3616 int __attribute__((weak)) weak_v2 = 222;
3617 int __attribute__((weak)) weak_v3 = 333;
3618 #endif
3620 void const_func(const int a)
3624 void const_warn_test(void)
3626 const_func(1);
3629 struct condstruct {
3630 int i;
3633 int getme (struct condstruct *s, int i)
3635 int i1 = (i == 0 ? 0 : s)->i;
3636 int i2 = (i == 0 ? s : 0)->i;
3637 int i3 = (i == 0 ? (void*)0 : s)->i;
3638 int i4 = (i == 0 ? s : (void*)0)->i;
3639 return i1 + i2 + i3 + i4;
3642 struct global_data
3644 int a[40];
3645 int *b[40];
3648 struct global_data global_data;
3650 int global_data_getstuff (int *, int);
3652 void global_data_callit (int i)
3654 *global_data.b[i] = global_data_getstuff (global_data.b[i], 1);
3657 int global_data_getstuff (int *p, int i)
3659 return *p + i;
3662 void global_data_test (void)
3664 global_data.a[0] = 42;
3665 global_data.b[0] = &global_data.a[0];
3666 global_data_callit (0);
3667 printf ("%d\n", global_data.a[0]);
3670 struct cmpcmpS
3672 unsigned char fill : 3;
3673 unsigned char b1 : 1;
3674 unsigned char b2 : 1;
3675 unsigned char fill2 : 3;
3678 int glob1, glob2, glob3;
3680 void compare_comparisons (struct cmpcmpS *s)
3682 if (s->b1 != (glob1 == glob2)
3683 || (s->b2 != (glob1 == glob3)))
3684 printf ("comparing comparisons broken\n");
3687 void cmp_comparison_test(void)
3689 struct cmpcmpS s;
3690 s.b1 = 1;
3691 glob1 = 42; glob2 = 42;
3692 s.b2 = 0;
3693 glob3 = 43;
3694 compare_comparisons (&s);
3697 int fcompare (double a, double b, int code)
3699 switch (code) {
3700 case 0: return a == b;
3701 case 1: return a != b;
3702 case 2: return a < b;
3703 case 3: return a >= b;
3704 case 4: return a > b;
3705 case 5: return a <= b;
3709 void math_cmp_test(void)
3711 double nan = 0.0/0.0;
3712 double one = 1.0;
3713 double two = 2.0;
3714 int comp = 0;
3715 #define bug(a,b,op,iop,part) printf("Test broken: %s %s %s %s %d\n", #a, #b, #op, #iop, part)
3717 /* This asserts that "a op b" is _not_ true, but "a iop b" is true.
3718 And it does this in various ways so that all code generation paths
3719 are checked (generating inverted tests, or non-inverted tests, or
3720 producing a 0/1 value without jumps (that's done in the fcompare
3721 function). */
3722 #define FCMP(a,b,op,iop,code) \
3723 if (fcompare (a,b,code)) \
3724 bug (a,b,op,iop,1); \
3725 if (a op b) \
3726 bug (a,b,op,iop,2); \
3727 if (a iop b) \
3729 else \
3730 bug (a,b,op,iop,3); \
3731 if ((a op b) || comp) \
3732 bug (a,b,op,iop,4); \
3733 if ((a iop b) || comp) \
3735 else \
3736 bug (a,b,op,iop,5);
3738 /* Equality tests. */
3739 FCMP(nan, nan, ==, !=, 0);
3740 FCMP(one, two, ==, !=, 0);
3741 FCMP(one, one, !=, ==, 1);
3742 /* Non-equality is a bit special. */
3743 if (!fcompare (nan, nan, 1))
3744 bug (nan, nan, !=, ==, 6);
3746 /* Relational tests on numbers. */
3747 FCMP(two, one, <, >=, 2);
3748 FCMP(one, two, >=, <, 3);
3749 FCMP(one, two, >, <=, 4);
3750 FCMP(two, one, <=, >, 5);
3752 /* Relational tests on NaNs. Note that the inverse op here is
3753 always !=, there's no operator in C that is equivalent to !(a < b),
3754 when NaNs are involved, same for the other relational ops. */
3755 FCMP(nan, nan, <, !=, 2);
3756 FCMP(nan, nan, >=, !=, 3);
3757 FCMP(nan, nan, >, !=, 4);
3758 FCMP(nan, nan, <=, !=, 5);
3761 double get100 () { return 100.0; }
3763 void callsave_test(void)
3765 #if defined __i386__ || defined __x86_64__ || defined __arm__
3766 int i, s; double *d; double t;
3767 s = sizeof (double);
3768 printf ("callsavetest: %d\n", s);
3769 d = alloca (sizeof(double));
3770 d[0] = 10.0;
3771 /* x86-64 had a bug were the next call to get100 would evict
3772 the lvalue &d[0] as VT_LLOCAL, and the reload would be done
3773 in int type, not pointer type. When alloca returns a pointer
3774 with the high 32 bit set (which is likely on x86-64) the access
3775 generates a segfault. */
3776 i = d[0] > get100 ();
3777 printf ("%d\n", i);
3778 #endif
3782 void bfa3(ptrdiff_t str_offset)
3784 printf("bfa3: %s\n", (char *)__builtin_frame_address(3) + str_offset);
3786 void bfa2(ptrdiff_t str_offset)
3788 printf("bfa2: %s\n", (char *)__builtin_frame_address(2) + str_offset);
3789 bfa3(str_offset);
3791 void bfa1(ptrdiff_t str_offset)
3793 printf("bfa1: %s\n", (char *)__builtin_frame_address(1) + str_offset);
3794 bfa2(str_offset);
3797 void builtin_frame_address_test(void)
3799 /* builtin_frame_address fails on ARM with gcc which make test3 fail */
3800 #ifndef __arm__
3801 char str[] = "__builtin_frame_address";
3802 char *fp0 = __builtin_frame_address(0);
3804 printf("str: %s\n", str);
3805 bfa1(str-fp0);
3806 #endif
3809 char via_volatile (char i)
3811 char volatile vi;
3812 vi = i;
3813 return vi;
3816 struct __attribute__((__packed__)) Spacked {
3817 char a;
3818 short b;
3819 int c;
3821 struct Spacked spacked;
3822 typedef struct __attribute__((__packed__)) {
3823 char a;
3824 short b;
3825 int c;
3826 } Spacked2;
3827 Spacked2 spacked2;
3828 typedef struct Spacked3_s {
3829 char a;
3830 short b;
3831 int c;
3832 } __attribute__((__packed__)) Spacked3;
3833 Spacked3 spacked3;
3834 struct gate_struct64 {
3835 unsigned short offset_low;
3836 unsigned short segment;
3837 unsigned ist : 3, zero0 : 5, type : 5, dpl : 2, p : 1;
3838 unsigned short offset_middle;
3839 unsigned offset_high;
3840 unsigned zero1;
3841 } __attribute__((packed));
3842 typedef struct gate_struct64 gate_desc;
3843 gate_desc a_gate_desc;
3844 void attrib_test(void)
3846 #ifndef _WIN32
3847 printf("attr: %d %d %d %d\n", sizeof(struct Spacked),
3848 sizeof(spacked), sizeof(Spacked2), sizeof(spacked2));
3849 printf("attr: %d %d\n", sizeof(Spacked3), sizeof(spacked3));
3850 printf("attr: %d %d\n", sizeof(gate_desc), sizeof(a_gate_desc));
3851 #endif
3853 extern __attribute__((__unused__)) char * __attribute__((__unused__)) *
3854 strange_attrib_placement (void);
3856 void * __attribute__((__unused__)) get_void_ptr (void *a)
3858 return a;
3861 /* This part checks for a bug in TOK_GET (used for inline expansion),
3862 where the large long long constant left the the high bits set for
3863 the integer constant token. */
3864 static inline
3865 int __get_order(unsigned long long size)
3867 int order;
3868 size -= 0xffff880000000000ULL; // this const left high bits set in the token
3870 struct S { int i : 1; } s; // constructed for this '1'
3872 order = size;
3873 return order;
3876 /* This just forces the above inline function to be actually emitted. */
3877 int force_get_order(unsigned long s)
3879 return __get_order(s);