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
827e80cc
Commit
827e80cc
authored
Mar 11, 1999
by
Richard Henderson
Committed by
Richard Henderson
Mar 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alpha.md (ev5_e0): Conflict loads and stores.
From-SVN: r25705
parent
a7adf08e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+2
-0
gcc/config/alpha/alpha.md
+7
-2
No files found.
gcc/ChangeLog
View file @
827e80cc
...
...
@@ -3,6 +3,8 @@ Thu Mar 11 14:00:58 1999 Richard Henderson <rth@cygnus.com>
*
alpha
.
h
(
HARD_REGNO_MODE_OK
)
:
Disallow
QI
/
HImode
in
fp
regs
.
(
MODES_TIEABLE_P
)
:
Update
.
*
alpha
.
md
(
ev5_e0
)
:
Conflict
loads
and
stores
.
Thu
Mar
11
13
:
55
:
52
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
machmode
.
h
(
smallest_mode_for_size
)
:
Prototype
.
...
...
gcc/config/alpha/alpha.md
View file @
827e80cc
...
...
@@ -155,13 +155,18 @@
; Memory takes at least 2 clocks. Return one from here and fix up with
; user-defined latencies in adjust_cost.
; ??? How to: "An instruction of class LD cannot be issued in the _second_
; cycle after an instruction of class ST is issued."
(define_function_unit "ev5_ebox" 2 0
(and (eq_attr "cpu" "ev5")
(eq_attr "type" "ild,fld,ldsym"))
1 1)
; Loads can dual issue with one another, but loads and stores do not mix.
(define_function_unit "ev5_e0" 1 0
(and (eq_attr "cpu" "ev5")
(eq_attr "type" "ild,fld,ldsym"))
1 1
[
(eq_attr "type" "ist,fst")
]
)
; Stores, shifts, multiplies can only issue to E0
(define_function_unit "ev5_e0" 1 0
(and (eq_attr "cpu" "ev5")
...
...
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