Add test-suite comment to bad-array-designated-initializer.c
[smatch.git] / lib.c
blob7fea4742d11657ae2604889ef2469418d297aaaa
1 /*
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
8 */
9 #include <ctype.h>
10 #include <fcntl.h>
11 #include <stdarg.h>
12 #include <stddef.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <unistd.h>
17 #include <assert.h>
19 #include <sys/types.h>
21 #include "lib.h"
22 #include "allocate.h"
23 #include "token.h"
24 #include "parse.h"
25 #include "symbol.h"
26 #include "expression.h"
27 #include "scope.h"
28 #include "linearize.h"
29 #include "target.h"
31 int verbose, optimize, optimize_size, preprocessing;
32 int die_if_error = 0;
34 #ifndef __GNUC__
35 # define __GNUC__ 2
36 # define __GNUC_MINOR__ 95
37 # define __GNUC_PATCHLEVEL__ 0
38 #endif
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))
47 token = token->next;
48 return 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));
60 if (op == ';')
61 return skip_to(token, op);
62 return &bad_token;
64 return token->next;
67 unsigned int hexval(unsigned int c)
69 int retval = 256;
70 switch (c) {
71 case '0'...'9':
72 retval = c - '0';
73 break;
74 case 'a'...'f':
75 retval = c - 'a' + 10;
76 break;
77 case 'A'...'F':
78 retval = c - 'A' + 10;
79 break;
81 return retval;
84 static void do_warn(const char *type, struct position pos, const char * fmt, va_list args)
86 static char buffer[512];
87 const char *name;
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, ...)
101 va_list args;
103 if (!show_info)
104 return;
105 va_start(args, fmt);
106 do_warn("", pos, fmt, args);
107 va_end(args);
110 void warning(struct position pos, const char * fmt, ...)
112 va_list args;
114 if (!max_warnings) {
115 show_info = 0;
116 return;
119 if (!--max_warnings) {
120 show_info = 0;
121 fmt = "too many warnings";
124 va_start(args, fmt);
125 do_warn("warning: ", pos, fmt, args);
126 va_end(args);
129 static void do_error(struct position pos, const char * fmt, va_list args)
131 static int errors = 0;
132 die_if_error = 1;
133 show_info = 1;
134 /* Shut up warnings after an error */
135 max_warnings = 0;
136 if (errors > 100) {
137 static int once = 0;
138 show_info = 0;
139 if (once)
140 return;
141 fmt = "too many errors";
142 once = 1;
145 do_warn("error: ", pos, fmt, args);
146 errors++;
149 void sparse_error(struct position pos, const char * fmt, ...)
151 va_list args;
152 va_start(args, fmt);
153 do_error(pos, fmt, args);
154 va_end(args);
157 void expression_error(struct expression *expr, const char *fmt, ...)
159 va_list args;
160 va_start(args, fmt);
161 do_error(expr->pos, fmt, args);
162 va_end(args);
163 expr->ctype = &bad_ctype;
166 void error_die(struct position pos, const char * fmt, ...)
168 va_list args;
169 va_start(args, fmt);
170 do_warn("error: ", pos, fmt, args);
171 va_end(args);
172 exit(1);
175 void die(const char *fmt, ...)
177 va_list args;
178 static char buffer[512];
180 va_start(args, fmt);
181 vsnprintf(buffer, sizeof(buffer), fmt, args);
182 va_end(args);
184 fprintf(stderr, "%s\n", buffer);
185 exit(1);
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;
194 int Wbitwise = 0;
195 int Wtypesign = 0;
196 int Wcontext = 1;
197 int Wundefined_preprocessor = 0;
198 int Wptr_subtraction_blows = 0;
199 int Wcast_to_address_space = 0;
200 int Wdecl = 1;
201 int Wtransparent_union = 1;
202 int Wshadow = 0;
203 int Waddress_space = 1;
204 int Wenum_mismatch = 1;
205 int Wdo_while = 1;
206 int Wuninitialized = 1;
207 int Wold_initializer = 1;
208 int Wnon_pointer_null = 1;
209 int Wparen_string = 0;
210 int Wreturn_void = 0;
212 int dbg_entry = 0;
213 int dbg_dead = 0;
215 int preprocess_only;
217 #define CMDLINE_INCLUDE 20
218 int cmdline_include_nr = 0;
219 struct cmdline_include cmdline_include[CMDLINE_INCLUDE];
222 void add_pre_buffer(const char *fmt, ...)
224 va_list args;
225 unsigned int size;
227 va_start(args, fmt);
228 size = pre_buffer_size;
229 size += vsnprintf(pre_buffer + size,
230 sizeof(pre_buffer) - size,
231 fmt, args);
232 pre_buffer_size = size;
233 va_end(args);
236 static char **handle_switch_D(char *arg, char **next)
238 const char *name = arg + 1;
239 const char *value = "1";
240 for (;;) {
241 char c;
242 c = *++arg;
243 if (!c)
244 break;
245 if (isspace((unsigned char)c) || c == '=') {
246 *arg = '\0';
247 value = arg + 1;
248 break;
251 add_pre_buffer("#define %s %s\n", name, value);
252 return next;
255 static char **handle_switch_E(char *arg, char **next)
257 if (arg[1] == '\0')
258 preprocess_only = 1;
259 return next;
262 static char **handle_switch_I(char *arg, char **next)
264 char *path = arg+1;
266 switch (arg[1]) {
267 case '-':
268 add_pre_buffer("#split_include\n");
269 break;
271 case '\0': /* Plain "-I" */
272 path = *++next;
273 if (!path)
274 die("missing argument for -I option");
275 /* Fall through */
276 default:
277 add_pre_buffer("#add_include \"%s/\"\n", path);
279 return next;
282 static void add_cmdline_include(char *filename)
284 int fd = open(filename, O_RDONLY);
285 if (fd < 0) {
286 perror(filename);
287 return;
289 if (cmdline_include_nr >= CMDLINE_INCLUDE)
290 die("too many include files for %s\n", filename);
291 cmdline_include[cmdline_include_nr].filename = filename;
292 cmdline_include[cmdline_include_nr].fd = fd;
293 cmdline_include_nr++;
296 static char **handle_switch_i(char *arg, char **next)
298 if (*next && !strcmp(arg, "include"))
299 add_cmdline_include(*++next);
300 else if (*next && !strcmp(arg, "imacros"))
301 add_cmdline_include(*++next);
302 else if (*next && !strcmp(arg, "isystem")) {
303 char *path = *++next;
304 if (!path)
305 die("missing argument for -isystem option");
306 add_pre_buffer("#add_isystem \"%s/\"\n", path);
308 return next;
311 static char **handle_switch_M(char *arg, char **next)
313 if (!strcmp(arg, "MF") || !strcmp(arg,"MQ") || !strcmp(arg,"MT")) {
314 if (!*next)
315 die("missing argument for -%s option", arg);
316 return next + 1;
318 return next;
321 static char **handle_switch_m(char *arg, char **next)
323 if (!strcmp(arg, "m64")) {
324 bits_in_long = 64;
325 max_int_alignment = 8;
326 bits_in_pointer = 64;
327 pointer_alignment = 8;
329 return next;
332 static char **handle_switch_o(char *arg, char **next)
334 if (!strcmp (arg, "o") && *next)
335 return next + 1; // "-o foo"
336 else
337 return next; // "-ofoo" or (bogus) terminal "-o"
340 static const struct warning {
341 const char *name;
342 int *flag;
343 } warnings[] = {
344 { "cast-to-as", &Wcast_to_address_space },
345 { "decl", &Wdecl },
346 { "one-bit-signed-bitfield", &Wone_bit_signed_bitfield },
347 { "cast-truncate", &Wcast_truncate },
348 { "ptr-subtraction-blows", &Wptr_subtraction_blows },
349 { "default-bitfield-sign", &Wdefault_bitfield_sign },
350 { "undef", &Wundefined_preprocessor },
351 { "bitwise", &Wbitwise },
352 { "typesign", &Wtypesign },
353 { "context", &Wcontext },
354 { "transparent-union", &Wtransparent_union },
355 { "shadow", &Wshadow },
356 { "address-space", &Waddress_space },
357 { "enum-mismatch", &Wenum_mismatch },
358 { "do-while", &Wdo_while },
359 { "uninitialized", &Wuninitialized },
360 { "old-initializer", &Wold_initializer },
361 { "non-pointer-null", &Wnon_pointer_null },
362 { "paren-string", &Wparen_string },
363 { "return-void", &Wreturn_void },
366 enum {
367 WARNING_OFF,
368 WARNING_ON,
369 WARNING_FORCE_OFF
373 static char **handle_onoff_switch(char *arg, char **next, const struct warning warnings[], int n)
375 int flag = WARNING_ON;
376 char *p = arg + 1;
377 unsigned i;
379 if (!strcmp(p, "all")) {
380 for (i = 0; i < n; i++) {
381 if (*warnings[i].flag != WARNING_FORCE_OFF)
382 *warnings[i].flag = WARNING_ON;
386 // Prefixes "no" and "no-" mean to turn warning off.
387 if (p[0] == 'n' && p[1] == 'o') {
388 p += 2;
389 if (p[0] == '-')
390 p++;
391 flag = WARNING_FORCE_OFF;
394 for (i = 0; i < n; i++) {
395 if (!strcmp(p,warnings[i].name)) {
396 *warnings[i].flag = flag;
397 return next;
401 // Unknown.
402 return NULL;
405 static char **handle_switch_W(char *arg, char **next)
407 char ** ret = handle_onoff_switch(arg, next, warnings, sizeof warnings/sizeof warnings[0]);
408 if (ret)
409 return ret;
411 // Unknown.
412 return next;
415 static struct warning debugs[] = {
416 { "entry", &dbg_entry},
417 { "dead", &dbg_dead},
421 static char **handle_switch_v(char *arg, char **next)
423 char ** ret = handle_onoff_switch(arg, next, debugs, sizeof debugs/sizeof debugs[0]);
424 if (ret)
425 return ret;
427 // Unknown.
428 do {
429 verbose++;
430 } while (*++arg == 'v');
431 return next;
435 static void handle_onoff_switch_finalize(const struct warning warnings[], int n)
437 unsigned i;
439 for (i = 0; i < n; i++) {
440 if (*warnings[i].flag == WARNING_FORCE_OFF)
441 *warnings[i].flag = WARNING_OFF;
445 static void handle_switch_W_finalize(void)
447 handle_onoff_switch_finalize(warnings, sizeof(warnings) / sizeof(warnings[0]));
450 static void handle_switch_v_finalize(void)
452 handle_onoff_switch_finalize(debugs, sizeof(debugs) / sizeof(debugs[0]));
455 static char **handle_switch_U(char *arg, char **next)
457 const char *name = arg + 1;
458 add_pre_buffer ("#undef %s\n", name);
459 return next;
462 static char **handle_switch_O(char *arg, char **next)
464 int level = 1;
465 if (arg[1] >= '0' && arg[1] <= '9')
466 level = arg[1] - '0';
467 optimize = level;
468 optimize_size = arg[1] == 's';
469 return next;
472 static char **handle_switch_f(char *arg, char **next)
474 int flag = 1;
476 arg++;
477 if (!strncmp(arg, "no-", 3)) {
478 flag = 0;
479 arg += 3;
481 /* handle switch here.. */
482 return next;
485 static char **handle_switch_G(char *arg, char **next)
487 if (!strcmp (arg, "G") && *next)
488 return next + 1; // "-G 0"
489 else
490 return next; // "-G0" or (bogus) terminal "-G"
493 static char **handle_nostdinc(char *arg, char **next)
495 add_pre_buffer("#nostdinc\n");
496 return next;
499 static char **handle_dirafter(char *arg, char **next)
501 char *path = *++next;
502 if (!path)
503 die("missing argument for -dirafter option");
504 add_pre_buffer("#add_dirafter \"%s/\"\n", path);
505 return next;
508 struct switches {
509 const char *name;
510 char **(*fn)(char *, char **);
513 char **handle_switch(char *arg, char **next)
515 static struct switches cmd[] = {
516 { "nostdinc", handle_nostdinc },
517 { "dirafter", handle_dirafter },
518 { NULL, NULL }
520 struct switches *s;
522 switch (*arg) {
523 case 'D': return handle_switch_D(arg, next);
524 case 'E': return handle_switch_E(arg, next);
525 case 'I': return handle_switch_I(arg, next);
526 case 'i': return handle_switch_i(arg, next);
527 case 'M': return handle_switch_M(arg, next);
528 case 'm': return handle_switch_m(arg, next);
529 case 'o': return handle_switch_o(arg, next);
530 case 'U': return handle_switch_U(arg, next);
531 case 'v': return handle_switch_v(arg, next);
532 case 'W': return handle_switch_W(arg, next);
533 case 'O': return handle_switch_O(arg, next);
534 case 'f': return handle_switch_f(arg, next);
535 case 'G': return handle_switch_G(arg, next);
536 default:
537 break;
540 s = cmd;
541 while (s->name) {
542 if (!strcmp(s->name, arg))
543 return s->fn(arg, next);
544 s++;
548 * Ignore unknown command line options:
549 * they're probably gcc switches
551 return next;
554 void declare_builtin_functions(void)
556 /* Gaah. gcc knows tons of builtin <string.h> functions */
557 add_pre_buffer("extern void *__builtin_memcpy(void *, const void *, __SIZE_TYPE__);\n");
558 add_pre_buffer("extern void *__builtin_memset(void *, int, __SIZE_TYPE__);\n");
559 add_pre_buffer("extern int __builtin_memcmp(const void *, const void *, __SIZE_TYPE__);\n");
560 add_pre_buffer("extern char *__builtin_strcat(char *, const char *);\n");
561 add_pre_buffer("extern char *__builtin_strncat(char *, const char *, __SIZE_TYPE__);\n");
562 add_pre_buffer("extern int __builtin_strcmp(const char *, const char *);\n");
563 add_pre_buffer("extern char *__builtin_strchr(const char *, int);\n");
564 add_pre_buffer("extern char *__builtin_strcpy(char *, const char *);\n");
565 add_pre_buffer("extern char *__builtin_strncpy(char *, const char *, __SIZE_TYPE__);\n");
566 add_pre_buffer("extern __SIZE_TYPE__ __builtin_strspn(const char *, const char *);\n");
567 add_pre_buffer("extern __SIZE_TYPE__ __builtin_strcspn(const char *, const char *);\n");
568 add_pre_buffer("extern char * __builtin_strpbrk(const char *, const char *);\n");
570 /* And some random ones.. */
571 add_pre_buffer("extern void *__builtin_return_address(unsigned int);\n");
572 add_pre_buffer("extern void *__builtin_extract_return_addr(void *);\n");
573 add_pre_buffer("extern void *__builtin_frame_address(unsigned int);\n");
574 add_pre_buffer("extern void __builtin_trap(void);\n");
575 add_pre_buffer("extern int __builtin_ffs(int);\n");
576 add_pre_buffer("extern void *__builtin_alloca(__SIZE_TYPE__);\n");
577 add_pre_buffer("extern int __builtin_popcount(unsigned int);\n");
578 add_pre_buffer("extern int __builtin_popcountl(unsigned long);\n");
579 add_pre_buffer("extern void __builtin_prefetch (const void *, ...);\n");
580 add_pre_buffer("extern long __builtin_alpha_extbl(long, long);\n");
581 add_pre_buffer("extern long __builtin_alpha_extwl(long, long);\n");
582 add_pre_buffer("extern long __builtin_alpha_insbl(long, long);\n");
583 add_pre_buffer("extern long __builtin_alpha_inswl(long, long);\n");
584 add_pre_buffer("extern long __builtin_alpha_insql(long, long);\n");
585 add_pre_buffer("extern long __builtin_alpha_inslh(long, long);\n");
586 add_pre_buffer("extern long __builtin_alpha_cmpbge(long, long);\n");
589 void create_builtin_stream(void)
591 add_pre_buffer("#weak_define __GNUC__ %d\n", gcc_major);
592 add_pre_buffer("#weak_define __GNUC_MINOR__ %d\n", gcc_minor);
593 add_pre_buffer("#weak_define __GNUC_PATCHLEVEL__ %d\n", gcc_patchlevel);
594 add_pre_buffer("#define __extension__\n");
595 add_pre_buffer("#define __pragma__\n");
597 // gcc defines __SIZE_TYPE__ to be size_t. For linux/i86 and
598 // solaris/sparc that is really "unsigned int" and for linux/x86_64
599 // it is "long unsigned int". In either case we can probably
600 // get away with this. We need the #weak_define as cgcc will define
601 // the right __SIZE_TYPE__.
602 add_pre_buffer("#weak_define __SIZE_TYPE__ long unsigned int\n");
603 add_pre_buffer("#weak_define __STDC__ 1\n");
605 add_pre_buffer("#define __builtin_stdarg_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
606 add_pre_buffer("#define __builtin_va_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
607 add_pre_buffer("#define __builtin_va_arg(arg,type) ({ type __va_arg_ret = *(type *)(arg); arg += sizeof(type); __va_arg_ret; })\n");
608 add_pre_buffer("#define __builtin_va_alist (*(void *)0)\n");
609 add_pre_buffer("#define __builtin_va_arg_incr(x) ((x) + 1)\n");
610 add_pre_buffer("#define __builtin_va_copy(dest, src) ({ dest = src; (void)0; })\n");
611 add_pre_buffer("#define __builtin_va_end(arg)\n");
613 /* FIXME! We need to do these as special magic macros at expansion time! */
614 add_pre_buffer("#define __BASE_FILE__ \"base_file.c\"\n");
616 if (optimize)
617 add_pre_buffer("#define __OPTIMIZE__ 1\n");
618 if (optimize_size)
619 add_pre_buffer("#define __OPTIMIZE_SIZE__ 1\n");
622 static struct symbol_list *sparse_tokenstream(struct token *token)
624 // Preprocess the stream
625 token = preprocess(token);
627 if (preprocess_only) {
628 while (!eof_token(token)) {
629 int prec = 1;
630 struct token *next = token->next;
631 const char *separator = "";
632 if (next->pos.whitespace)
633 separator = " ";
634 if (next->pos.newline) {
635 separator = "\n\t\t\t\t\t";
636 prec = next->pos.pos;
637 if (prec > 4)
638 prec = 4;
640 printf("%s%.*s", show_token(token), prec, separator);
641 token = next;
643 putchar('\n');
645 return NULL;
648 // Parse the resulting C code
649 while (!eof_token(token))
650 token = external_declaration(token, &translation_unit_used_list);
651 return translation_unit_used_list;
654 static struct symbol_list *sparse_file(const char *filename)
656 int fd;
657 struct token *token;
659 if (strcmp (filename, "-") == 0) {
660 fd = 0;
661 } else {
662 fd = open(filename, O_RDONLY);
663 if (fd < 0)
664 die("No such file: %s", filename);
667 // Tokenize the input stream
668 token = tokenize(filename, fd, NULL, includepath);
669 close(fd);
671 return sparse_tokenstream(token);
675 * This handles the "-include" directive etc: we're in global
676 * scope, and all types/macros etc will affect all the following
677 * files.
679 * NOTE NOTE NOTE! "#undef" of anything in this stage will
680 * affect all subsequent files too, i.e. we can have non-local
681 * behaviour between files!
683 static struct symbol_list *sparse_initial(void)
685 struct token *token;
686 int i;
688 // Prepend any "include" file to the stream.
689 // We're in global scope, it will affect all files!
690 token = NULL;
691 for (i = cmdline_include_nr - 1; i >= 0; i--)
692 token = tokenize(cmdline_include[i].filename, cmdline_include[i].fd,
693 token, includepath);
695 // Prepend the initial built-in stream
696 token = tokenize_buffer(pre_buffer, pre_buffer_size, token);
697 return sparse_tokenstream(token);
700 struct symbol_list *sparse_initialize(int argc, char **argv, struct string_list **filelist)
702 char **args;
703 struct symbol_list *list;
705 // Initialize symbol stream first, so that we can add defines etc
706 init_symbols();
708 args = argv;
709 for (;;) {
710 char *arg = *++args;
711 if (!arg)
712 break;
714 if (arg[0] == '-' && arg[1]) {
715 args = handle_switch(arg+1, args);
716 continue;
718 add_ptr_list_notag(filelist, arg);
720 handle_switch_W_finalize();
721 handle_switch_v_finalize();
723 list = NULL;
724 if (!ptr_list_empty(filelist)) {
725 // Initialize type system
726 init_ctype();
728 create_builtin_stream();
729 add_pre_buffer("#define __CHECKER__ 1\n");
730 if (!preprocess_only)
731 declare_builtin_functions();
733 list = sparse_initial();
736 * Protect the initial token allocations, since
737 * they need to survive all the others
739 protect_token_alloc();
741 return list;
744 struct symbol_list * __sparse(char *filename)
746 struct symbol_list *res;
748 /* Clear previous symbol list */
749 translation_unit_used_list = NULL;
751 new_file_scope();
752 res = sparse_file(filename);
754 /* Drop the tokens for this file after parsing */
755 clear_token_alloc();
757 /* And return it */
758 return res;
761 struct symbol_list * sparse(char *filename)
763 struct symbol_list *res = __sparse(filename);
765 /* Evaluate the complete symbol list */
766 evaluate_symbol_list(res);
768 return res;