-
-
Notifications
You must be signed in to change notification settings - Fork 341
[RV64_DYNAREC] Added more opcodes ([LA64_DYNAREC] too) #2205
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
Conversation
INST_NAME("MOV Seg, Ew"); | ||
nextop = F8; | ||
u8 = (nextop & 0x38) >> 3; | ||
if ((nextop & 0xC0) == 0xC0) { |
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.
isn't there a MODREG macro for that?
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 merge this PR, I will do a global replacement in another PR, there are many places need to be replaced across all 3 backends.
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.
ok
INST_NAME("MOV Seg, Ew"); | ||
nextop = F8; | ||
u8 = (nextop & 0x38) >> 3; | ||
if ((nextop & 0xC0) == 0xC0) { |
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.
if(MODREG)
?
case 0x8C: | ||
INST_NAME("MOV Ed, Seg"); | ||
nextop = F8; | ||
if ((nextop & 0xC0) == 0xC0) { // reg <= seg |
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.
MODREG
No description provided.