re PR tree-optimization/43845 (Segfault when using __attribute__((const)), versions 4.4.3 and 4.6)

2010-04-22  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/43845
	* tree-ssa-pre.c (create_component_ref_by_pieces_1): Properly
	lookup the CALL_EXPR function and arguments.

	* gcc.c-torture/compile/pr43845.c: New testcase.

From-SVN: r158641
This commit is contained in:
Richard Guenther 2010-04-22 11:19:45 +00:00 committed by Richard Biener
parent 038eab67cd
commit b3be269469
4 changed files with 51 additions and 13 deletions

View File

@ -1,3 +1,9 @@
2010-04-22 Richard Guenther <rguenther@suse.de>
PR tree-optimization/43845
* tree-ssa-pre.c (create_component_ref_by_pieces_1): Properly
lookup the CALL_EXPR function and arguments.
2010-04-22 Nick Clifton <nickc@redhat.com>
* config/stormy16/stormy16.c

View File

@ -1,3 +1,8 @@
2010-04-22 Richard Guenther <rguenther@suse.de>
PR tree-optimization/43845
* gcc.c-torture/compile/pr43845.c: New testcase.
2010-04-22 Bernd Schmidt <bernds@codesourcery.com>
PR middle-end/29274

View File

@ -0,0 +1,12 @@
typedef int __attribute__ ((const)) (*x264_pixel_cmp_t)(void);
typedef struct {
x264_pixel_cmp_t ssd;
} x264_pixel_function_t;
int x264_pixel_ssd_wxh (x264_pixel_function_t *pf, int i_width) {
int i_ssd = 0, x;
for (x = 0; x < i_width; x++)
i_ssd += pf->ssd();
return i_ssd;
}

View File

@ -2631,31 +2631,46 @@ create_component_ref_by_pieces_1 (basic_block block, vn_reference_t ref,
{
case CALL_EXPR:
{
tree folded, sc = currop->op1;
tree folded, sc = NULL_TREE;
unsigned int nargs = 0;
tree *args = XNEWVEC (tree, VEC_length (vn_reference_op_s,
ref->operands) - 1);
tree fn, *args;
if (TREE_CODE (currop->op0) == FUNCTION_DECL)
fn = currop->op0;
else
{
pre_expr op0 = get_or_alloc_expr_for (currop->op0);
fn = find_or_generate_expression (block, op0, stmts, domstmt);
if (!fn)
return NULL_TREE;
}
if (currop->op1)
{
pre_expr scexpr = get_or_alloc_expr_for (currop->op1);
sc = find_or_generate_expression (block, scexpr, stmts, domstmt);
if (!sc)
return NULL_TREE;
}
args = XNEWVEC (tree, VEC_length (vn_reference_op_s,
ref->operands) - 1);
while (*operand < VEC_length (vn_reference_op_s, ref->operands))
{
args[nargs] = create_component_ref_by_pieces_1 (block, ref,
operand, stmts,
domstmt);
if (!args[nargs])
{
free (args);
return NULL_TREE;
}
nargs++;
}
folded = build_call_array (currop->type,
TREE_CODE (currop->op0) == FUNCTION_DECL
? build_fold_addr_expr (currop->op0)
: currop->op0,
(TREE_CODE (fn) == FUNCTION_DECL
? build_fold_addr_expr (fn) : fn),
nargs, args);
free (args);
if (sc)
{
pre_expr scexpr = get_or_alloc_expr_for (sc);
sc = find_or_generate_expression (block, scexpr, stmts, domstmt);
if (!sc)
return NULL_TREE;
CALL_EXPR_STATIC_CHAIN (folded) = sc;
}
CALL_EXPR_STATIC_CHAIN (folded) = sc;
return folded;
}
break;