2 * Example trivial client program that uses the sparse library
3 * to tokenize, pre-process and parse a C file, and prints out
6 * Copyright (C) 2003 Transmeta Corp.
9 * Licensed under the Open Software License version 1.1
23 #include "expression.h"
25 static void clean_up_symbol(struct symbol
*sym
, void *_parent
, int flags
)
27 check_duplicates(sym
);
32 int main(int argc
, char **argv
)
35 char *filename
= NULL
, **args
;
38 // Initialize symbol stream first, so that we can add defines etc
41 create_builtin_stream();
42 add_pre_buffer("#define __CHECKER__ 1\n");
43 add_pre_buffer("extern void *__builtin_memcpy(void *, const void *, unsigned long);\n");
44 add_pre_buffer("extern void * __builtin_return_address(int);\n");
52 args
= handle_switch(arg
+1, args
);
59 fd
= open(filename
, O_RDONLY
);
61 die("No such file: %s", filename
);
63 // Tokenize the input stream
64 token
= tokenize(filename
, fd
, NULL
);
67 // Prepend any "include" file to the stream.
69 token
= tokenize(include
, include_fd
, token
);
71 // Prepend the initial built-in stream
72 token
= tokenize_buffer(pre_buffer
, pre_buffer_size
, token
);
74 // Pre-process the stream
75 token
= preprocess(token
);
77 if (preprocess_only
) {
78 while (!eof_token(token
)) {
80 struct token
*next
= token
->next
;
81 char * separator
= "";
82 if (next
->pos
.whitespace
)
84 if (next
->pos
.newline
) {
85 separator
= "\n\t\t\t\t\t";
90 printf("%s%.*s", show_token(token
), prec
, separator
);
98 // Parse the resulting C code
99 translation_unit(token
, &used_list
);
101 // Do type evaluation and simplify
102 symbol_iterate(used_list
, clean_up_symbol
, NULL
);