public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-7252] analyzer: fix ICE on cast to NULL type [PR104524]
@ 2022-02-15 21:35 David Malcolm
  0 siblings, 0 replies; only message in thread
From: David Malcolm @ 2022-02-15 21:35 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:84832cab6e43db7fa10ec53d15f8f8457aa31080

commit r12-7252-g84832cab6e43db7fa10ec53d15f8f8457aa31080
Author: David Malcolm <dmalcolm@redhat.com>
Date:   Mon Feb 14 13:27:45 2022 -0500

    analyzer: fix ICE on cast to NULL type [PR104524]
    
    gcc/analyzer/ChangeLog:
            PR analyzer/104524
            * region-model-manager.cc
            (region_model_manager::maybe_fold_sub_svalue): Only call
            get_or_create_cast if type is non-NULL.
    
    gcc/testsuite/ChangeLog:
            PR analyzer/104524
            * gcc.dg/analyzer/pr104524.c: New test.
    
    Signed-off-by: David Malcolm <dmalcolm@redhat.com>

Diff:
---
 gcc/analyzer/region-model-manager.cc     | 5 +++--
 gcc/testsuite/gcc.dg/analyzer/pr104524.c | 9 +++++++++
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/gcc/analyzer/region-model-manager.cc b/gcc/analyzer/region-model-manager.cc
index d7156c5499f..917af22c4f5 100644
--- a/gcc/analyzer/region-model-manager.cc
+++ b/gcc/analyzer/region-model-manager.cc
@@ -771,7 +771,7 @@ region_model_manager::maybe_fold_sub_svalue (tree type,
       if (unary->get_op () == NOP_EXPR
 	  || unary->get_op () == VIEW_CONVERT_EXPR)
 	if (tree cst = unary->get_arg ()->maybe_get_constant ())
-	  if (zerop (cst))
+	  if (zerop (cst) && type)
 	    {
 	      const svalue *cst_sval
 		= get_or_create_constant_svalue (cst);
@@ -786,7 +786,8 @@ region_model_manager::maybe_fold_sub_svalue (tree type,
 	/* If we have a concrete 1-byte access within the parent region... */
 	byte_range subregion_bytes (0, 0);
 	if (subregion->get_relative_concrete_byte_range (&subregion_bytes)
-	    && subregion_bytes.m_size_in_bytes == 1)
+	    && subregion_bytes.m_size_in_bytes == 1
+	    && type)
 	  {
 	    /* ...then attempt to get that char from the STRING_CST.  */
 	    HOST_WIDE_INT hwi_start_byte
diff --git a/gcc/testsuite/gcc.dg/analyzer/pr104524.c b/gcc/testsuite/gcc.dg/analyzer/pr104524.c
new file mode 100644
index 00000000000..875098c69a4
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/analyzer/pr104524.c
@@ -0,0 +1,9 @@
+int src[1];
+
+int
+main (int c, char **a)
+{
+  __builtin_memcpy (*a, src, c);
+
+  return 0;
+}


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-02-15 21:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-15 21:35 [gcc r12-7252] analyzer: fix ICE on cast to NULL type [PR104524] David Malcolm

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).