2 * 'sparse' library helper routines.
4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Licensed under the Open Software License version 1.1
19 #include <sys/types.h>
26 #include "expression.h"
28 #include "linearize.h"
31 int verbose
, optimize
, optimize_size
, preprocessing
;
36 # define __GNUC_MINOR__ 95
37 # define __GNUC_PATCHLEVEL__ 0
40 int gcc_major
= __GNUC__
;
41 int gcc_minor
= __GNUC_MINOR__
;
42 int gcc_patchlevel
= __GNUC_PATCHLEVEL__
;
44 struct token
*skip_to(struct token
*token
, int op
)
46 while (!match_op(token
, op
) && !eof_token(token
))
51 struct token
*expect(struct token
*token
, int op
, const char *where
)
53 if (!match_op(token
, op
)) {
54 static struct token bad_token
;
55 if (token
!= &bad_token
) {
56 bad_token
.next
= token
;
57 sparse_error(token
->pos
, "Expected %s %s", show_special(op
), where
);
58 sparse_error(token
->pos
, "got %s", show_token(token
));
61 return skip_to(token
, op
);
67 unsigned int hexval(unsigned int c
)
75 retval
= c
- 'a' + 10;
78 retval
= c
- 'A' + 10;
84 static void do_warn(const char *type
, struct position pos
, const char * fmt
, va_list args
)
86 static char buffer
[512];
89 vsprintf(buffer
, fmt
, args
);
90 name
= stream_name(pos
.stream
);
92 fprintf(stderr
, "%s:%d:%d: %s%s\n",
93 name
, pos
.line
, pos
.pos
, type
, buffer
);
96 static int max_warnings
= 100;
97 static int show_info
= 1;
99 void info(struct position pos
, const char * fmt
, ...)
106 do_warn("", pos
, fmt
, args
);
110 void warning(struct position pos
, const char * fmt
, ...)
119 if (!--max_warnings
) {
121 fmt
= "too many warnings";
125 do_warn("warning: ", pos
, fmt
, args
);
129 static void do_error(struct position pos
, const char * fmt
, va_list args
)
131 static int errors
= 0;
134 /* Shut up warnings after an error */
141 fmt
= "too many errors";
145 do_warn("error: ", pos
, fmt
, args
);
149 void sparse_error(struct position pos
, const char * fmt
, ...)
153 do_error(pos
, fmt
, args
);
157 void expression_error(struct expression
*expr
, const char *fmt
, ...)
161 do_error(expr
->pos
, fmt
, args
);
163 expr
->ctype
= &bad_ctype
;
166 void error_die(struct position pos
, const char * fmt
, ...)
170 do_warn("error: ", pos
, fmt
, args
);
175 void die(const char *fmt
, ...)
178 static char buffer
[512];
181 vsnprintf(buffer
, sizeof(buffer
), fmt
, args
);
184 fprintf(stderr
, "%s\n", buffer
);
188 static unsigned int pre_buffer_size
;
189 static char pre_buffer
[8192];
191 int Wdefault_bitfield_sign
= 0;
192 int Wone_bit_signed_bitfield
= 1;
193 int Wcast_truncate
= 1;
197 int Wundefined_preprocessor
= 0;
198 int Wptr_subtraction_blows
= 0;
199 int Wcast_to_address_space
= 0;
201 int Wtransparent_union
= 1;
203 int Waddress_space
= 1;
204 int Wenum_mismatch
= 1;
206 int Wuninitialized
= 1;
207 int Wold_initializer
= 1;
208 int Wnon_pointer_null
= 1;
215 #define CMDLINE_INCLUDE 20
216 int cmdline_include_nr
= 0;
217 struct cmdline_include cmdline_include
[CMDLINE_INCLUDE
];
220 void add_pre_buffer(const char *fmt
, ...)
226 size
= pre_buffer_size
;
227 size
+= vsnprintf(pre_buffer
+ size
,
228 sizeof(pre_buffer
) - size
,
230 pre_buffer_size
= size
;
234 static char **handle_switch_D(char *arg
, char **next
)
236 const char *name
= arg
+ 1;
237 const char *value
= "1";
243 if (isspace((unsigned char)c
) || c
== '=') {
249 add_pre_buffer("#define %s %s\n", name
, value
);
253 static char **handle_switch_E(char *arg
, char **next
)
259 static char **handle_switch_I(char *arg
, char **next
)
265 add_pre_buffer("#split_include\n");
268 case '\0': /* Plain "-I" */
271 die("missing argument for -I option");
274 add_pre_buffer("#add_include \"%s/\"\n", path
);
279 static void add_cmdline_include(char *filename
)
281 int fd
= open(filename
, O_RDONLY
);
286 if (cmdline_include_nr
>= CMDLINE_INCLUDE
)
287 die("too many include files for %s\n", filename
);
288 cmdline_include
[cmdline_include_nr
].filename
= filename
;
289 cmdline_include
[cmdline_include_nr
].fd
= fd
;
290 cmdline_include_nr
++;
293 static char **handle_switch_i(char *arg
, char **next
)
295 if (*next
&& !strcmp(arg
, "include"))
296 add_cmdline_include(*++next
);
297 else if (*next
&& !strcmp(arg
, "imacros"))
298 add_cmdline_include(*++next
);
299 else if (*next
&& !strcmp(arg
, "isystem")) {
300 char *path
= *++next
;
302 die("missing argument for -isystem option");
303 add_pre_buffer("#add_isystem \"%s/\"\n", path
);
308 static char **handle_switch_M(char *arg
, char **next
)
310 if (!strcmp(arg
, "MF") || !strcmp(arg
,"MQ") || !strcmp(arg
,"MT")) {
312 die("missing argument for -%s option", arg
);
318 static char **handle_switch_m(char *arg
, char **next
)
320 if (!strcmp(arg
, "m64")) {
322 max_int_alignment
= 8;
323 bits_in_pointer
= 64;
324 pointer_alignment
= 8;
329 static char **handle_switch_o(char *arg
, char **next
)
331 if (!strcmp (arg
, "o") && *next
)
332 return next
+ 1; // "-o foo"
334 return next
; // "-ofoo" or (bogus) terminal "-o"
337 static const struct warning
{
341 { "cast-to-as", &Wcast_to_address_space
},
343 { "one-bit-signed-bitfield", &Wone_bit_signed_bitfield
},
344 { "cast-truncate", &Wcast_truncate
},
345 { "ptr-subtraction-blows", &Wptr_subtraction_blows
},
346 { "default-bitfield-sign", &Wdefault_bitfield_sign
},
347 { "undef", &Wundefined_preprocessor
},
348 { "bitwise", &Wbitwise
},
349 { "typesign", &Wtypesign
},
350 { "context", &Wcontext
},
351 { "transparent-union", &Wtransparent_union
},
352 { "shadow", &Wshadow
},
353 { "address-space", &Waddress_space
},
354 { "enum-mismatch", &Wenum_mismatch
},
355 { "do-while", &Wdo_while
},
356 { "uninitialized", &Wuninitialized
},
357 { "old-initializer", &Wold_initializer
},
358 { "non-pointer-null", &Wnon_pointer_null
},
368 static char **handle_onoff_switch(char *arg
, char **next
, const struct warning warnings
[], int n
)
370 int flag
= WARNING_ON
;
374 if (!strcmp(p
, "all")) {
375 for (i
= 0; i
< n
; i
++) {
376 if (*warnings
[i
].flag
!= WARNING_FORCE_OFF
)
377 *warnings
[i
].flag
= WARNING_ON
;
381 // Prefixes "no" and "no-" mean to turn warning off.
382 if (p
[0] == 'n' && p
[1] == 'o') {
386 flag
= WARNING_FORCE_OFF
;
389 for (i
= 0; i
< n
; i
++) {
390 if (!strcmp(p
,warnings
[i
].name
)) {
391 *warnings
[i
].flag
= flag
;
400 static char **handle_switch_W(char *arg
, char **next
)
402 char ** ret
= handle_onoff_switch(arg
, next
, warnings
, sizeof warnings
/sizeof warnings
[0]);
410 static struct warning debugs
[] = {
411 { "entry", &dbg_entry
},
412 { "dead", &dbg_dead
},
416 static char **handle_switch_v(char *arg
, char **next
)
418 char ** ret
= handle_onoff_switch(arg
, next
, debugs
, sizeof debugs
/sizeof debugs
[0]);
425 } while (*++arg
== 'v');
430 static void handle_onoff_switch_finalize(const struct warning warnings
[], int n
)
434 for (i
= 0; i
< n
; i
++) {
435 if (*warnings
[i
].flag
== WARNING_FORCE_OFF
)
436 *warnings
[i
].flag
= WARNING_OFF
;
440 static void handle_switch_W_finalize(void)
442 handle_onoff_switch_finalize(warnings
, sizeof(warnings
) / sizeof(warnings
[0]));
445 static void handle_switch_v_finalize(void)
447 handle_onoff_switch_finalize(debugs
, sizeof(debugs
) / sizeof(debugs
[0]));
450 static char **handle_switch_U(char *arg
, char **next
)
452 const char *name
= arg
+ 1;
453 add_pre_buffer ("#undef %s\n", name
);
457 static char **handle_switch_O(char *arg
, char **next
)
460 if (arg
[1] >= '0' && arg
[1] <= '9')
461 level
= arg
[1] - '0';
463 optimize_size
= arg
[1] == 's';
467 static char **handle_switch_f(char *arg
, char **next
)
472 if (!strncmp(arg
, "no-", 3)) {
476 /* handle switch here.. */
480 static char **handle_switch_G(char *arg
, char **next
)
482 if (!strcmp (arg
, "G") && *next
)
483 return next
+ 1; // "-G 0"
485 return next
; // "-G0" or (bogus) terminal "-G"
488 static char **handle_nostdinc(char *arg
, char **next
)
490 add_pre_buffer("#nostdinc\n");
494 static char **handle_dirafter(char *arg
, char **next
)
496 char *path
= *++next
;
498 die("missing argument for -dirafter option");
499 add_pre_buffer("#add_dirafter \"%s/\"\n", path
);
505 char **(*fn
)(char *, char **);
508 char **handle_switch(char *arg
, char **next
)
510 static struct switches cmd
[] = {
511 { "nostdinc", handle_nostdinc
},
512 { "dirafter", handle_dirafter
},
518 case 'D': return handle_switch_D(arg
, next
);
519 case 'E': return handle_switch_E(arg
, next
);
520 case 'I': return handle_switch_I(arg
, next
);
521 case 'i': return handle_switch_i(arg
, next
);
522 case 'M': return handle_switch_M(arg
, next
);
523 case 'm': return handle_switch_m(arg
, next
);
524 case 'o': return handle_switch_o(arg
, next
);
525 case 'U': return handle_switch_U(arg
, next
);
526 case 'v': return handle_switch_v(arg
, next
);
527 case 'W': return handle_switch_W(arg
, next
);
528 case 'O': return handle_switch_O(arg
, next
);
529 case 'f': return handle_switch_f(arg
, next
);
530 case 'G': return handle_switch_G(arg
, next
);
537 if (!strcmp(s
->name
, arg
))
538 return s
->fn(arg
, next
);
543 * Ignore unknown command line options:
544 * they're probably gcc switches
549 void declare_builtin_functions(void)
551 /* Gaah. gcc knows tons of builtin <string.h> functions */
552 add_pre_buffer("extern void *__builtin_memcpy(void *, const void *, __SIZE_TYPE__);\n");
553 add_pre_buffer("extern void *__builtin_memset(void *, int, __SIZE_TYPE__);\n");
554 add_pre_buffer("extern int __builtin_memcmp(const void *, const void *, __SIZE_TYPE__);\n");
555 add_pre_buffer("extern int __builtin_strcmp(const char *, const char *);\n");
556 add_pre_buffer("extern char *__builtin_strchr(const char *, int);\n");
557 add_pre_buffer("extern char *__builtin_strcpy(char *, const char *);\n");
558 add_pre_buffer("extern char *__builtin_strncpy(char *, const char *, __SIZE_TYPE__);\n");
559 add_pre_buffer("extern __SIZE_TYPE__ __builtin_strspn(const char *, const char *);\n");
560 add_pre_buffer("extern __SIZE_TYPE__ __builtin_strcspn(const char *, const char *);\n");
561 add_pre_buffer("extern char * __builtin_strpbrk(const char *, const char *);\n");
563 /* And some random ones.. */
564 add_pre_buffer("extern void *__builtin_return_address(unsigned int);\n");
565 add_pre_buffer("extern void *__builtin_extract_return_addr(void *);\n");
566 add_pre_buffer("extern void *__builtin_frame_address(unsigned int);\n");
567 add_pre_buffer("extern void __builtin_trap(void);\n");
568 add_pre_buffer("extern int __builtin_ffs(int);\n");
569 add_pre_buffer("extern void *__builtin_alloca(__SIZE_TYPE__);\n");
570 add_pre_buffer("extern int __builtin_popcount(unsigned int);\n");
571 add_pre_buffer("extern int __builtin_popcountl(unsigned long);\n");
572 add_pre_buffer("extern void __builtin_prefetch (const void *, ...);\n");
573 add_pre_buffer("extern long __builtin_alpha_extbl(long, long);\n");
574 add_pre_buffer("extern long __builtin_alpha_extwl(long, long);\n");
575 add_pre_buffer("extern long __builtin_alpha_insbl(long, long);\n");
576 add_pre_buffer("extern long __builtin_alpha_inswl(long, long);\n");
577 add_pre_buffer("extern long __builtin_alpha_insql(long, long);\n");
578 add_pre_buffer("extern long __builtin_alpha_inslh(long, long);\n");
579 add_pre_buffer("extern long __builtin_alpha_cmpbge(long, long);\n");
582 void create_builtin_stream(void)
584 add_pre_buffer("#weak_define __GNUC__ %d\n", gcc_major
);
585 add_pre_buffer("#weak_define __GNUC_MINOR__ %d\n", gcc_minor
);
586 add_pre_buffer("#weak_define __GNUC_PATCHLEVEL__ %d\n", gcc_patchlevel
);
587 add_pre_buffer("#define __extension__\n");
588 add_pre_buffer("#define __pragma__\n");
590 // gcc defines __SIZE_TYPE__ to be size_t. For linux/i86 and
591 // solaris/sparc that is really "unsigned int" and for linux/x86_64
592 // it is "long unsigned int". In either case we can probably
593 // get away with this. We need the #weak_define as cgcc will define
594 // the right __SIZE_TYPE__.
595 add_pre_buffer("#weak_define __SIZE_TYPE__ long unsigned int\n");
596 add_pre_buffer("#weak_define __STDC__ 1\n");
598 add_pre_buffer("#define __builtin_stdarg_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
599 add_pre_buffer("#define __builtin_va_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
600 add_pre_buffer("#define __builtin_va_arg(arg,type) ({ type __va_arg_ret = *(type *)(arg); arg += sizeof(type); __va_arg_ret; })\n");
601 add_pre_buffer("#define __builtin_va_alist (*(void *)0)\n");
602 add_pre_buffer("#define __builtin_va_arg_incr(x) ((x) + 1)\n");
603 add_pre_buffer("#define __builtin_va_copy(dest, src) ({ dest = src; (void)0; })\n");
604 add_pre_buffer("#define __builtin_va_end(arg)\n");
605 add_pre_buffer("#define __builtin_offsetof(type, name) ((__SIZE_TYPE__)&((type *)(0ul))->name)\n");
607 /* FIXME! We need to do these as special magic macros at expansion time! */
608 add_pre_buffer("#define __BASE_FILE__ \"base_file.c\"\n");
611 add_pre_buffer("#define __OPTIMIZE__ 1\n");
613 add_pre_buffer("#define __OPTIMIZE_SIZE__ 1\n");
616 static struct symbol_list
*sparse_tokenstream(struct token
*token
)
618 // Preprocess the stream
619 token
= preprocess(token
);
621 if (preprocess_only
) {
622 while (!eof_token(token
)) {
624 struct token
*next
= token
->next
;
625 const char *separator
= "";
626 if (next
->pos
.whitespace
)
628 if (next
->pos
.newline
) {
629 separator
= "\n\t\t\t\t\t";
630 prec
= next
->pos
.pos
;
634 printf("%s%.*s", show_token(token
), prec
, separator
);
642 // Parse the resulting C code
643 while (!eof_token(token
))
644 token
= external_declaration(token
, &translation_unit_used_list
);
645 return translation_unit_used_list
;
648 static struct symbol_list
*sparse_file(const char *filename
)
653 if (strcmp (filename
, "-") == 0) {
656 fd
= open(filename
, O_RDONLY
);
658 die("No such file: %s", filename
);
661 // Tokenize the input stream
662 token
= tokenize(filename
, fd
, NULL
, includepath
);
665 return sparse_tokenstream(token
);
669 * This handles the "-include" directive etc: we're in global
670 * scope, and all types/macros etc will affect all the following
673 * NOTE NOTE NOTE! "#undef" of anything in this stage will
674 * affect all subsequent files too, i.e. we can have non-local
675 * behaviour between files!
677 static struct symbol_list
*sparse_initial(void)
682 // Prepend any "include" file to the stream.
683 // We're in global scope, it will affect all files!
685 for (i
= cmdline_include_nr
- 1; i
>= 0; i
--)
686 token
= tokenize(cmdline_include
[i
].filename
, cmdline_include
[i
].fd
,
689 // Prepend the initial built-in stream
690 token
= tokenize_buffer(pre_buffer
, pre_buffer_size
, token
);
691 return sparse_tokenstream(token
);
694 struct symbol_list
*sparse_initialize(int argc
, char **argv
, struct string_list
**filelist
)
697 struct symbol_list
*list
;
699 // Initialize symbol stream first, so that we can add defines etc
708 if (arg
[0] == '-' && arg
[1]) {
709 args
= handle_switch(arg
+1, args
);
712 add_ptr_list_notag(filelist
, arg
);
714 handle_switch_W_finalize();
715 handle_switch_v_finalize();
718 if (!ptr_list_empty(filelist
)) {
719 // Initialize type system
722 create_builtin_stream();
723 add_pre_buffer("#define __CHECKER__ 1\n");
724 if (!preprocess_only
)
725 declare_builtin_functions();
727 list
= sparse_initial();
730 * Protect the initial token allocations, since
731 * they need to survive all the others
733 protect_token_alloc();
738 struct symbol_list
* __sparse(char *filename
)
740 struct symbol_list
*res
;
742 /* Clear previous symbol list */
743 translation_unit_used_list
= NULL
;
746 res
= sparse_file(filename
);
748 /* Drop the tokens for this file after parsing */
755 struct symbol_list
* sparse(char *filename
)
757 struct symbol_list
*res
= __sparse(filename
);
759 /* Evaluate the complete symbol list */
760 evaluate_symbol_list(res
);