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
d2ba6dcf
Commit
d2ba6dcf
authored
May 11, 2000
by
Jim Wilson
Committed by
Jim Wilson
May 10, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add performance related explanatory comment.
* config/ia64/ia64.md (insv): Add comment. From-SVN: r33836
parent
991a40fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
gcc/ChangeLog
+4
-0
gcc/config/ia64/ia64.md
+15
-0
No files found.
gcc/ChangeLog
View file @
d2ba6dcf
Wed
May
10
21
:
31
:
44
2000
Jim
Wilson
<
wilson
@cygnus
.
com
>
*
config
/
ia64
/
ia64
.
md
(
insv
)
:
Add
comment
.
2000
-
05
-
10
Richard
Henderson
<
rth
@cygnus
.
com
>
*
Makefile
.
in
(
libgcc
.
a
,
stmp
-
multilib
)
:
Depend
on
FPBIT
and
DPBIT
.
...
...
gcc/config/ia64/ia64.md
View file @
d2ba6dcf
...
...
@@ -684,6 +684,21 @@
DONE;
}
/* We could handle remaining cases by emitting multiple dep
instructions.
If we need more than two dep instructions then we lose. A 6
insn sequence mov mask1,mov mask2,shl;;and,and;;or is better than
mov;;dep,shr;;dep,shr;;dep. The former can be executed in 3 cycles,
the latter is 6 cycles on an Itanium (TM) processor, because there is
only one function unit that can execute dep and shr immed.
If we only need two dep instruction, then we still lose.
mov;;dep,shr;;dep is still 4 cycles. Even if we optimize away
the unnecessary mov, this is still undesirable because it will be
hard to optimize, and it creates unnecessary pressure on the I0
function unit. */
FAIL;
#if 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