2 * sparse/check_deref_check.c
4 * Copyright (C) 2009 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
11 #include "smatch_extra.h"
18 static void underef(const char *name
, struct symbol
*sym
, struct expression
*expr
, void *unused
)
20 set_state(my_id
, name
, sym
, &oktocheck
);
23 static void match_dereference(struct expression
*expr
)
27 if (expr
->type
!= EXPR_PREOP
)
29 if (getting_address())
32 expr
= strip_expr(expr
->unop
);
33 if (implied_not_equal(expr
, 0))
35 set_state_expr(my_id
, expr
, &derefed
);
36 name
= get_variable_from_expr(expr
, NULL
);
39 add_modification_hook(my_id
, name
, &underef
, NULL
);
43 static void match_condition(struct expression
*expr
)
45 if (__in_pre_condition
)
48 if (get_state_expr(my_id
, expr
) == &derefed
) {
51 name
= get_variable_from_expr(expr
, NULL
);
52 if (!implied_not_equal(expr
, 0))
53 sm_msg("warn: variable dereferenced before check '%s'", name
);
54 set_state_expr(my_id
, expr
, &oktocheck
);
59 void check_deref_check(int id
)
62 add_hook(&match_dereference
, DEREF_HOOK
);
63 add_hook(&match_condition
, CONDITION_HOOK
);