-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vfloat sequencing #221
base: master
Are you sure you want to change the base?
vfloat sequencing #221
Conversation
Prior to merge needs UopGen refactor |
"vsaddu.vv" : {"pipe" : "vfixed", "uop_gen" : "ARITH", "latency" : 1}, | ||
"vsaddu.vx" : {"pipe" : "vfixed", "uop_gen" : "ARITH", "latency" : 1}, | ||
"vsaddu.vi" : {"pipe" : "vfixed", "uop_gen" : "ARITH", "latency" : 1}, | ||
"vsaddu.vv" : {"pipe" : "vint", "uop_gen" : "ARITH", "latency" : 1}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you get rid of the vfixed
unit?
"vfrsub.vf" : {"pipe" : "vfloat", "uop_gen" : "ARITH", "latency" : 6}, | ||
|
||
# Vector Floating-Point Instructions: Vector Widening Floating-Point Add/Subtract Instructions | ||
"vfwadd.vv" : {"pipe" : "vfloat", "uop_gen" : "ARITH", "latency" : 6}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These instructions have wide dests so they should use ARITH_WIDE_DEST
.
"vfnmsub.vf" : {"pipe" : "vfloat", "uop_gen" : "ARITH", "latency" : 6}, | ||
|
||
# Vector Floating-Point Instructions: Vector Widening Floating-Point Fused Multiply-Add Instructions | ||
"vfwmacc.vv" : {"pipe" : "vfloat", "uop_gen" : "ARITH", "latency" : 6}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should use the ARITH_MAC
which adds the destination of each uop as a source.
@orion160 the uop generators for the vector floating point instructions need to be reviewed. I would also add a new execution unit for |
No description provided.