diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-08 15:03:10 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-08 15:03:10 +0000 |
commit | 8cecd7bd66e749c48518c55708c6a9a1e63d6994 (patch) | |
tree | 0826419886dde878e2b60951ba8f11f71c30c418 /gcc/tree-ssa-operands.c | |
parent | c028850e297b5de459da6eb3a5974e4b9d69491c (diff) | |
download | gcc-8cecd7bd66e749c48518c55708c6a9a1e63d6994.tar.gz |
* tree-ssa-operands.c (get_asm_expr_operands): Fix thinkos in
the handling of clobbering ASM_EXPRs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84292 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 73 |
1 files changed, 35 insertions, 38 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 46f9f59ac04..90b9d022b55 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -1164,8 +1164,9 @@ get_expr_operands (tree stmt, tree *expr_p, int flags, voperands_t prev_vops) abort (); } -/* Scan operands in ASM_EXPR STMT. PREV_VOPS is as in - append_v_may_def and append_vuse. */ + +/* Scan operands in ASM_EXPR STMT. PREV_VOPS is as in append_v_may_def and + append_vuse. */ static void get_asm_expr_operands (tree stmt, voperands_t prev_vops) @@ -1223,47 +1224,43 @@ get_asm_expr_operands (tree stmt, voperands_t prev_vops) get_expr_operands (stmt, &TREE_VALUE (link), 0, prev_vops); } + /* Clobber memory for asm ("" : : : "memory"); */ - if (!aliases_computed_p) - { - /* If we still have not computed aliasing information, - mark the statement as having volatile operands to avoid - optimizations from messing around with it. */ - stmt_ann (stmt)->has_volatile_ops = true; - } - else - { - /* Otherwise, if this ASM_EXPR clobbers memory, clobber - all the call-clobbered variables and the addressable - variables found by the alias analyzer. */ - for (link = ASM_CLOBBERS (stmt); link; link = TREE_CHAIN (link)) - if (!strcmp (TREE_STRING_POINTER (TREE_VALUE (link)), "memory")) + for (link = ASM_CLOBBERS (stmt); link; link = TREE_CHAIN (link)) + if (strcmp (TREE_STRING_POINTER (TREE_VALUE (link)), "memory") == 0) + { + size_t i; + + /* If we still have not computed aliasing information, we + won't know what variables are call-clobbered and/or + addressable. Just mark the statement as having volatile + operands for now. */ + if (!aliases_computed_p) { - /* If we had created .GLOBAL_VAR earlier, use it. - Otherwise, add a V_MAY_DEF operand for every - call-clobbered and addressable variable. See - compute_may_aliases for the heuristic used to decide - whether to create .GLOBAL_VAR or not. */ - if (global_var) - add_stmt_operand (&global_var, stmt, opf_is_def, prev_vops); - else + stmt_ann (stmt)->has_volatile_ops = true; + break; + } + + /* Clobber all call-clobbered variables (or .GLOBAL_VAR if we + decided to group them). */ + if (global_var) + add_stmt_operand (&global_var, stmt, opf_is_def, prev_vops); + else + EXECUTE_IF_SET_IN_BITMAP (call_clobbered_vars, 0, i, { - size_t i; + tree var = referenced_var (i); + add_stmt_operand (&var, stmt, opf_is_def, prev_vops); + }); - EXECUTE_IF_SET_IN_BITMAP (call_clobbered_vars, 0, i, - { - tree var = referenced_var (i); - add_stmt_operand (&var, stmt, opf_is_def, prev_vops); - }); + /* Now clobber all addressables. */ + EXECUTE_IF_SET_IN_BITMAP (addressable_vars, 0, i, + { + tree var = referenced_var (i); + add_stmt_operand (&var, stmt, opf_is_def, prev_vops); + }); - EXECUTE_IF_SET_IN_BITMAP (addressable_vars, 0, i, - { - tree var = referenced_var (i); - add_stmt_operand (&var, stmt, opf_is_def, prev_vops); - }); - } - } - } + break; + } } |