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
4eae5fe1
Commit
4eae5fe1
authored
Nov 04, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(movdf): Don't have reload choose alternative of loading a constant
into a GPR. From-SVN: r6001
parent
3a322c50
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
gcc/config/rs6000/rs6000.md
+8
-2
No files found.
gcc/config/rs6000/rs6000.md
View file @
4eae5fe1
...
@@ -3059,8 +3059,14 @@
...
@@ -3059,8 +3059,14 @@
operands
[
4
]
= operand_subword (operands
[
0
]
, 1, 0, DFmode);
operands
[
4
]
= operand_subword (operands
[
0
]
, 1, 0, DFmode);
operands
[
5
]
= operand_subword (operands
[
1
]
, 1, 0, DFmode); }")
operands
[
5
]
= operand_subword (operands
[
1
]
, 1, 0, DFmode); }")
(define_insn ""
;; Don't have reload use general registers to load a constant. First,
[
(set (match_operand:DF 0 "nonimmediate_operand" "=!r,r,o,r,f,f,m")
;; it might not work if the output operand has is the equivalent of
;; a non-offsettable memref, but also it is less efficient than loading
;; the constant into an FP register, since it will probably be used there.
;; The "??" is a kludge until we can figure out a more reasonable way
;; of handling these non-offsettable values.
(define_insn ""
[
(set (match_operand:DF 0 "nonimmediate_operand" "=!r,??r,o,!r,f,f,m")
(match_operand:DF 1 "input_operand" "r,o,r,G,f,m,f"))]
(match_operand:DF 1 "input_operand" "r,o,r,G,f,m,f"))]
"register_operand (operands
[
0
]
, DFmode)
"register_operand (operands
[
0
]
, DFmode)
|| register_operand (operands
[
1
]
, DFmode)"
|| register_operand (operands
[
1
]
, DFmode)"
...
...
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