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
c256f143
Commit
c256f143
authored
Nov 11, 2014
by
Eric Botcazou
Committed by
Eric Botcazou
Nov 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reorg.c (fill_slots_from_thread): Do not copy frame-related insns.
From-SVN: r217381
parent
059e92fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/reorg.c
+4
-2
No files found.
gcc/ChangeLog
View file @
c256f143
2014
-
11
-
11
Eric
Botcazou
<
ebotcazou
@
adacore
.
com
>
*
reorg
.
c
(
fill_slots_from_thread
):
Do
not
copy
frame
-
related
insns
.
2014
-
11
-
11
Eric
Botcazou
<
ebotcazou
@
adacore
.
com
>
PR
target
/
61535
*
config
/
sparc
/
sparc
.
c
(
function_arg_vector_value
):
Deal
with
vectors
smaller
than
8
bytes
.
gcc/reorg.c
View file @
c256f143
...
...
@@ -2501,9 +2501,11 @@ fill_slots_from_thread (rtx_insn *insn, rtx condition, rtx thread_or_return,
/* There are two ways we can win: If TRIAL doesn't set anything
needed at the opposite thread and can't trap, or if it can
go into an annulled delay slot. */
go into an annulled delay slot. But we want neither to copy
nor to speculate frame-related insns. */
if
(
!
must_annul
&&
(
condition
==
const_true_rtx
&&
((
condition
==
const_true_rtx
&&
(
own_thread
||
!
RTX_FRAME_RELATED_P
(
trial
)))
||
(
!
insn_sets_resource_p
(
trial
,
&
opposite_needed
,
true
)
&&
!
may_trap_or_fault_p
(
pat
)
&&
!
RTX_FRAME_RELATED_P
(
trial
))))
...
...
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