Make symbol debugging print out the symbol address too.
[smatch.git] / test-parsing.c
blob8002f89a30974c7e1b09fdf888ed3cd1a85648f1
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, all rights reserved.
7 */
8 #include <stdarg.h>
9 #include <stdlib.h>
10 #include <stdio.h>
11 #include <string.h>
12 #include <ctype.h>
13 #include <unistd.h>
14 #include <fcntl.h>
16 #include "lib.h"
17 #include "token.h"
18 #include "parse.h"
19 #include "symbol.h"
20 #include "expression.h"
22 static unsigned int pre_buffer_size = 0;
23 static unsigned char pre_buffer[8192];
25 static void add_pre_buffer(const char *fmt, ...)
27 va_list args;
28 unsigned int size;
30 va_start(args, fmt);
31 size = pre_buffer_size;
32 size += vsnprintf(pre_buffer + size,
33 sizeof(pre_buffer) - size,
34 fmt, args);
35 pre_buffer_size = size;
36 va_end(args);
39 static void handle_switch(char *arg)
41 switch (*arg) {
42 case 'D': {
43 const char *name = arg+1;
44 const char *value = "";
45 for (;;) {
46 char c;
47 c = *++arg;
48 if (!c)
49 break;
50 if (isspace(c) || c == '=') {
51 *arg = '\0';
52 value = arg+1;
53 break;
56 add_pre_buffer("#define %s %s\n", name, value);
57 return;
60 case 'I':
61 add_pre_buffer("#add_include \"%s/\"\n", arg+1);
62 return;
63 default:
64 fprintf(stderr, "unknown switch '%s'\n", arg);
68 static void clean_up_symbol(struct symbol *sym, void *_parent, int flags)
70 evaluate_symbol(sym);
73 int main(int argc, char **argv)
75 int i, fd;
76 char *filename = NULL;
77 struct token *token;
79 // Initialize symbol stream first, so that we can add defines etc
80 init_symbols();
82 // Stupid defines to make various headers happy
83 add_pre_buffer("#define __GNUC__ 2\n");
84 add_pre_buffer("#define __GNUC_MINOR__ 95\n");
86 for (i = 1; i < argc; i++) {
87 char *arg = argv[i];
88 if (arg[0] == '-') {
89 handle_switch(arg+1);
90 continue;
92 filename = arg;
96 fd = open(filename, O_RDONLY);
97 if (fd < 0)
98 die("No such file: %s", argv[1]);
100 // Tokenize the input stream
101 token = tokenize(filename, fd, NULL);
102 close(fd);
104 // Prepend the initial built-in stream
105 token = tokenize_buffer(pre_buffer, pre_buffer_size, token);
107 // Pre-process the stream
108 token = preprocess(token);
110 // Parse the resulting C code
111 translation_unit(token, &used_list);
113 // Do type evaluation and simplify
114 symbol_iterate(used_list, clean_up_symbol, NULL);
116 #if 1
117 // Show the end result.
118 show_symbol_list(used_list, "\n\n");
119 printf("\n\n");
120 #endif
122 #if 0
123 // And show the allocation statistics
124 show_ident_alloc();
125 show_token_alloc();
126 show_symbol_alloc();
127 show_expression_alloc();
128 show_statement_alloc();
129 show_string_alloc();
130 show_bytes_alloc();
131 #endif
132 return 0;