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
f57b1ad3
Commit
f57b1ad3
authored
28 years ago
by
Richard Earnshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(movhi): Handle generation of large constants during
and after reload. From-SVN: r13730
parent
2033a41a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
gcc/config/arm/arm.md
+14
-0
No files found.
gcc/config/arm/arm.md
View file @
f57b1ad3
...
...
@@ -2590,6 +2590,20 @@
}
}
}
/
* Handle loading a large integer during reload *
/
else if (GET_CODE (operands
[
1
]
) == CONST_INT
&& ! const_ok_for_arm (INTVAL (operands
[
1
]
))
&& ! const_ok_for_arm (~INTVAL (operands
[
1
]
)))
{
/
*
Writing a constant to memory needs a scratch, which should
be handled with SECONDARY_RELOADs.
*
/
if (GET_CODE (operands
[
0
]
) != REG)
abort ();
operands[0] = gen_rtx (SUBREG, SImode, operands[0], 0);
emit_insn (gen_movsi (operands[0], operands[1]));
DONE;
}
}
")
...
...
This diff is collapsed.
Click to expand it.
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