-
-
Notifications
You must be signed in to change notification settings - Fork 298
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
[LA64_DYNAREC] Added ROUNDSD and CVTDQ2PD opcodes #2173
Conversation
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.
Some part seems very confusing, need some explainations.
src/dynarec/la64/dynarec_la64_660f.c
Outdated
@@ -49,6 +49,10 @@ uintptr_t dynarec64_660F(dynarec_la64_t* dyn, uintptr_t addr, uintptr_t ip, int | |||
MAYUSE(eb1); | |||
MAYUSE(eb2); | |||
MAYUSE(j64); | |||
#if STEP > 1 | |||
static const int8_t round_round[] = { 0xE, 0x2, 0x6, 0xA}; |
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.
Please make this more readable.
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.
Hmmm I would prefer some self explanatory macros, but fine.
Thanks 🍻 |
Hi,
Please review my patch.
Thanks,
Leslie Zhai