2 * 'sparse' library helper routines.
4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
35 #include <sys/types.h>
42 #include "expression.h"
44 #include "linearize.h"
48 int verbose
, optimize
, optimize_size
, preprocessing
;
54 # define __GNUC_MINOR__ 95
55 # define __GNUC_PATCHLEVEL__ 0
58 int gcc_major
= __GNUC__
;
59 int gcc_minor
= __GNUC_MINOR__
;
60 int gcc_patchlevel
= __GNUC_PATCHLEVEL__
;
62 static const char *gcc_base_dir
= GCC_BASE
;
64 struct token
*skip_to(struct token
*token
, int op
)
66 while (!match_op(token
, op
) && !eof_token(token
))
71 struct token
*expect(struct token
*token
, int op
, const char *where
)
73 if (!match_op(token
, op
)) {
74 static struct token bad_token
;
75 if (token
!= &bad_token
) {
76 bad_token
.next
= token
;
77 sparse_error(token
->pos
, "Expected %s %s", show_special(op
), where
);
78 sparse_error(token
->pos
, "got %s", show_token(token
));
81 return skip_to(token
, op
);
87 unsigned int hexval(unsigned int c
)
95 retval
= c
- 'a' + 10;
98 retval
= c
- 'A' + 10;
104 static void do_warn(const char *type
, struct position pos
, const char * fmt
, va_list args
)
106 static char buffer
[512];
109 vsprintf(buffer
, fmt
, args
);
110 name
= stream_name(pos
.stream
);
112 fprintf(stderr
, "%s:%d:%d: %s%s\n",
113 name
, pos
.line
, pos
.pos
, type
, buffer
);
116 static int max_warnings
= 100;
117 static int show_info
= 1;
119 void info(struct position pos
, const char * fmt
, ...)
126 do_warn("", pos
, fmt
, args
);
130 static void do_error(struct position pos
, const char * fmt
, va_list args
)
132 static int errors
= 0;
137 /* Shut up warnings after an error */
144 fmt
= "too many errors";
148 do_warn("error: ", pos
, fmt
, args
);
152 void warning(struct position pos
, const char * fmt
, ...)
158 do_error(pos
, fmt
, args
);
168 if (!--max_warnings
) {
170 fmt
= "too many warnings";
174 do_warn("warning: ", pos
, fmt
, args
);
178 void sparse_error(struct position pos
, const char * fmt
, ...)
182 do_error(pos
, fmt
, args
);
186 void expression_error(struct expression
*expr
, const char *fmt
, ...)
190 do_error(expr
->pos
, fmt
, args
);
192 expr
->ctype
= &bad_ctype
;
195 void error_die(struct position pos
, const char * fmt
, ...)
199 do_warn("error: ", pos
, fmt
, args
);
204 void die(const char *fmt
, ...)
207 static char buffer
[512];
210 vsnprintf(buffer
, sizeof(buffer
), fmt
, args
);
213 fprintf(stderr
, "%s\n", buffer
);
217 static struct token
*pre_buffer_begin
= NULL
;
218 static struct token
*pre_buffer_end
= NULL
;
220 int Waddress_space
= 1;
223 int Wcast_truncate
= 1;
226 int Wdeclarationafterstatement
= -1;
227 int Wdefault_bitfield_sign
= 0;
228 int Wdesignated_init
= 1;
230 int Winit_cstring
= 0;
231 int Wenum_mismatch
= 1;
233 int Wnon_pointer_null
= 1;
234 int Wold_initializer
= 1;
235 int Wone_bit_signed_bitfield
= 1;
236 int Wparen_string
= 0;
237 int Wptr_subtraction_blows
= 0;
238 int Wreturn_void
= 0;
240 int Wsizeof_bool
= 0;
241 int Wtransparent_union
= 0;
244 int Wuninitialized
= 1;
245 int Wunknown_attribute
= 0;
253 static enum { STANDARD_C89
,
257 STANDARD_GNU99
, } standard
= STANDARD_GNU89
;
260 #define ARCH_M64_DEFAULT 1
262 #define ARCH_M64_DEFAULT 0
265 int arch_m64
= ARCH_M64_DEFAULT
;
266 int arch_msize_long
= 0;
268 #define CMDLINE_INCLUDE 20
269 static int cmdline_include_nr
= 0;
270 static char *cmdline_include
[CMDLINE_INCLUDE
];
273 void add_pre_buffer(const char *fmt
, ...)
277 struct token
*begin
, *end
;
281 size
= vsnprintf(buffer
, sizeof(buffer
), fmt
, args
);
283 begin
= tokenize_buffer(buffer
, size
, &end
);
284 if (!pre_buffer_begin
)
285 pre_buffer_begin
= begin
;
287 pre_buffer_end
->next
= begin
;
288 pre_buffer_end
= end
;
291 static char **handle_switch_D(char *arg
, char **next
)
293 const char *name
= arg
+ 1;
294 const char *value
= "1";
296 if (!*name
|| isspace(*name
))
297 die("argument to `-D' is missing");
304 if (isspace((unsigned char)c
) || c
== '=') {
310 add_pre_buffer("#define %s %s\n", name
, value
);
314 static char **handle_switch_E(char *arg
, char **next
)
321 static char **handle_switch_I(char *arg
, char **next
)
327 add_pre_buffer("#split_include\n");
330 case '\0': /* Plain "-I" */
333 die("missing argument for -I option");
336 add_pre_buffer("#add_include \"%s/\"\n", path
);
341 static void add_cmdline_include(char *filename
)
343 if (cmdline_include_nr
>= CMDLINE_INCLUDE
)
344 die("too many include files for %s\n", filename
);
345 cmdline_include
[cmdline_include_nr
++] = filename
;
348 static char **handle_switch_i(char *arg
, char **next
)
350 if (*next
&& !strcmp(arg
, "include"))
351 add_cmdline_include(*++next
);
352 else if (*next
&& !strcmp(arg
, "imacros"))
353 add_cmdline_include(*++next
);
354 else if (*next
&& !strcmp(arg
, "isystem")) {
355 char *path
= *++next
;
357 die("missing argument for -isystem option");
358 add_pre_buffer("#add_isystem \"%s/\"\n", path
);
359 } else if (*next
&& !strcmp(arg
, "idirafter")) {
360 char *path
= *++next
;
362 die("missing argument for -idirafter option");
363 add_pre_buffer("#add_dirafter \"%s/\"\n", path
);
368 static char **handle_switch_M(char *arg
, char **next
)
370 if (!strcmp(arg
, "MF") || !strcmp(arg
,"MQ") || !strcmp(arg
,"MT")) {
372 die("missing argument for -%s option", arg
);
378 static char **handle_switch_m(char *arg
, char **next
)
380 if (!strcmp(arg
, "m64")) {
382 } else if (!strcmp(arg
, "m32")) {
384 } else if (!strcmp(arg
, "msize-long")) {
390 static void handle_arch_m64_finalize(void)
394 max_int_alignment
= 8;
395 bits_in_pointer
= 64;
396 pointer_alignment
= 8;
397 size_t_ctype
= &ulong_ctype
;
398 ssize_t_ctype
= &long_ctype
;
400 add_pre_buffer("#weak_define __x86_64__ 1\n");
405 static void handle_arch_msize_long_finalize(void)
407 if (arch_msize_long
) {
408 size_t_ctype
= &ulong_ctype
;
409 ssize_t_ctype
= &long_ctype
;
413 static void handle_arch_finalize(void)
415 handle_arch_m64_finalize();
416 handle_arch_msize_long_finalize();
420 static char **handle_switch_o(char *arg
, char **next
)
422 if (!strcmp (arg
, "o")) { // "-o foo"
424 die("argument to '-o' is missing");
431 static const struct warning
{
435 { "address-space", &Waddress_space
},
436 { "bitwise", &Wbitwise
},
437 { "cast-to-as", &Wcast_to_as
},
438 { "cast-truncate", &Wcast_truncate
},
439 { "context", &Wcontext
},
441 { "declaration-after-statement", &Wdeclarationafterstatement
},
442 { "default-bitfield-sign", &Wdefault_bitfield_sign
},
443 { "designated-init", &Wdesignated_init
},
444 { "do-while", &Wdo_while
},
445 { "enum-mismatch", &Wenum_mismatch
},
446 { "error", &Werror
},
447 { "init-cstring", &Winit_cstring
},
448 { "non-pointer-null", &Wnon_pointer_null
},
449 { "old-initializer", &Wold_initializer
},
450 { "one-bit-signed-bitfield", &Wone_bit_signed_bitfield
},
451 { "paren-string", &Wparen_string
},
452 { "ptr-subtraction-blows", &Wptr_subtraction_blows
},
453 { "return-void", &Wreturn_void
},
454 { "shadow", &Wshadow
},
455 { "sizeof-bool", &Wsizeof_bool
},
456 { "transparent-union", &Wtransparent_union
},
457 { "typesign", &Wtypesign
},
458 { "undef", &Wundef
},
459 { "uninitialized", &Wuninitialized
},
460 { "unknown-attribute", &Wunknown_attribute
},
471 static char **handle_onoff_switch(char *arg
, char **next
, const struct warning warnings
[], int n
)
473 int flag
= WARNING_ON
;
477 if (!strcmp(p
, "sparse-all")) {
478 for (i
= 0; i
< n
; i
++) {
479 if (*warnings
[i
].flag
!= WARNING_FORCE_OFF
&& warnings
[i
].flag
!= &Werror
)
480 *warnings
[i
].flag
= WARNING_ON
;
484 // Prefixes "no" and "no-" mean to turn warning off.
485 if (p
[0] == 'n' && p
[1] == 'o') {
489 flag
= WARNING_FORCE_OFF
;
492 for (i
= 0; i
< n
; i
++) {
493 if (!strcmp(p
,warnings
[i
].name
)) {
494 *warnings
[i
].flag
= flag
;
503 static char **handle_switch_W(char *arg
, char **next
)
505 char ** ret
= handle_onoff_switch(arg
, next
, warnings
, ARRAY_SIZE(warnings
));
513 static struct warning debugs
[] = {
514 { "entry", &dbg_entry
},
515 { "dead", &dbg_dead
},
519 static char **handle_switch_v(char *arg
, char **next
)
521 char ** ret
= handle_onoff_switch(arg
, next
, debugs
, ARRAY_SIZE(debugs
));
528 } while (*++arg
== 'v');
533 static void handle_onoff_switch_finalize(const struct warning warnings
[], int n
)
537 for (i
= 0; i
< n
; i
++) {
538 if (*warnings
[i
].flag
== WARNING_FORCE_OFF
)
539 *warnings
[i
].flag
= WARNING_OFF
;
543 static void handle_switch_W_finalize(void)
545 handle_onoff_switch_finalize(warnings
, ARRAY_SIZE(warnings
));
547 /* default Wdeclarationafterstatement based on the C dialect */
548 if (-1 == Wdeclarationafterstatement
)
554 Wdeclarationafterstatement
= 1;
560 Wdeclarationafterstatement
= 0;
570 static void handle_switch_v_finalize(void)
572 handle_onoff_switch_finalize(debugs
, ARRAY_SIZE(debugs
));
575 static char **handle_switch_U(char *arg
, char **next
)
577 const char *name
= arg
+ 1;
578 add_pre_buffer ("#undef %s\n", name
);
582 static char **handle_switch_O(char *arg
, char **next
)
585 if (arg
[1] >= '0' && arg
[1] <= '9')
586 level
= arg
[1] - '0';
588 optimize_size
= arg
[1] == 's';
592 static char **handle_switch_ftabstop(char *arg
, char **next
)
598 die("error: missing argument to \"-ftabstop=\"");
600 /* we silently ignore silly values */
601 val
= strtoul(arg
, &end
, 10);
602 if (*end
== '\0' && 1 <= val
&& val
<= 100)
608 static int funsigned_char
;
609 static void handle_funsigned_char(void)
611 if (funsigned_char
) {
612 char_ctype
.ctype
.modifiers
&= ~MOD_SIGNED
;
613 char_ctype
.ctype
.modifiers
|= MOD_UNSIGNED
;
617 static char **handle_switch_f(char *arg
, char **next
)
621 if (!strncmp(arg
, "tabstop=", 8))
622 return handle_switch_ftabstop(arg
+8, next
);
624 if (!strcmp(arg
, "unsigned-char")) {
629 /* handle switches w/ arguments above, boolean and only boolean below */
631 if (!strncmp(arg
, "no-", 3)) {
634 /* handle switch here.. */
638 static char **handle_switch_G(char *arg
, char **next
)
640 if (!strcmp (arg
, "G") && *next
)
641 return next
+ 1; // "-G 0"
643 return next
; // "-G0" or (bogus) terminal "-G"
646 static char **handle_switch_a(char *arg
, char **next
)
648 if (!strcmp (arg
, "ansi"))
649 standard
= STANDARD_C89
;
654 static char **handle_switch_s(char *arg
, char **next
)
656 if (!strncmp (arg
, "std=", 4))
660 if (!strcmp (arg
, "c89") ||
661 !strcmp (arg
, "iso9899:1990"))
662 standard
= STANDARD_C89
;
664 else if (!strcmp (arg
, "iso9899:199409"))
665 standard
= STANDARD_C94
;
667 else if (!strcmp (arg
, "c99") ||
668 !strcmp (arg
, "c9x") ||
669 !strcmp (arg
, "iso9899:1999") ||
670 !strcmp (arg
, "iso9899:199x"))
671 standard
= STANDARD_C99
;
673 else if (!strcmp (arg
, "gnu89"))
674 standard
= STANDARD_GNU89
;
676 else if (!strcmp (arg
, "gnu99") || !strcmp (arg
, "gnu9x"))
677 standard
= STANDARD_GNU99
;
680 die ("Unsupported C dialect");
686 static char **handle_nostdinc(char *arg
, char **next
)
688 add_pre_buffer("#nostdinc\n");
692 static char **handle_switch_n(char *arg
, char **next
)
694 if (!strcmp (arg
, "nostdinc"))
695 return handle_nostdinc(arg
, next
);
700 static char **handle_base_dir(char *arg
, char **next
)
702 gcc_base_dir
= *++next
;
704 die("missing argument for -gcc-base-dir option");
708 static char **handle_no_lineno(char *arg
, char **next
)
714 static char **handle_switch_g(char *arg
, char **next
)
716 if (!strcmp (arg
, "gcc-base-dir"))
717 return handle_base_dir(arg
, next
);
722 static char **handle_version(char *arg
, char **next
)
724 printf("%s\n", SPARSE_VERSION
);
728 static char **handle_param(char *arg
, char **next
)
732 /* For now just skip any '--param=*' or '--param *' */
735 } else if (isspace(*arg
) || *arg
== '=') {
740 die("missing argument for --param option");
747 char **(*fn
)(char *, char **);
748 unsigned int prefix
:1;
751 static char **handle_long_options(char *arg
, char **next
)
753 static struct switches cmd
[] = {
754 { "param", handle_param
, 1 },
755 { "version", handle_version
},
756 { "nostdinc", handle_nostdinc
},
757 { "gcc-base-dir", handle_base_dir
},
758 { "no-lineno", handle_no_lineno
},
761 struct switches
*s
= cmd
;
764 int optlen
= strlen(s
->name
);
765 if (!strncmp(s
->name
, arg
, optlen
+ !s
->prefix
))
766 return s
->fn(arg
+ optlen
, next
);
772 static char **handle_switch(char *arg
, char **next
)
775 case 'a': return handle_switch_a(arg
, next
);
776 case 'D': return handle_switch_D(arg
, next
);
777 case 'E': return handle_switch_E(arg
, next
);
778 case 'f': return handle_switch_f(arg
, next
);
779 case 'g': return handle_switch_g(arg
, next
);
780 case 'G': return handle_switch_G(arg
, next
);
781 case 'I': return handle_switch_I(arg
, next
);
782 case 'i': return handle_switch_i(arg
, next
);
783 case 'M': return handle_switch_M(arg
, next
);
784 case 'm': return handle_switch_m(arg
, next
);
785 case 'n': return handle_switch_n(arg
, next
);
786 case 'o': return handle_switch_o(arg
, next
);
787 case 'O': return handle_switch_O(arg
, next
);
788 case 's': return handle_switch_s(arg
, next
);
789 case 'U': return handle_switch_U(arg
, next
);
790 case 'v': return handle_switch_v(arg
, next
);
791 case 'W': return handle_switch_W(arg
, next
);
792 case '-': return handle_long_options(arg
+ 1, next
);
798 * Ignore unknown command line options:
799 * they're probably gcc switches
804 void declare_builtin_functions(void)
806 /* Gaah. gcc knows tons of builtin <string.h> functions */
807 add_pre_buffer("extern void *__builtin_memcpy(void *, const void *, __SIZE_TYPE__);\n");
808 add_pre_buffer("extern void *__builtin_mempcpy(void *, const void *, __SIZE_TYPE__);\n");
809 add_pre_buffer("extern void *__builtin_memset(void *, int, __SIZE_TYPE__);\n");
810 add_pre_buffer("extern int __builtin_memcmp(const void *, const void *, __SIZE_TYPE__);\n");
811 add_pre_buffer("extern char *__builtin_strcat(char *, const char *);\n");
812 add_pre_buffer("extern char *__builtin_strncat(char *, const char *, __SIZE_TYPE__);\n");
813 add_pre_buffer("extern int __builtin_strcmp(const char *, const char *);\n");
814 add_pre_buffer("extern char *__builtin_strchr(const char *, int);\n");
815 add_pre_buffer("extern char *__builtin_strcpy(char *, const char *);\n");
816 add_pre_buffer("extern char *__builtin_strncpy(char *, const char *, __SIZE_TYPE__);\n");
817 add_pre_buffer("extern __SIZE_TYPE__ __builtin_strspn(const char *, const char *);\n");
818 add_pre_buffer("extern __SIZE_TYPE__ __builtin_strcspn(const char *, const char *);\n");
819 add_pre_buffer("extern char * __builtin_strpbrk(const char *, const char *);\n");
820 add_pre_buffer("extern char* __builtin_stpcpy(const char *, const char*);\n");
821 add_pre_buffer("extern __SIZE_TYPE__ __builtin_strlen(const char *);\n");
823 /* And bitwise operations.. */
824 add_pre_buffer("extern int __builtin_clz(int);\n");
825 add_pre_buffer("extern int __builtin_clzl(long);\n");
826 add_pre_buffer("extern int __builtin_clzll(long long);\n");
827 add_pre_buffer("extern int __builtin_ctz(int);\n");
828 add_pre_buffer("extern int __builtin_ctzl(long);\n");
829 add_pre_buffer("extern int __builtin_ctzll(long long);\n");
830 add_pre_buffer("extern int __builtin_ffs(int);\n");
831 add_pre_buffer("extern int __builtin_ffsl(long);\n");
832 add_pre_buffer("extern int __builtin_ffsll(long long);\n");
833 add_pre_buffer("extern int __builtin_popcount(unsigned int);\n");
834 add_pre_buffer("extern int __builtin_popcountl(unsigned long);\n");
835 add_pre_buffer("extern int __builtin_popcountll(unsigned long long);\n");
837 /* And byte swaps.. */
838 add_pre_buffer("extern unsigned short __builtin_bswap16(unsigned short);\n");
839 add_pre_buffer("extern unsigned int __builtin_bswap32(unsigned int);\n");
840 add_pre_buffer("extern unsigned long long __builtin_bswap64(unsigned long long);\n");
842 /* And atomic memory access functions.. */
843 add_pre_buffer("extern int __sync_fetch_and_add(void *, ...);\n");
844 add_pre_buffer("extern int __sync_fetch_and_sub(void *, ...);\n");
845 add_pre_buffer("extern int __sync_fetch_and_or(void *, ...);\n");
846 add_pre_buffer("extern int __sync_fetch_and_and(void *, ...);\n");
847 add_pre_buffer("extern int __sync_fetch_and_xor(void *, ...);\n");
848 add_pre_buffer("extern int __sync_fetch_and_nand(void *, ...);\n");
849 add_pre_buffer("extern int __sync_add_and_fetch(void *, ...);\n");
850 add_pre_buffer("extern int __sync_sub_and_fetch(void *, ...);\n");
851 add_pre_buffer("extern int __sync_or_and_fetch(void *, ...);\n");
852 add_pre_buffer("extern int __sync_and_and_fetch(void *, ...);\n");
853 add_pre_buffer("extern int __sync_xor_and_fetch(void *, ...);\n");
854 add_pre_buffer("extern int __sync_nand_and_fetch(void *, ...);\n");
855 add_pre_buffer("extern int __sync_bool_compare_and_swap(void *, ...);\n");
856 add_pre_buffer("extern int __sync_val_compare_and_swap(void *, ...);\n");
857 add_pre_buffer("extern void __sync_synchronize();\n");
858 add_pre_buffer("extern int __sync_lock_test_and_set(void *, ...);\n");
859 add_pre_buffer("extern void __sync_lock_release(void *, ...);\n");
861 /* And some random ones.. */
862 add_pre_buffer("extern void *__builtin_return_address(unsigned int);\n");
863 add_pre_buffer("extern void *__builtin_extract_return_addr(void *);\n");
864 add_pre_buffer("extern void *__builtin_frame_address(unsigned int);\n");
865 add_pre_buffer("extern void __builtin_trap(void);\n");
866 add_pre_buffer("extern void *__builtin_alloca(__SIZE_TYPE__);\n");
867 add_pre_buffer("extern void __builtin_prefetch (const void *, ...);\n");
868 add_pre_buffer("extern long __builtin_alpha_extbl(long, long);\n");
869 add_pre_buffer("extern long __builtin_alpha_extwl(long, long);\n");
870 add_pre_buffer("extern long __builtin_alpha_insbl(long, long);\n");
871 add_pre_buffer("extern long __builtin_alpha_inswl(long, long);\n");
872 add_pre_buffer("extern long __builtin_alpha_insql(long, long);\n");
873 add_pre_buffer("extern long __builtin_alpha_inslh(long, long);\n");
874 add_pre_buffer("extern long __builtin_alpha_cmpbge(long, long);\n");
875 add_pre_buffer("extern long __builtin_labs(long);\n");
876 add_pre_buffer("extern double __builtin_fabs(double);\n");
877 add_pre_buffer("extern __SIZE_TYPE__ __builtin_va_arg_pack_len(void);\n");
879 /* Add Blackfin-specific stuff */
882 "extern void __builtin_bfin_csync(void);\n"
883 "extern void __builtin_bfin_ssync(void);\n"
884 "extern int __builtin_bfin_norm_fr1x32(int);\n"
888 /* And some floating point stuff.. */
889 add_pre_buffer("extern int __builtin_isgreater(float, float);\n");
890 add_pre_buffer("extern int __builtin_isgreaterequal(float, float);\n");
891 add_pre_buffer("extern int __builtin_isless(float, float);\n");
892 add_pre_buffer("extern int __builtin_islessequal(float, float);\n");
893 add_pre_buffer("extern int __builtin_islessgreater(float, float);\n");
894 add_pre_buffer("extern int __builtin_isunordered(float, float);\n");
896 /* And some __FORTIFY_SOURCE ones.. */
897 add_pre_buffer ("extern __SIZE_TYPE__ __builtin_object_size(void *, int);\n");
898 add_pre_buffer ("extern void * __builtin___memcpy_chk(void *, const void *, __SIZE_TYPE__, __SIZE_TYPE__);\n");
899 add_pre_buffer ("extern void * __builtin___memmove_chk(void *, const void *, __SIZE_TYPE__, __SIZE_TYPE__);\n");
900 add_pre_buffer ("extern void * __builtin___mempcpy_chk(void *, const void *, __SIZE_TYPE__, __SIZE_TYPE__);\n");
901 add_pre_buffer ("extern void * __builtin___memset_chk(void *, int, __SIZE_TYPE__, __SIZE_TYPE__);\n");
902 add_pre_buffer ("extern int __builtin___sprintf_chk(char *, int, __SIZE_TYPE__, const char *, ...);\n");
903 add_pre_buffer ("extern int __builtin___snprintf_chk(char *, __SIZE_TYPE__, int , __SIZE_TYPE__, const char *, ...);\n");
904 add_pre_buffer ("extern char * __builtin___stpcpy_chk(char *, const char *, __SIZE_TYPE__);\n");
905 add_pre_buffer ("extern char * __builtin___strcat_chk(char *, const char *, __SIZE_TYPE__);\n");
906 add_pre_buffer ("extern char * __builtin___strcpy_chk(char *, const char *, __SIZE_TYPE__);\n");
907 add_pre_buffer ("extern char * __builtin___strncat_chk(char *, const char *, __SIZE_TYPE__, __SIZE_TYPE__);\n");
908 add_pre_buffer ("extern char * __builtin___strncpy_chk(char *, const char *, __SIZE_TYPE__, __SIZE_TYPE__);\n");
909 add_pre_buffer ("extern int __builtin___vsprintf_chk(char *, int, __SIZE_TYPE__, const char *, __builtin_va_list);\n");
910 add_pre_buffer ("extern int __builtin___vsnprintf_chk(char *, __SIZE_TYPE__, int, __SIZE_TYPE__, const char *, __builtin_va_list ap);\n");
911 add_pre_buffer ("extern void __builtin_unreachable(void);\n");
914 void create_builtin_stream(void)
916 add_pre_buffer("#weak_define __GNUC__ %d\n", gcc_major
);
917 add_pre_buffer("#weak_define __GNUC_MINOR__ %d\n", gcc_minor
);
918 add_pre_buffer("#weak_define __GNUC_PATCHLEVEL__ %d\n", gcc_patchlevel
);
920 /* We add compiler headers path here because we have to parse
921 * the arguments to get it, falling back to default. */
922 add_pre_buffer("#add_system \"%s/include\"\n", gcc_base_dir
);
923 add_pre_buffer("#add_system \"%s/include-fixed\"\n", gcc_base_dir
);
925 add_pre_buffer("#define __extension__\n");
926 add_pre_buffer("#define __pragma__\n");
928 // gcc defines __SIZE_TYPE__ to be size_t. For linux/i86 and
929 // solaris/sparc that is really "unsigned int" and for linux/x86_64
930 // it is "long unsigned int". In either case we can probably
931 // get away with this. We need the #weak_define as cgcc will define
932 // the right __SIZE_TYPE__.
933 if (size_t_ctype
== &ulong_ctype
)
934 add_pre_buffer("#weak_define __SIZE_TYPE__ long unsigned int\n");
936 add_pre_buffer("#weak_define __SIZE_TYPE__ unsigned int\n");
937 add_pre_buffer("#weak_define __STDC__ 1\n");
942 add_pre_buffer("#weak_define __STRICT_ANSI__\n");
946 add_pre_buffer("#weak_define __STDC_VERSION__ 199409L\n");
947 add_pre_buffer("#weak_define __STRICT_ANSI__\n");
951 add_pre_buffer("#weak_define __STDC_VERSION__ 199901L\n");
952 add_pre_buffer("#weak_define __STRICT_ANSI__\n");
959 add_pre_buffer("#weak_define __STDC_VERSION__ 199901L\n");
966 add_pre_buffer("#define __builtin_stdarg_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
967 add_pre_buffer("#define __builtin_va_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
968 add_pre_buffer("#define __builtin_ms_va_start(a,b) ((a) = (__builtin_ms_va_list)(&(b)))\n");
969 add_pre_buffer("#define __builtin_va_arg(arg,type) ({ type __va_arg_ret = *(type *)(arg); arg += sizeof(type); __va_arg_ret; })\n");
970 add_pre_buffer("#define __builtin_va_alist (*(void *)0)\n");
971 add_pre_buffer("#define __builtin_va_arg_incr(x) ((x) + 1)\n");
972 add_pre_buffer("#define __builtin_va_copy(dest, src) ({ dest = src; (void)0; })\n");
973 add_pre_buffer("#define __builtin_va_end(arg)\n");
974 add_pre_buffer("#define __builtin_ms_va_end(arg)\n");
975 add_pre_buffer("#define __builtin_va_arg_pack()\n");
977 /* FIXME! We need to do these as special magic macros at expansion time! */
978 add_pre_buffer("#define __BASE_FILE__ \"base_file.c\"\n");
981 add_pre_buffer("#define __OPTIMIZE__ 1\n");
983 add_pre_buffer("#define __OPTIMIZE_SIZE__ 1\n");
985 /* GCC defines these for limits.h */
986 add_pre_buffer("#weak_define __SHRT_MAX__ " STRINGIFY(__SHRT_MAX__
) "\n");
987 add_pre_buffer("#weak_define __SCHAR_MAX__ " STRINGIFY(__SCHAR_MAX__
) "\n");
988 add_pre_buffer("#weak_define __INT_MAX__ " STRINGIFY(__INT_MAX__
) "\n");
989 add_pre_buffer("#weak_define __LONG_MAX__ " STRINGIFY(__LONG_MAX__
) "\n");
990 add_pre_buffer("#weak_define __LONG_LONG_MAX__ " STRINGIFY(__LONG_LONG_MAX__
) "\n");
991 add_pre_buffer("#weak_define __WCHAR_MAX__ " STRINGIFY(__WCHAR_MAX__
) "\n");
992 add_pre_buffer("#weak_define __SIZEOF_POINTER__ " STRINGIFY(__SIZEOF_POINTER__
) "\n");
993 add_pre_buffer("#weak_define __CHAR_BIT__ " STRINGIFY(__CHAR_BIT__
) "\n");
996 static struct symbol_list
*sparse_tokenstream(struct token
*token
)
998 // Preprocess the stream
999 token
= preprocess(token
);
1001 if (preprocess_only
) {
1002 while (!eof_token(token
)) {
1004 struct token
*next
= token
->next
;
1005 const char *separator
= "";
1006 if (next
->pos
.whitespace
)
1008 if (next
->pos
.newline
) {
1009 separator
= "\n\t\t\t\t\t";
1010 prec
= next
->pos
.pos
;
1014 printf("%s%.*s", show_token(token
), prec
, separator
);
1022 // Parse the resulting C code
1023 while (!eof_token(token
))
1024 token
= external_declaration(token
, &translation_unit_used_list
);
1025 return translation_unit_used_list
;
1028 static struct symbol_list
*sparse_file(const char *filename
)
1031 struct token
*token
;
1033 if (strcmp (filename
, "-") == 0) {
1036 fd
= open(filename
, O_RDONLY
);
1038 die("No such file: %s", filename
);
1041 // Tokenize the input stream
1042 token
= tokenize(filename
, fd
, NULL
, includepath
);
1043 store_all_tokens(token
);
1046 return sparse_tokenstream(token
);
1050 * This handles the "-include" directive etc: we're in global
1051 * scope, and all types/macros etc will affect all the following
1054 * NOTE NOTE NOTE! "#undef" of anything in this stage will
1055 * affect all subsequent files too, i.e. we can have non-local
1056 * behaviour between files!
1058 static struct symbol_list
*sparse_initial(void)
1062 // Prepend any "include" file to the stream.
1063 // We're in global scope, it will affect all files!
1064 for (i
= 0; i
< cmdline_include_nr
; i
++)
1065 add_pre_buffer("#argv_include \"%s\"\n", cmdline_include
[i
]);
1067 return sparse_tokenstream(pre_buffer_begin
);
1070 struct symbol_list
*sparse_initialize(int argc
, char **argv
, struct string_list
**filelist
)
1073 struct symbol_list
*list
;
1075 // Initialize symbol stream first, so that we can add defines etc
1077 init_include_path();
1081 char *arg
= *++args
;
1085 if (arg
[0] == '-' && arg
[1]) {
1086 args
= handle_switch(arg
+1, args
);
1089 add_ptr_list_notag(filelist
, arg
);
1091 handle_switch_W_finalize();
1092 handle_switch_v_finalize();
1094 handle_arch_finalize();
1097 if (!ptr_list_empty(filelist
)) {
1098 // Initialize type system
1100 handle_funsigned_char();
1102 create_builtin_stream();
1103 add_pre_buffer("#define __CHECKER__ 1\n");
1104 if (!preprocess_only
)
1105 declare_builtin_functions();
1107 list
= sparse_initial();
1110 * Protect the initial token allocations, since
1111 * they need to survive all the others
1113 protect_token_alloc();
1118 struct symbol_list
* sparse_keep_tokens(char *filename
)
1120 struct symbol_list
*res
;
1122 /* Clear previous symbol list */
1123 translation_unit_used_list
= NULL
;
1126 res
= sparse_file(filename
);
1133 struct symbol_list
* __sparse(char *filename
)
1135 struct symbol_list
*res
;
1137 res
= sparse_keep_tokens(filename
);
1139 /* Drop the tokens for this file after parsing */
1140 clear_token_alloc();
1146 struct symbol_list
* sparse(char *filename
)
1148 struct symbol_list
*res
= __sparse(filename
);
1150 /* Evaluate the complete symbol list */
1151 evaluate_symbol_list(res
);