]> git.ipfire.org Git - thirdparty/gcc.git/commit
analyzer: fix ICE on escaped unknown pointers [PR96611]
authorDavid Malcolm <dmalcolm@redhat.com>
Fri, 14 Aug 2020 14:48:30 +0000 (10:48 -0400)
committerGiuliano Belinassi <giuliano.belinassi@usp.br>
Mon, 17 Aug 2020 18:08:14 +0000 (15:08 -0300)
commitfd151a9ade829371897e4661f11ae296ab3bb174
treea19fb922a343c447d8920372ab8dc9cb3806c8ed
parentc6ce0e5b967476fe698fefdb941d2944efe56090
analyzer: fix ICE on escaped unknown pointers [PR96611]

PR analyzer/96611 reports an ICE within the handling for unknown
functions, when passing a pointer to something accessed via a
global pointer, after an unknown function has already been called.

The first unknown function leads to the store being flagged, so
the access to the global pointer leads to (*unknown_svalue) for
the base region of the argument to the 2nd function, and thus
*unknown_svalue being reachable by the 2nd unknown function,
triggering an assertion failure.

Handle this case by rejecting attempts to get a cluster for
the unknown pointer, fixing the ICE.

gcc/analyzer/ChangeLog:
PR analyzer/96611
* store.cc (store::mark_as_escaped): Reject attempts to
get a cluster for an unknown pointer.

gcc/testsuite/ChangeLog:
PR analyzer/96611
* gcc.dg/analyzer/pr96611.c: New test.
gcc/analyzer/store.cc
gcc/testsuite/gcc.dg/analyzer/pr96611.c [new file with mode: 0644]