2 * Example trivial client program that uses the sparse library
5 * Copyright (C) 2003 Transmeta Corp.
7 * Copyright 2003 Jeff Garzik
9 * Licensed under the Open Software License version 1.1
24 #include "expression.h"
26 extern void emit_unit(const char *basename
, struct symbol_list
*list
);
28 static void clean_up_symbol(struct symbol
*sym
, void *_parent
, int flags
)
34 int main(int argc
, char **argv
)
37 char *basename
, *filename
= NULL
, **args
;
40 // Initialize symbol stream first, so that we can add defines etc
43 create_builtin_stream();
51 args
= handle_switch(arg
+ 1, args
);
58 die("No file specified");
60 basename
= strrchr(filename
, '/');
63 else if ((basename
== filename
) && (basename
[1] == 0)) {
64 fprintf(stderr
, "um\n");
69 fprintf(stderr
, "um\n");
74 fd
= open(filename
, O_RDONLY
);
76 die("No such file: %s", argv
[1]);
78 // Tokenize the input stream
79 token
= tokenize(filename
, fd
, NULL
);
82 // Prepend the initial built-in stream
83 token
= tokenize_buffer(pre_buffer
, pre_buffer_size
, token
);
85 // Pre-process the stream
86 token
= preprocess(token
);
88 // Parse the resulting C code
89 translation_unit(token
, &used_list
);
91 // Do type evaluation and simplification
92 symbol_iterate(used_list
, clean_up_symbol
, NULL
);
94 // Show the end result.
95 emit_unit(basename
, used_list
);
98 // And show the allocation statistics
102 show_expression_alloc();
103 show_statement_alloc();