2 * smatch/smatch_capped.c
4 * Copyright (C) 2011 Oracle. All rights reserved.
6 * Licensed under the Open Software License version 1.1
11 * This is trying to make a list of the variables which
12 * have capped values. Sometimes we don't know what the
13 * cap is, for example if we are comparing variables but
14 * we don't know the values of the variables. In that
15 * case we only know that our variable is capped and we
16 * sort that information here.
20 #include "smatch_slist.h"
27 static int is_capped_macro(struct expression
*expr
)
31 name
= get_macro_name(expr
->pos
);
35 if (strcmp(name
, "min") == 0)
37 if (strcmp(name
, "MIN") == 0)
39 if (strcmp(name
, "min_t") == 0)
45 int is_capped(struct expression
*expr
)
49 expr
= strip_expr(expr
);
53 if (is_capped_macro(expr
))
56 if (expr
->type
== EXPR_BINOP
) {
59 if (expr
->op
== SPECIAL_RIGHTSHIFT
)
62 return is_capped(expr
->right
);
63 if (!is_capped(expr
->left
))
67 if (!is_capped(expr
->right
))
71 if (get_implied_max(expr
, &val
))
73 if (get_state_expr(my_id
, expr
) == &capped
)
78 void set_param_capped_data(const char *name
, struct symbol
*sym
, char *key
, char *value
)
82 if (strncmp(key
, "$$", 2))
84 snprintf(fullname
, 256, "%s%s", name
, key
+ 2);
85 set_state(my_id
, fullname
, sym
, &capped
);
88 static void match_condition(struct expression
*expr
)
90 struct smatch_state
*left_true
= NULL
;
91 struct smatch_state
*left_false
= NULL
;
92 struct smatch_state
*right_true
= NULL
;
93 struct smatch_state
*right_false
= NULL
;
96 if (expr
->type
!= EXPR_COMPARE
)
102 case SPECIAL_UNSIGNED_LT
:
103 case SPECIAL_UNSIGNED_LTE
:
105 right_false
= &capped
;
109 case SPECIAL_UNSIGNED_GT
:
110 case SPECIAL_UNSIGNED_GTE
:
111 left_false
= &capped
;
112 right_true
= &capped
;
116 right_true
= &capped
;
118 case SPECIAL_NOTEQUAL
:
119 left_false
= &capped
;
120 right_false
= &capped
;
127 set_true_false_states_expr(my_id
, expr
->right
, right_true
, right_false
);
128 set_true_false_states_expr(my_id
, expr
->left
, left_true
, left_false
);
131 static void match_assign(struct expression
*expr
)
133 if (is_capped(expr
->right
)) {
134 set_state_expr(my_id
, expr
->left
, &capped
);
136 if (get_state_expr(my_id
, expr
->left
))
137 set_state_expr(my_id
, expr
->left
, &uncapped
);
141 static void match_caller_info(struct expression
*expr
)
143 struct expression
*tmp
;
147 func
= get_fnptr_name(expr
->fn
);
152 FOR_EACH_PTR(expr
->args
, tmp
) {
154 sm_msg("info: passes capped_data %s %d '$$' %s", func
,
155 i
, is_static(expr
->fn
) ? "static" : "global");
157 } END_FOR_EACH_PTR(tmp
);
160 static void struct_member_callback(char *fn
, char *global_static
, int param
, char *printed_name
, struct smatch_state
*state
)
162 if (state
!= &capped
)
164 sm_msg("info: passes capped_data '%s' %d '%s' %s", fn
, param
, printed_name
, global_static
);
167 void register_capped(int id
)
171 add_definition_db_callback(set_param_capped_data
, CAPPED_DATA
);
172 add_hook(&match_condition
, CONDITION_HOOK
);
173 add_hook(&match_assign
, ASSIGNMENT_HOOK
);
175 add_hook(&match_caller_info
, FUNCTION_CALL_HOOK
);
176 add_member_info_callback(my_id
, struct_member_callback
);