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
2a6a0d80
Commit
2a6a0d80
authored
Apr 01, 2011
by
Bernd Schmidt
Committed by
Bernd Schmidt
Apr 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sched-ebb.c (schedule_ebbs): Honor the BB_DISABLE_SCHEDULE flag.
From-SVN: r171842
parent
ec4efea9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+2
-0
gcc/sched-ebb.c
+7
-2
No files found.
gcc/ChangeLog
View file @
2a6a0d80
...
...
@@ -13,6 +13,8 @@
* haifa-sched.c (queue_insn): New arg REASON. All callers
changed. Print it in debugging output.
* sched-ebb.c (schedule_ebbs): Honor the BB_DISABLE_SCHEDULE flag.
2011-04-01 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* config/spu/t-spu-elf (dp-bit.c): Use > instead of >>.
...
...
gcc/sched-ebb.c
View file @
2a6a0d80
/* Instruction scheduling pass.
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999,
2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
Free Software Foundation, Inc.
Contributed by Michael Tiemann (tiemann@cygnus.com) Enhanced by,
and currently maintained by, Jim Wilson (wilson@cygnus.com)
...
...
@@ -579,6 +579,9 @@ schedule_ebbs (void)
{
rtx
head
=
BB_HEAD
(
bb
);
if
(
bb
->
flags
&
BB_DISABLE_SCHEDULE
)
continue
;
for
(;;)
{
edge
e
;
...
...
@@ -591,6 +594,8 @@ schedule_ebbs (void)
break
;
if
(
e
->
probability
<=
probability_cutoff
)
break
;
if
(
e
->
dest
->
flags
&
BB_DISABLE_SCHEDULE
)
break
;
bb
=
bb
->
next_bb
;
}
...
...
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