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
99309f3b
Commit
99309f3b
authored
Mar 30, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(find_regno_note): Find note that overlaps REGNO, not just one that
mentions REGNO explicitly. From-SVN: r3929
parent
2c0623e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
gcc/rtlanal.c
+9
-2
No files found.
gcc/rtlanal.c
View file @
99309f3b
...
...
@@ -1135,7 +1135,9 @@ find_reg_note (insn, kind, datum)
}
/* Return the reg-note of kind KIND in insn INSN which applies to register
number REGNO, if any. Return 0 if there is no such reg-note. */
number REGNO, if any. Return 0 if there is no such reg-note. Note that
the REGNO of this NOTE need not be REGNO if REGNO is a hard register;
it might be the case that the note overlaps REGNO. */
rtx
find_regno_note
(
insn
,
kind
,
regno
)
...
...
@@ -1150,7 +1152,12 @@ find_regno_note (insn, kind, regno)
/* Verify that it is a register, so that scratch and MEM won't cause a
problem here. */
&&
GET_CODE
(
XEXP
(
link
,
0
))
==
REG
&&
REGNO
(
XEXP
(
link
,
0
))
==
regno
)
&&
REGNO
(
XEXP
(
link
,
0
))
<=
regno
&&
((
REGNO
(
XEXP
(
link
,
0
))
+
(
REGNO
(
XEXP
(
link
,
0
))
>=
FIRST_PSEUDO_REGISTER
?
1
:
HARD_REGNO_NREGS
(
REGNO
(
XEXP
(
link
,
0
)),
GET_MODE
(
XEXP
(
link
,
0
)))))
>
regno
))
return
link
;
return
0
;
}
...
...
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