function_hooks: fake an assignment when functions return "0-s32max[$0->bar]"
[smatch.git] / check_impossible_mask.c
blobba99870c0e4356275bcb865f3bf400bc1fa5d137
1 /*
2 * Copyright (C) 2012 Oracle.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
18 #include "smatch.h"
20 static int my_id;
22 #if 0
23 static unsigned long long find_possible_bits(struct expression *expr)
25 sval_t sval;
26 unsigned long long ret;
27 int set;
28 int i;
30 expr = strip_expr(expr);
32 if (get_implied_value(expr, &sval))
33 return sval.uvalue;
35 if (expr->type == EXPR_BINOP && (expr->op == '&' || expr->op == '|')) {
36 unsigned long long left, right;
38 left = find_possible_bits(expr->left);
39 if (!left)
40 return 0;
41 right = find_possible_bits(expr->right);
42 if (!right)
43 return 0;
45 if (expr->op == '&')
46 return left & right;
47 return left | right;
50 get_absolute_max(expr, &sval);
51 ret = sval.value;
53 set = false;
54 for (i = 63; i >= 0; i--) {
55 if (ret & 1 << i)
56 set = true;
57 if (set)
58 ret |= 1 << i;
60 return ret;
62 #endif
64 static unsigned long long get_possible_bits(struct expression *expr)
66 sval_t sval;
68 expr = strip_expr(expr);
69 if (expr->type != EXPR_BINOP)
70 return 0;
71 if (expr->op != '&')
72 return 0;
73 if (!get_implied_value(expr->right, &sval))
74 return 0;
76 return sval.uvalue;
79 static void match_condition(struct expression *expr)
81 struct symbol *type;
82 sval_t sval;
83 unsigned long long left_mask, right_mask;
84 char *str;
86 type = get_type(expr);
87 if (!type)
88 type = &int_ctype;
90 if (expr->type != EXPR_COMPARE)
91 return;
92 if (expr->op != SPECIAL_EQUAL && expr->op != SPECIAL_NOTEQUAL)
93 return;
95 if (!get_value(expr->right, &sval))
96 return;
97 right_mask = sval.uvalue;
99 left_mask = get_possible_bits(expr->left);
100 if (!left_mask)
101 return;
103 if (type_bits(type) < 64) {
104 left_mask &= (1ULL << type_bits(type)) - 1;
105 right_mask &= (1ULL << type_bits(type)) - 1;
108 if ((left_mask & right_mask) == right_mask)
109 return;
111 str = expr_to_str(expr);
112 sm_msg("warn: masked condition '%s' is always %s.", str,
113 expr->op == SPECIAL_EQUAL ? "false" : "true");
114 free_string(str);
117 void check_impossible_mask(int id)
119 my_id = id;
121 add_hook(&match_condition, CONDITION_HOOK);