[analyzer] Fix assertion failure in SMT conversion for unary operator on floats
authorTomasz Kamiński <tomasz.kamiński@sonarsource.com>
Thu, 26 Jan 2023 16:33:48 +0000 (17:33 +0100)
committerBalazs Benics <benicsbalazs@gmail.com>
Thu, 26 Jan 2023 16:33:48 +0000 (17:33 +0100)
commit3674421c4bc0cd3b65b8f1feaaf7038ac2d47ca8
tree854716861b600534b7a391cfc2ebcab11ff00a4c
parent98d55095d85129c2776a9d7a227c5f88e3ce2e01
[analyzer] Fix assertion failure in SMT conversion for unary operator on floats

In the handling of the Symbols from the RangExpr, the code assumed that
the operands of the unary operators need to have integral type.
However, the CSA can create SymExpr with a floating point operand, when
the integer value is cast into it, like `(float)h == (float)l` where
both of `h` and `l` are integers.

This patch handles such situations, by using `fromFloatUnOp()` instead
of `fromUnOp()`, when the operand have a floating point type.

I have investigated all other calls of `fromUnOp()`, and for one in:

 - `getZeroExpr()` is applied only on boolean types, so it correct
 - `fromBinOp()` is not invoked for floating points
 - `fromFloatUnOp()` I am uncertain about this case and I was not able
   to produce a test that would reach this point, as a negation of
   floating points numbers seem to produce `Unknown` symbols.

This issue exists since the introduction of `UnarySymExpr` in D125318
and their handling for Z3 in D125547.

Patch by Tomasz Kamiński.

Reviewed By: mikhail.ramalho

Differential Revision: https://reviews.llvm.org/D140891
clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
clang/test/Analysis/z3-crosscheck.c