diff options
author | Richard Guenther <rguenther@suse.de> | 2010-10-05 10:42:24 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-10-05 10:42:24 +0000 |
commit | 4d3814a514c4854cdc44242d383ea245c413b1d5 (patch) | |
tree | ff7a8ef56d2fdbc4a060af939444fce16b626c97 /gcc/testsuite/gcc.dg/tree-prof/tracer-1.c | |
parent | 65b1d8ea3ed53d03f92a614c93faf637fa708772 (diff) | |
download | gcc-4d3814a514c4854cdc44242d383ea245c413b1d5.zip gcc-4d3814a514c4854cdc44242d383ea245c413b1d5.tar.gz gcc-4d3814a514c4854cdc44242d383ea245c413b1d5.tar.bz2 |
value-prof.c (gimple_divmod_fixed_value): Work on SSA form.
2010-10-05 Richard Guenther <rguenther@suse.de>
* value-prof.c (gimple_divmod_fixed_value): Work on SSA form.
(gimple_mod_pow2): Likewise.
(gimple_mod_subtract): Likewise.
(gimple_ic): Likewise.
(gimple_stringop_fixed_value): Likewise.
* tree-profile.c (tree_init_edge_profiler): Mark profile
functions nothrow and leaf.
(add_abnormal_goto_call_edges): Remove.
(tree_gen_edge_profiler): Work on SSA form.
(tree_gen_ic_profiler): Likewise. Simplify.
(do_tree_profiling): Update SSA form.
(pass_tree_profile): Remove.
(do_tree_profiling): Likewise.
(gate_tree_profile_ipa): New function.
(pass_ipa_tree_profile): New.
(tree_profiling): Re-write as IPA pass. Properly drop const/pure
state of instrumented functions.
* passes.c (init_optimization_passes): Remove early non-SSA
inlining. Move profiling after early optimizations.
* ipa-inline.c (cgraph_gate_ipa_early_inlining): Remove.
(pass_ipa_early_inline): Likewise.
* tree-pass.h (pass_ipa_early_inline): Remove.
(pass_tree_profile): Likewise.
(pass_ipa_tree_profile): Declare.
* gcc.dg/tree-prof/val-prof-1.c: Adjust.
* gcc.dg/tree-prof/val-prof-2.c: Likewise.
* gcc.dg/tree-prof/val-prof-3.c: Likewise.
* gcc.dg/tree-prof/val-prof-4.c: Likewise.
* gcc.dg/tree-prof/val-prof-5.c: Likewise.
* gcc.dg/tree-prof/val-prof-7.c: Likewise.
* gcc.dg/tree-prof/stringop-1.c: Likewise.
* gcc.dg/tree-prof/stringop-2.c: Likewise.
* gcc.dg/tree-prof/ic-misattribution-1.c: Likewise.
* gcc.dg/tree-prof/indir-call-prof.c: Likewise.
* gcc.dg/tree-prof/update-loopch.c: Likewise.
* g++.dg/tree-prof/indir-call-prof.C: Likewise.
* g++.dg/tree-prof/inline_mismatch_args.C: Likewise.
* gcc.dg/tree-prof/tracer-1.c: Likewise.
* gcc.dg/tree-ssa/inline-4.c: Likewise.
* gcc.dg/tree-ssa/inline-3.c: Likewise.
* gcc.dg/tree-ssa/20080530.c: Likewise.
* g++.dg/tree-ssa/inline-3.C: Likewise.
* g++.dg/tree-ssa/inline-1.C: Likewise.
* g++.dg/tree-ssa/inline-2.C: Likewise.
* gcc.dg/profile-dir-1.c: Likewise.
* gcc.dg/profile-dir-2.c: Likewise.
* gcc.dg/profile-dir-3.c: Likewise.
From-SVN: r164986
Diffstat (limited to 'gcc/testsuite/gcc.dg/tree-prof/tracer-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-prof/tracer-1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-prof/tracer-1.c b/gcc/testsuite/gcc.dg/tree-prof/tracer-1.c index 7654a53..385a1a5 100644 --- a/gcc/testsuite/gcc.dg/tree-prof/tracer-1.c +++ b/gcc/testsuite/gcc.dg/tree-prof/tracer-1.c @@ -1,8 +1,8 @@ /* { dg-options "-O2 -ftracer -fdump-tree-tracer" } */ -main () +volatile int a, b, c; +int main () { int i; - int a, b, c; for (i = 0; i < 1000; i++) { if (i % 17) @@ -14,5 +14,5 @@ main () return 0; } /* Superblock formation should produce two copies of the increment of c */ -/* { dg-final-generate { scan-tree-dump-times "goto <bb 6>;" 2 "tracer" } } */ +/* { dg-final-generate { scan-tree-dump-times "c =" 2 "tracer" } } */ /* { dg-final-use { cleanup-tree-dump "tracer" } } */ |