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
005f39ce
Commit
005f39ce
authored
Oct 28, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Oct 28, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better RTX_COSTS for ia64.
From-SVN: r37104
parent
4c3a2649
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
gcc/ChangeLog
+3
-0
gcc/config/ia64/ia64.h
+9
-2
No files found.
gcc/ChangeLog
View file @
005f39ce
...
...
@@ -6,6 +6,9 @@
* reload1.c (choose_reload_regs): Never set reload_override_in for an
optional reload.
* config/ia64/ia64.h (RTX_COSTS): A few more entries, and a more
accurate value for MULT.
2000-10-28 Neil Booth <neilb@earthling.net>
New macro expander.
...
...
gcc/config/ia64/ia64.h
View file @
005f39ce
...
...
@@ -1851,9 +1851,16 @@ do { \
case MULT: \
/* For multiplies wider than HImode, we have to go to the FPU, \
which normally involves copies. Plus there's the latency \
of the multiply itself. */
\
of the multiply itself, and the latency of the instructions to \
transfer integer regs to FP regs. */
\
if (GET_MODE_SIZE (GET_MODE (X)) > 2) \
return COSTS_N_INSNS (4); \
return COSTS_N_INSNS (10); \
return COSTS_N_INSNS (2); \
case PLUS: \
case MINUS: \
case ASHIFT: \
case ASHIFTRT: \
case LSHIFTRT: \
return COSTS_N_INSNS (1); \
case DIV: \
case UDIV: \
...
...
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