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
19 * Basically the point of sval is that it can hold both ULLONG_MAX and
20 * LLONG_MIN. If it is an unsigned type then we use sval.uvalue or if it is
21 * signed we use sval.value.
23 * I considered just using one bit to store whether the value was signed vs
24 * unsigned but I think it might help to have the type information so we know
25 * how to do type promotion.
30 #include "smatch_slist.h"
31 #include "smatch_extra.h"
33 __ALLOCATOR(sval_t
, "svals", sval
);
35 sval_t
*sval_alloc(sval_t sval
)
39 ret
= __alloc_sval(0);
44 sval_t
*sval_alloc_permanent(sval_t sval
)
48 ret
= malloc(sizeof(*ret
));
53 sval_t
sval_blank(struct expression
*expr
)
57 ret
.type
= get_type(expr
);
59 ret
.type
= &int_ctype
;
60 ret
.value
= 123456789;
65 sval_t
sval_type_val(struct symbol
*type
, long long val
)
77 sval_t
sval_from_val(struct expression
*expr
, long long val
)
81 ret
= sval_blank(expr
);
83 ret
= sval_cast(get_type(expr
), ret
);
88 int sval_unsigned(sval_t sval
)
90 return type_unsigned(sval
.type
);
93 int sval_signed(sval_t sval
)
95 return !type_unsigned(sval
.type
);
98 int sval_bits(sval_t sval
)
100 return type_bits(sval
.type
);
103 int sval_positive_bits(sval_t sval
)
105 return type_positive_bits(sval
.type
);
108 int sval_bits_used(sval_t sval
)
112 for (i
= 64; i
>= 1; i
--) {
113 if (sval
.uvalue
& (1ULL << (i
- 1)))
119 int sval_is_negative(sval_t sval
)
121 if (type_unsigned(sval
.type
))
128 int sval_is_positive(sval_t sval
)
130 return !sval_is_negative(sval
);
133 int sval_is_min(sval_t sval
)
135 sval_t min
= sval_type_min(sval
.type
);
137 if (sval_unsigned(sval
)) {
138 if (sval
.uvalue
== 0)
142 /* return true for less than min as well */
143 return (sval
.value
<= min
.value
);
146 int sval_is_max(sval_t sval
)
148 sval_t max
= sval_type_max(sval
.type
);
150 if (sval_unsigned(sval
))
151 return (sval
.uvalue
>= max
.value
);
152 return (sval
.value
>= max
.value
);
155 int sval_is_a_min(sval_t sval
)
157 if (sval_signed(sval
) && sval
.value
== SHRT_MIN
)
159 if (sval_signed(sval
) && sval
.value
== INT_MIN
)
161 if (sval_signed(sval
) && sval
.value
== LLONG_MIN
)
166 int sval_is_a_max(sval_t sval
)
168 if (sval
.uvalue
== SHRT_MAX
)
170 if (sval
.uvalue
== INT_MAX
)
172 if (sval
.uvalue
== LLONG_MAX
)
174 if (sval
.uvalue
== USHRT_MAX
)
176 if (sval
.uvalue
== UINT_MAX
)
178 if (sval_unsigned(sval
) && sval
.uvalue
== ULLONG_MAX
)
180 if (sval
.value
> valid_ptr_max
- 1000 &&
181 sval
.value
< valid_ptr_max
+ 1000)
186 int sval_is_negative_min(sval_t sval
)
188 if (!sval_is_negative(sval
))
190 return sval_is_min(sval
);
194 * Returns -1 if one is smaller, 0 if they are the same and 1 if two is larger.
196 int sval_cmp(sval_t one
, sval_t two
)
201 if (sval_positive_bits(two
) > sval_positive_bits(one
))
203 if (type_bits(type
) < 31)
206 one
= sval_cast(type
, one
);
207 two
= sval_cast(type
, two
);
209 if (type_unsigned(type
)) {
210 if (one
.uvalue
< two
.uvalue
)
212 if (one
.uvalue
== two
.uvalue
)
216 /* fix me handle type promotion and unsigned values */
217 if (one
.value
< two
.value
)
219 if (one
.value
== two
.value
)
224 int sval_cmp_t(struct symbol
*type
, sval_t one
, sval_t two
)
226 sval_t one_cast
, two_cast
;
228 one_cast
= sval_cast(type
, one
);
229 two_cast
= sval_cast(type
, two
);
230 return sval_cmp(one_cast
, two_cast
);
233 int sval_cmp_val(sval_t one
, long long val
)
237 sval
= sval_type_val(&llong_ctype
, val
);
238 return sval_cmp(one
, sval
);
241 sval_t
sval_min(sval_t one
, sval_t two
)
243 if (sval_cmp(one
, two
) > 0)
248 sval_t
sval_max(sval_t one
, sval_t two
)
250 if (sval_cmp(one
, two
) < 0)
255 int sval_too_low(struct symbol
*type
, sval_t sval
)
257 if (sval_is_negative(sval
) && type_unsigned(type
))
259 if (type_signed(type
) && sval_unsigned(sval
))
261 if (sval_cmp(sval
, sval_type_min(type
)) < 0)
266 int sval_too_high(struct symbol
*type
, sval_t sval
)
268 if (sval_is_negative(sval
))
270 if (sval
.uvalue
> sval_type_max(type
).uvalue
)
275 int sval_fits(struct symbol
*type
, sval_t sval
)
277 if (sval_too_low(type
, sval
))
279 if (sval_too_high(type
, sval
))
284 sval_t
sval_cast(struct symbol
*type
, sval_t sval
)
292 switch (sval_bits(ret
)) {
294 if (sval_unsigned(ret
))
295 ret
.value
= (long long)(unsigned char)sval
.value
;
297 ret
.value
= (long long)(char)sval
.value
;
300 if (sval_unsigned(ret
))
301 ret
.value
= (long long)(unsigned short)sval
.value
;
303 ret
.value
= (long long)(short)sval
.value
;
306 if (sval_unsigned(ret
))
307 ret
.value
= (long long)(unsigned int)sval
.value
;
309 ret
.value
= (long long)(int)sval
.value
;
312 ret
.value
= sval
.value
;
318 sval_t
sval_preop(sval_t sval
, int op
)
322 sval
.value
= !sval
.value
;
325 sval
.value
= ~sval
.value
;
326 sval
= sval_cast(sval
.type
, sval
);
329 sval
.value
= -sval
.value
;
330 sval
= sval_cast(sval
.type
, sval
);
336 static sval_t
sval_binop_unsigned(struct symbol
*type
, sval_t left
, int op
, sval_t right
)
343 ret
.uvalue
= left
.uvalue
* right
.uvalue
;
346 if (right
.uvalue
== 0) {
347 sm_msg("debug: %s: divide by zero", __func__
);
348 ret
.uvalue
= 123456789;
350 ret
.uvalue
= left
.uvalue
/ right
.uvalue
;
354 ret
.uvalue
= left
.uvalue
+ right
.uvalue
;
357 ret
.uvalue
= left
.uvalue
- right
.uvalue
;
360 if (right
.uvalue
== 0) {
361 sm_msg("internal error: %s: MOD by zero", __func__
);
362 ret
.uvalue
= 123456789;
364 ret
.uvalue
= left
.uvalue
% right
.uvalue
;
368 ret
.uvalue
= left
.uvalue
| right
.uvalue
;
371 ret
.uvalue
= left
.uvalue
& right
.uvalue
;
373 case SPECIAL_RIGHTSHIFT
:
374 ret
.uvalue
= left
.uvalue
>> right
.uvalue
;
376 case SPECIAL_LEFTSHIFT
:
377 ret
.uvalue
= left
.uvalue
<< right
.uvalue
;
380 ret
.uvalue
= left
.uvalue
^ right
.uvalue
;
383 sm_msg("internal error: %s: unhandled binop %s", __func__
,
385 ret
.uvalue
= 1234567;
391 static sval_t
sval_binop_signed(struct symbol
*type
, sval_t left
, int op
, sval_t right
)
398 ret
.value
= left
.value
* right
.value
;
401 if (right
.value
== 0) {
402 sm_msg("debug: %s: divide by zero", __func__
);
403 ret
.value
= 123456789;
404 } else if (left
.value
== LLONG_MIN
&& right
.value
== -1) {
405 sm_msg("debug: %s: invalid divide LLONG_MIN/-1", __func__
);
406 ret
.value
= 12345678;
408 ret
.value
= left
.value
/ right
.value
;
412 ret
.value
= left
.value
+ right
.value
;
415 ret
.value
= left
.value
- right
.value
;
418 if (right
.value
== 0) {
419 sm_msg("internal error: %s: MOD by zero", __func__
);
420 ret
.value
= 123456789;
422 ret
.value
= left
.value
% right
.value
;
426 ret
.value
= left
.value
| right
.value
;
429 ret
.value
= left
.value
& right
.value
;
431 case SPECIAL_RIGHTSHIFT
:
432 ret
.value
= left
.value
>> right
.value
;
434 case SPECIAL_LEFTSHIFT
:
435 ret
.value
= left
.value
<< right
.value
;
438 ret
.value
= left
.value
^ right
.value
;
441 sm_msg("internal error: %s: unhandled binop %s", __func__
,
448 sval_t
sval_binop(sval_t left
, int op
, sval_t right
)
454 if (sval_positive_bits(right
) > sval_positive_bits(left
))
456 if (type_positive_bits(type
) < 31)
459 if (type_unsigned(type
))
460 ret
= sval_binop_unsigned(type
, left
, op
, right
);
462 ret
= sval_binop_signed(type
, left
, op
, right
);
463 return sval_cast(type
, ret
);
466 int sval_unop_overflows(sval_t sval
, int op
)
470 if (sval_positive_bits(sval
) == 32 && sval
.value
== INT_MIN
)
472 if (sval_positive_bits(sval
) == 64 && sval
.value
== LLONG_MIN
)
474 if (sval_is_negative(sval
))
476 if (sval_signed(sval
))
478 if (sval_bits(sval
) == 32 && sval
.uvalue
> INT_MAX
)
480 if (sval_bits(sval
) == 64 && sval
.uvalue
> LLONG_MAX
)
485 int sval_binop_overflows(sval_t left
, int op
, sval_t right
)
491 if (type_positive_bits(right
.type
) > type_positive_bits(left
.type
))
493 if (type_positive_bits(type
) < 31)
496 max
= sval_type_max(type
);
497 min
= sval_type_min(type
);
501 if (sval_is_negative(left
) && sval_is_negative(right
)) {
502 if (left
.value
< min
.value
+ right
.value
)
506 if (sval_is_negative(left
) || sval_is_negative(right
))
508 if (left
.uvalue
> max
.uvalue
- right
.uvalue
)
512 return right
.uvalue
!= 0 && left
.uvalue
> max
.uvalue
/ right
.uvalue
;
514 if (type_unsigned(type
)) {
515 if (sval_cmp(left
, right
) < 0)
519 if (sval_is_negative(left
) && sval_is_negative(right
))
522 if (sval_is_negative(left
)) {
523 if (left
.value
< min
.value
+ right
.value
)
527 if (sval_is_negative(right
)) {
528 if (right
.value
== min
.value
)
530 right
= sval_preop(right
, '-');
531 if (sval_binop_overflows(left
, '+', right
))
536 case SPECIAL_LEFTSHIFT
:
537 if (sval_cmp(left
, sval_binop(max
, invert_op(op
), right
)) > 0)
544 const char *sval_to_str(sval_t sval
)
548 if (sval_unsigned(sval
) && sval
.value
== ULLONG_MAX
)
550 if (sval_unsigned(sval
) && sval
.value
== UINT_MAX
)
552 if (sval_unsigned(sval
) && sval
.value
== USHRT_MAX
)
555 if (sval_signed(sval
) && sval
.value
== LLONG_MAX
)
557 if (sval_signed(sval
) && sval
.value
== INT_MAX
)
559 if (sval_signed(sval
) && sval
.value
== SHRT_MAX
)
562 if (sval_signed(sval
) && sval
.value
== SHRT_MIN
)
564 if (sval_signed(sval
) && sval
.value
== INT_MIN
)
566 if (sval_signed(sval
) && sval
.value
== LLONG_MIN
)
569 if (sval_unsigned(sval
))
570 snprintf(buf
, sizeof(buf
), "%llu", sval
.value
);
571 else if (sval
.value
< 0)
572 snprintf(buf
, sizeof(buf
), "(%lld)", sval
.value
);
574 snprintf(buf
, sizeof(buf
), "%lld", sval
.value
);
576 return alloc_sname(buf
);
579 const char *sval_to_numstr(sval_t sval
)
583 if (sval_unsigned(sval
))
584 snprintf(buf
, sizeof(buf
), "%llu", sval
.value
);
585 else if (sval
.value
< 0)
586 snprintf(buf
, sizeof(buf
), "(%lld)", sval
.value
);
588 snprintf(buf
, sizeof(buf
), "%lld", sval
.value
);
590 return alloc_sname(buf
);
593 sval_t
ll_to_sval(long long val
)
597 ret
.type
= &llong_ctype
;
602 static void free_svals(struct symbol
*sym
)
609 void register_sval(int my_id
)
611 add_hook(&free_svals
, END_FUNC_HOOK
);