Lines Matching refs:checks
22 See the full list of available :ref:`checks <ubsan-checks>` below.
25 The checks have small runtime cost and no impact on address space layout or ABI.
52 You can enable only a subset of :ref:`checks <ubsan-checks>` offered by UBSan,
74 .. _ubsan-checks:
76 Available checks
79 Available checks are:
142 invalid pointers. These checks are made in terms of
155 signed left shift, also checks for signed overflow in C, and for
163 This includes all the checks covered by ``-ftrapv``, as well as checks for
164 signed division overflow (``INT_MIN/-1``), but not checks for
167 handled by ``-fsanitize=implicit-conversion`` group of checks.
185 - ``-fsanitize=undefined``: All of the checks listed above other than
188 of checks.
217 The ``null``, ``alignment``, ``object-size``, ``local-bounds``, and ``vptr`` checks do not apply
266 You disable UBSan checks for particular functions with
294 You need to specify a :ref:`check <ubsan-checks>` you are suppressing and the
308 * It is only possible to suppress recoverable checks. For the example above,
311 most of UBSan checks are recoverable by default.
313 fine-grained checks are supported.