Don't warn about signedness for hax/octal constants. They are commonly
[smatch.git] / test-parsing.c
blobc9ee16d3aa20534479ff35c00d69640fb4793ac1
1 /*
2 * Example trivial client program that uses the sparse library
3 * to tokenize, pre-process and parse a C file, and prints out
4 * the results.
6 * Copyright (C) 2003 Transmeta Corp.
8 * Licensed under the Open Software License version 1.1
9 */
10 #include <stdarg.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <string.h>
14 #include <ctype.h>
15 #include <unistd.h>
16 #include <fcntl.h>
18 #include "lib.h"
19 #include "token.h"
20 #include "parse.h"
21 #include "symbol.h"
22 #include "expression.h"
24 static unsigned int pre_buffer_size = 0;
25 static unsigned char pre_buffer[8192];
27 static void add_pre_buffer(const char *fmt, ...)
29 va_list args;
30 unsigned int size;
32 va_start(args, fmt);
33 size = pre_buffer_size;
34 size += vsnprintf(pre_buffer + size,
35 sizeof(pre_buffer) - size,
36 fmt, args);
37 pre_buffer_size = size;
38 va_end(args);
41 static void handle_switch(char *arg)
43 switch (*arg) {
44 case 'D': {
45 const char *name = arg+1;
46 const char *value = "";
47 for (;;) {
48 char c;
49 c = *++arg;
50 if (!c)
51 break;
52 if (isspace(c) || c == '=') {
53 *arg = '\0';
54 value = arg+1;
55 break;
58 add_pre_buffer("#define %s %s\n", name, value);
59 return;
62 case 'I':
63 add_pre_buffer("#add_include \"%s/\"\n", arg+1);
64 return;
65 default:
66 fprintf(stderr, "unknown switch '%s'\n", arg);
70 static void clean_up_symbol(struct symbol *sym, void *_parent, int flags)
72 evaluate_symbol(sym);
75 int main(int argc, char **argv)
77 int i, fd;
78 char *filename = NULL;
79 struct token *token;
81 // Initialize symbol stream first, so that we can add defines etc
82 init_symbols();
84 // Stupid defines to make various headers happy
85 add_pre_buffer("#define __GNUC__ 2\n");
86 add_pre_buffer("#define __GNUC_MINOR__ 95\n");
88 for (i = 1; i < argc; i++) {
89 char *arg = argv[i];
90 if (arg[0] == '-') {
91 handle_switch(arg+1);
92 continue;
94 filename = arg;
98 fd = open(filename, O_RDONLY);
99 if (fd < 0)
100 die("No such file: %s", argv[1]);
102 // Tokenize the input stream
103 token = tokenize(filename, fd, NULL);
104 close(fd);
106 // Prepend the initial built-in stream
107 token = tokenize_buffer(pre_buffer, pre_buffer_size, token);
109 // Pre-process the stream
110 token = preprocess(token);
112 // Parse the resulting C code
113 translation_unit(token, &used_list);
115 // Do type evaluation and simplify
116 symbol_iterate(used_list, clean_up_symbol, NULL);
118 #if 1
119 // Show the end result.
120 show_symbol_list(used_list, "\n\n");
121 printf("\n\n");
122 #endif
124 #if 0
125 // And show the allocation statistics
126 show_ident_alloc();
127 show_token_alloc();
128 show_symbol_alloc();
129 show_expression_alloc();
130 show_statement_alloc();
131 show_string_alloc();
132 show_bytes_alloc();
133 #endif
134 return 0;