Commit 26b84487 by Richard Kenner Committed by Richard Kenner

fold-const.c (extract_muldiv, [...]): Detect case when conversion overflows.

	* fold-const.c (extract_muldiv, case CONVERT_EXPR): Detect case
	when conversion overflows.

From-SVN: r65900
parent 1a96dc46
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
2003-04-21 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> 2003-04-21 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* fold-const.c (extract_muldiv, case CONVERT_EXPR): Detect case
when conversion overflows.
* stor-layout.c (layout_decl): Don't set DECL_SIZE_UNIT if already set. * stor-layout.c (layout_decl): Don't set DECL_SIZE_UNIT if already set.
* expr.c (store_constructor): Set RTX_UNCHANGING_P if readonly_field_p * expr.c (store_constructor): Set RTX_UNCHANGING_P if readonly_field_p
......
...@@ -4182,8 +4182,12 @@ extract_muldiv_1 (t, c, code, wide_type) ...@@ -4182,8 +4182,12 @@ extract_muldiv_1 (t, c, code, wide_type)
/* Pass the constant down and see if we can make a simplification. If /* Pass the constant down and see if we can make a simplification. If
we can, replace this expression with the inner simplification for we can, replace this expression with the inner simplification for
possible later conversion to our or some other type. */ possible later conversion to our or some other type. */
if (0 != (t1 = extract_muldiv (op0, convert (TREE_TYPE (op0), c), code, if ((t2 = convert (TREE_TYPE (op0), c)) != 0
code == MULT_EXPR ? ctype : NULL_TREE))) && TREE_CODE (t2) == INTEGER_CST
&& ! TREE_CONSTANT_OVERFLOW (t2)
&& (0 != (t1 = extract_muldiv (op0, t2, code,
code == MULT_EXPR
? ctype : NULL_TREE))))
return t1; return t1;
break; break;
...@@ -5478,13 +5482,17 @@ fold (expr) ...@@ -5478,13 +5482,17 @@ fold (expr)
if (TREE_CODE (parg0) == MULT_EXPR if (TREE_CODE (parg0) == MULT_EXPR
&& TREE_CODE (parg1) != MULT_EXPR) && TREE_CODE (parg1) != MULT_EXPR)
return fold (build (PLUS_EXPR, type, return fold (build (PLUS_EXPR, type,
fold (build (PLUS_EXPR, type, parg0, marg)), fold (build (PLUS_EXPR, type,
parg1)); convert (type, parg0),
convert (type, marg))),
convert (type, parg1)));
if (TREE_CODE (parg0) != MULT_EXPR if (TREE_CODE (parg0) != MULT_EXPR
&& TREE_CODE (parg1) == MULT_EXPR) && TREE_CODE (parg1) == MULT_EXPR)
return fold (build (PLUS_EXPR, type, return fold (build (PLUS_EXPR, type,
fold (build (PLUS_EXPR, type, parg1, marg)), fold (build (PLUS_EXPR, type,
parg0)); convert (type, parg1),
convert (type, marg))),
convert (type, parg0)));
} }
if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR) if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR)
...@@ -5816,7 +5824,8 @@ fold (expr) ...@@ -5816,7 +5824,8 @@ fold (expr)
TREE_OPERAND (arg0, 1))); TREE_OPERAND (arg0, 1)));
if (TREE_CODE (arg1) == INTEGER_CST if (TREE_CODE (arg1) == INTEGER_CST
&& 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1, && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0),
convert (type, arg1),
code, NULL_TREE))) code, NULL_TREE)))
return convert (type, tem); return convert (type, tem);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment