db: add a comment
[smatch.git] / check_db_info.c
blob5efeb09819031f388fc165ce780f84b58b5ef63a
1 /*
2 * smatch/check_db_info.c
4 * Copyright (C) 2010 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
8 */
10 #include "smatch.h"
11 #include "smatch_extra.h"
13 static int my_id;
15 static struct range_list *return_ranges;
17 static void add_return_range(struct range_list *rl)
19 if (!return_ranges) {
20 return_ranges = rl;
21 return;
23 return_ranges = range_list_union(return_ranges, rl);
26 static void match_return(struct expression *ret_value)
28 struct range_list *rl;
30 ret_value = strip_expr(ret_value);
31 if (!ret_value)
32 return;
34 if (get_implied_range_list(ret_value, &rl))
35 add_return_range(rl);
36 else
37 add_return_range(whole_range_list());
40 static void match_end_func(struct symbol *sym)
42 if (!return_ranges)
43 return;
44 sm_msg("info: function_return_values '%s' %s",
45 show_ranges(return_ranges), global_static());
46 return_ranges = NULL;
49 void check_db_info(int id)
51 if (!option_info)
52 return;
53 my_id = id;
54 add_hook(&match_return, RETURN_HOOK);
55 add_hook(&match_end_func, END_FUNC_HOOK);