Commit 90b4c164 by Eric Botcazou Committed by Eric Botcazou

trans.c (push_range_check_info): Replace early test with assertion.

	* gcc-interface/trans.c (push_range_check_info): Replace early test
	with assertion.
	(Raise_Error_to_gnu): Do not call push_range_check_info if the loop
	stack is empty.
	* gcc-interface/utils.c (convert_to_fat_pointer): Fix formatting.
	* gcc-interface/utils2.c (gnat_invariant_expr): Deal with padded types
	and revert latest change.

From-SVN: r217998
parent 29e0597e
2014-11-24 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/trans.c (push_range_check_info): Replace early test
with assertion.
(Raise_Error_to_gnu): Do not call push_range_check_info if the loop
stack is empty.
* gcc-interface/utils.c (convert_to_fat_pointer): Fix formatting.
* gcc-interface/utils2.c (gnat_invariant_expr): Deal with padded types
and revert latest change.
2014-11-22 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/trans.c (Call_to_gnu): Strip unchecked conversions on
......
......@@ -2569,9 +2569,6 @@ push_range_check_info (tree var)
struct loop_info_d *iter = NULL;
unsigned int i;
if (vec_safe_is_empty (gnu_loop_stack))
return NULL;
var = remove_conversions (var, false);
if (TREE_CODE (var) != VAR_DECL)
......@@ -2580,6 +2577,8 @@ push_range_check_info (tree var)
if (decl_function_context (var) != current_function_decl)
return NULL;
gcc_assert (vec_safe_length (gnu_loop_stack) > 0);
for (i = vec_safe_length (gnu_loop_stack) - 1;
vec_safe_iterate (gnu_loop_stack, i, &iter);
i--)
......@@ -5175,6 +5174,7 @@ Raise_Error_to_gnu (Node_Id gnat_node, tree *gnu_result_type_p)
the original checks reinstated, and a run time selection.
The former loop will be suitable for vectorization. */
if (flag_unswitch_loops
&& !vec_safe_is_empty (gnu_loop_stack)
&& (!gnu_low_bound
|| (gnu_low_bound = gnat_invariant_expr (gnu_low_bound)))
&& (!gnu_high_bound
......
......@@ -3860,8 +3860,7 @@ convert_to_fat_pointer (tree type, tree expr)
{
/* The template type can still be dummy at this point so we build an
empty constructor. The middle-end will fill it in with zeros. */
t = build_constructor (template_type,
NULL);
t = build_constructor (template_type, NULL);
TREE_CONSTANT (t) = TREE_STATIC (t) = 1;
null_bounds = build_unary_op (ADDR_EXPR, NULL_TREE, t);
SET_TYPE_NULL_BOUNDS (ptr_template_type, null_bounds);
......
......@@ -2780,7 +2780,13 @@ gnat_invariant_expr (tree expr)
|| (TREE_CODE (expr) == VAR_DECL && TREE_READONLY (expr)))
&& decl_function_context (expr) == current_function_decl
&& DECL_INITIAL (expr))
expr = remove_conversions (DECL_INITIAL (expr), false);
{
expr = DECL_INITIAL (expr);
/* Look into CONSTRUCTORs built to initialize padded types. */
if (TYPE_IS_PADDING_P (TREE_TYPE (expr)))
expr = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (expr))), expr);
expr = remove_conversions (expr, false);
}
if (TREE_CONSTANT (expr))
return fold_convert (type, expr);
......@@ -2836,7 +2842,7 @@ object:
if (!TREE_READONLY (t))
return NULL_TREE;
if (TREE_CODE (t) == CONSTRUCTOR || TREE_CODE (t) == PARM_DECL)
if (TREE_CODE (t) == PARM_DECL)
return fold_convert (type, expr);
if (TREE_CODE (t) == VAR_DECL
......
2014-11-24 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/opt45.adb: New test.
2014-11-24 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/dollar_sym_3.f: Update dg-error.
......
-- { dg-do compile }
-- { dg-options "-O3" }
procedure Opt45 is
type Index_T is mod 2 ** 32;
for Index_T'Size use 32;
for Index_T'Alignment use 1;
type Array_T is array (Index_T range <>) of Natural;
type Array_Ptr_T is access all Array_T;
My_Array_1 : aliased Array_T := (1, 2);
My_Array_2 : aliased Array_T := (3, 4);
Array_Ptr : Array_Ptr_T := null;
Index : Index_T := Index_T'First;
My_Value : Natural := Natural'First;
procedure Proc (Selection : Positive) is
begin
if Selection = 1 then
Array_Ptr := My_Array_1'Access;
Index := My_Array_1'First;
else
Array_Ptr := My_Array_2'Access;
Index := My_Array_2'First;
end if;
if My_Value = Natural'First then
My_Value := Array_Ptr.all (Index);
end if;
end;
begin
Proc (2);
end;
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