public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug analyzer/101503] [12 Regression] ICE in involves_p, at analyzer/svalue.cc:557
Date: Mon, 19 Jul 2021 19:44:59 +0000	[thread overview]
Message-ID: <bug-101503-4-Lbo7Ag7nXL@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-101503-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101503

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by David Malcolm <dmalcolm@gcc.gnu.org>:

https://gcc.gnu.org/g:a113b14398f2a4ad2742e6e9c87e25cac60f263e

commit r12-2399-ga113b14398f2a4ad2742e6e9c87e25cac60f263e
Author: David Malcolm <dmalcolm@redhat.com>
Date:   Mon Jul 19 15:44:02 2021 -0400

    analyzer: add svalue::can_have_associated_state_p [PR101503]

    PR analyzer/101503 reports an assertion failure due to an unexpected
    "UNKNOWN" value (due to using --param analyzer-max-svalue-depth=0).

    This patch fixes this by rejecting attempts to purge state involving
    unknown/poisoned svalues (in region_model::purge_state_involving),
    as these svalues should not have state associated with them - they
    are singletons w.r.t each type.

    To be more systematic about this, the patch also introduces a new
    svalue::can_have_associated_state_p which returns false for
    unknown/poisoned svalues, so that we can reject adding constraints
    or sm-state on them, or building various kinds of svalue in terms
    of them (e.g. unary ops, binary ops, etc).

    gcc/analyzer/ChangeLog:
            PR analyzer/101503
            * constraint-manager.cc (constraint_manager::add_constraint): Use
            can_have_associated_state_p rather than testing for unknown.
            (constraint_manager::get_or_add_equiv_class): Likewise.
            * program-state.cc (sm_state_map::set_state): Likewise.
            (sm_state_map::impl_set_state): Add assertion.
            * region-model-manager.cc
            (region_model_manager::maybe_fold_unaryop): Handle poisoned
            values.
            (region_model_manager::maybe_fold_binop): Move handling of unknown
            values...
            (region_model_manager::get_or_create_binop): ...to here, and
            generalize to use can_have_associated_state_p.
            (region_model_manager::maybe_fold_sub_svalue): Use
            can_have_associated_state_p rather than testing for unknown.
            (region_model_manager::maybe_fold_repeated_svalue): Use unknown
            when the size or repeated value is "unknown"/"poisoned".
            * region-model.cc (region_model::purge_state_involving): Reject
            attempts to purge unknown/poisoned svalues, as these svalues
            should not have state associated with them.
            * svalue.cc (sub_svalue::sub_svalue): Assert that we're building
            on top of an svalue with can_have_associated_state_p.
            (repeated_svalue::repeated_svalue): Likewise.
            (bits_within_svalue::bits_within_svalue): Likewise.
            * svalue.h (svalue::can_have_associated_state_p): New.
            (unknown_svalue::can_have_associated_state_p): New.
            (poisoned_svalue::can_have_associated_state_p): New.
            (unaryop_svalue::unaryop_svalue): Assert that we're building on
            top of an svalue with can_have_associated_state_p.
            (binop_svalue::binop_svalue): Likewise.
            (widening_svalue::widening_svalue): Likewise.

    gcc/testsuite/ChangeLog:
            PR analyzer/101503
            * gcc.dg/analyzer/pr101503.c: New test.

    Signed-off-by: David Malcolm <dmalcolm@redhat.com>

  parent reply	other threads:[~2021-07-19 19:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-19  6:16 [Bug analyzer/101503] New: " asolokha at gmx dot com
2021-07-19  6:51 ` [Bug analyzer/101503] " rguenth at gcc dot gnu.org
2021-07-19 15:00 ` dmalcolm at gcc dot gnu.org
2021-07-19 19:44 ` cvs-commit at gcc dot gnu.org [this message]
2021-07-19 19:47 ` dmalcolm at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-101503-4-Lbo7Ag7nXL@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).