Commit e3cc7254 by Zdenek Dvorak Committed by Zdenek Dvorak

re PR tree-optimization/21171 (IV OPTS removes does not create a new VOPs for constant values)

	PR tree-optimization/21171
	* tree-ssa-loop-ivopts.c (find_interesting_uses_address): Do not
	record address uses if the reference is volatile.

	* gcc.dg/tree-ssa/pr21171.c: New test.

From-SVN: r98828
parent c4336539
2005-04-27 Zdenek Dvorak <dvorakz@suse.cz>
PR tree-optimization/21171
* tree-ssa-loop-ivopts.c (find_interesting_uses_address): Do not
record address uses if the reference is volatile.
2004-04-27 Paolo Bonzini <bonzini@gnu.org> 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
* tree-complex.c (expand_vector_operation): New, extracted from * tree-complex.c (expand_vector_operation): New, extracted from
......
2005-04-27 Zdenek Dvorak <dvorakz@suse.cz>
PR tree-optimization/21171
* gcc.dg/tree-ssa/pr21171.c: New test.
2004-04-27 Paolo Bonzini <bonzini@gnu.org> 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
* gcc.dg/tree-ssa/gen-vect-11.c, gcc.dg/tree-ssa/gen-vect-11a.c, * gcc.dg/tree-ssa/gen-vect-11.c, gcc.dg/tree-ssa/gen-vect-11a.c,
......
/* PR 21171. Ivopts should not rewrite references to volatile memory. */
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-vars" } */
typedef unsigned int u_int32_t;
typedef unsigned char u_int8_t;
#define AIC_VECTORS 32
typedef volatile struct AT91RM9200_regs {
u_int32_t SVR[AIC_VECTORS];
} AT91RM9200_regs_t;
#define CPUReg ((AT91RM9200_regs_t*)0xFFF00000)
extern const u_int32_t __IntTable[AIC_VECTORS];
int main()
{
int c;
for (c = 0; c < AIC_VECTORS; c++)
CPUReg->SVR[c] = __IntTable[c];
return 0;
}
/* { dg-final { scan-tree-dump-times "SVR" 1 "vars"} } */
/* { dg-final { cleanup-tree-dump "vars" } } */
...@@ -1518,6 +1518,11 @@ find_interesting_uses_address (struct ivopts_data *data, tree stmt, tree *op_p) ...@@ -1518,6 +1518,11 @@ find_interesting_uses_address (struct ivopts_data *data, tree stmt, tree *op_p)
struct iv *civ; struct iv *civ;
struct ifs_ivopts_data ifs_ivopts_data; struct ifs_ivopts_data ifs_ivopts_data;
/* Do not play with volatile memory references. A bit too conservative,
perhaps, but safe. */
if (stmt_ann (stmt)->has_volatile_ops)
goto fail;
/* Ignore bitfields for now. Not really something terribly complicated /* Ignore bitfields for now. Not really something terribly complicated
to handle. TODO. */ to handle. TODO. */
if (TREE_CODE (base) == COMPONENT_REF if (TREE_CODE (base) == COMPONENT_REF
......
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