]> gcc.gnu.org Git - gcc.git/commitdiff
tree-cfg.c (verify_expr): Verify that BIT_FIELD_REF...
authorMartin Jambor <mjambor@suse.cz>
Wed, 29 May 2013 10:32:22 +0000 (12:32 +0200)
committerMartin Jambor <jamborm@gcc.gnu.org>
Wed, 29 May 2013 10:32:22 +0000 (12:32 +0200)
2013-05-29  Martin Jambor  <mjambor@suse.cz>

* tree-cfg.c (verify_expr): Verify that BIT_FIELD_REF, REALPART_EXPR
and IMAGPART_EXPR do not occur within other handled_components.

From-SVN: r199405

gcc/ChangeLog
gcc/tree-cfg.c

index 012c7c4af650c33f5d0b2c4fbddef90e9a256f19..0e41fc2c15cee6c2e70c3f118594e7ab99efc827 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-29  Martin Jambor  <mjambor@suse.cz>
+
+       * tree-cfg.c (verify_expr): Verify that BIT_FIELD_REF, REALPART_EXPR
+       and IMAGPART_EXPR do not occur within other handled_components.
+
 2013-05-29  Richard Biener  <rguenther@suse.de>
 
        * tree-vect-slp.c (vect_bb_slp_scalar_cost): Guard vinfo
index fe76a8c3c2a8d5c64f8df5092d247ce20c00aab4..4b91a35f17d46a3530b5c2549250d033429f7543 100644 (file)
@@ -2675,6 +2675,34 @@ verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
          return t;
        }
 
+      if (TREE_CODE (t) == BIT_FIELD_REF)
+       {
+         if (!host_integerp (TREE_OPERAND (t, 1), 1)
+             || !host_integerp (TREE_OPERAND (t, 2), 1))
+           {
+             error ("invalid position or size operand to BIT_FIELD_REF");
+             return t;
+           }
+         if (INTEGRAL_TYPE_P (TREE_TYPE (t))
+             && (TYPE_PRECISION (TREE_TYPE (t))
+                 != TREE_INT_CST_LOW (TREE_OPERAND (t, 1))))
+           {
+             error ("integral result type precision does not match "
+                    "field size of BIT_FIELD_REF");
+             return t;
+           }
+         else if (!INTEGRAL_TYPE_P (TREE_TYPE (t))
+                  && TYPE_MODE (TREE_TYPE (t)) != BLKmode
+                  && (GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (t)))
+                      != TREE_INT_CST_LOW (TREE_OPERAND (t, 1))))
+           {
+             error ("mode precision of non-integral result does not "
+                    "match field size of BIT_FIELD_REF");
+             return t;
+           }
+       }
+      t = TREE_OPERAND (t, 0);
+
       /* Fall-through.  */
     case COMPONENT_REF:
     case ARRAY_REF:
@@ -2697,32 +2725,13 @@ verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
              if (TREE_OPERAND (t, 3))
                CHECK_OP (3, "invalid array stride");
            }
-         else if (TREE_CODE (t) == BIT_FIELD_REF)
+         else if (TREE_CODE (t) == BIT_FIELD_REF
+                  || TREE_CODE (t) == REALPART_EXPR
+                  || TREE_CODE (t) == IMAGPART_EXPR)
            {
-             if (!host_integerp (TREE_OPERAND (t, 1), 1)
-                 || !host_integerp (TREE_OPERAND (t, 2), 1))
-               {
-                 error ("invalid position or size operand to BIT_FIELD_REF");
-                 return t;
-               }
-             if (INTEGRAL_TYPE_P (TREE_TYPE (t))
-                 && (TYPE_PRECISION (TREE_TYPE (t))
-                     != TREE_INT_CST_LOW (TREE_OPERAND (t, 1))))
-               {
-                 error ("integral result type precision does not match "
-                        "field size of BIT_FIELD_REF");
-                 return t;
-               }
-             else if (!INTEGRAL_TYPE_P (TREE_TYPE (t))
-                      && !AGGREGATE_TYPE_P (TREE_TYPE (t))
-                      && TYPE_MODE (TREE_TYPE (t)) != BLKmode
-                      && (GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (t)))
-                          != TREE_INT_CST_LOW (TREE_OPERAND (t, 1))))
-               {
-                 error ("mode precision of non-integral result does not "
-                        "match field size of BIT_FIELD_REF");
-                 return t;
-               }
+             error ("non-top-level BIT_FIELD_REF, IMAGPART_EXPR or "
+                    "REALPART_EXPR");
+             return t;
            }
 
          t = TREE_OPERAND (t, 0);
This page took 1.101599 seconds and 5 git commands to generate.