Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
6a753d5f
Commit
6a753d5f
authored
Jun 10, 2009
by
Revital Eres
Committed by
Revital Eres
Jun 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reschedule predictive-commoning pass
From-SVN: r148352
parent
a550d677
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/passes.c
+1
-1
No files found.
gcc/ChangeLog
View file @
6a753d5f
2009-06-10 Revital Eres <eres@il.ibm.com>
* passes.c (init_optimization_passes): Reschedule
predictive-commoning pass before complete unroll pass.
2009-06-10 Martin Jambor <mjambor@suse.cz>
* cgraph.c (cgraph_node_can_be_local_p): New function.
...
...
gcc/passes.c
View file @
6a753d5f
...
...
@@ -648,7 +648,6 @@ init_optimization_passes (void)
NEXT_PASS
(
pass_copy_prop
);
NEXT_PASS
(
pass_dce_loop
);
NEXT_PASS
(
pass_lim
);
NEXT_PASS
(
pass_predcom
);
NEXT_PASS
(
pass_tree_unswitch
);
NEXT_PASS
(
pass_scev_cprop
);
NEXT_PASS
(
pass_empty_loop
);
...
...
@@ -665,6 +664,7 @@ init_optimization_passes (void)
NEXT_PASS
(
pass_lower_vector_ssa
);
NEXT_PASS
(
pass_dce_loop
);
}
NEXT_PASS
(
pass_predcom
);
NEXT_PASS
(
pass_complete_unroll
);
NEXT_PASS
(
pass_slp_vectorize
);
NEXT_PASS
(
pass_parallelize_loops
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment