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
b5e96255
Commit
b5e96255
authored
Sep 28, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(schedule_insns): Don't zero reg_n_calls_crossed for
pseudos live across multiple blocks. From-SVN: r5515
parent
3b8b3c98
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
7 deletions
+25
-7
gcc/sched.c
+25
-7
No files found.
gcc/sched.c
View file @
b5e96255
...
...
@@ -4678,20 +4678,38 @@ schedule_insns (dump_file)
regno
,
reg_live_length
[
regno
],
sched_reg_live_length
[
regno
]);
if
(
reg_n_calls_crossed
[
regno
]
&&
!
sched_reg_n_calls_crossed
[
regno
])
fprintf
(
dump_file
,
";; register %d no longer crosses calls
\n
"
,
regno
);
else
if
(
!
reg_n_calls_crossed
[
regno
]
&&
sched_reg_n_calls_crossed
[
regno
])
if
(
!
reg_n_calls_crossed
[
regno
]
&&
sched_reg_n_calls_crossed
[
regno
])
fprintf
(
dump_file
,
";; register %d now crosses calls
\n
"
,
regno
);
else
if
(
reg_n_calls_crossed
[
regno
]
&&
!
sched_reg_n_calls_crossed
[
regno
]
&&
reg_basic_block
[
regno
]
!=
REG_BLOCK_GLOBAL
)
fprintf
(
dump_file
,
";; register %d no longer crosses calls
\n
"
,
regno
);
}
/* Negative values are special; don't overwrite the current
reg_live_length value if it is negative. */
if
(
reg_live_length
[
regno
]
>=
0
)
reg_live_length
[
regno
]
=
sched_reg_live_length
[
regno
];
reg_n_calls_crossed
[
regno
]
=
sched_reg_n_calls_crossed
[
regno
];
/* We can't change the value of reg_n_calls_crossed to zero for
pseudos which are live in more than one block.
This is because combine might have made an optimization which
invalidated basic_block_live_at_start and reg_n_calls_crossed,
but it does not update them. If we update reg_n_calls_crossed
here, the two variables are now inconsistent, and this might
confuse the caller-save code into saving a register that doesn't
need to be saved. This is only a problem when we zero calls
crossed for a pseudo live in multiple basic blocks.
Alternatively, we could try to correctly update basic block live
at start here in sched, but that seems complicated. */
if
(
sched_reg_n_calls_crossed
[
regno
]
||
reg_basic_block
[
regno
]
!=
REG_BLOCK_GLOBAL
)
reg_n_calls_crossed
[
regno
]
=
sched_reg_n_calls_crossed
[
regno
];
}
}
}
...
...
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