-
Notifications
You must be signed in to change notification settings - Fork 144
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
Implement a number of ARMv8 instructions #477
Comments
I could implement these myself but I would appreciate guidance on where I could find the instructions needed to handle each of these, as analysing the source code makes it seem like most of what is happening is register manipulation, which I know nothing about. |
Does Pull 461 have some or all of these implemented? |
No, that is for AArch32. Completely different encoding. |
Some of the semantics may bear some similarity, though. |
Oh, right. I honestly don't know the difference between semantics and instructions, so I couldn't tell if it was useful |
A number of instructions are unimplemented and cause my executable to be unable to be recompiled. These are the instructions + other instruction errors I got:
These are just the instructions:
And here they are without that end part there:
Note, I was just using regex to select these so if they aren't actually instructions, sorry, I don't know what to call them. These might be all the instructions I need but there might be more even with some of these implemented. Thanks for the great software though, I got surprisingly far. The full logs from around 5 minutes of execution can be found here
logs.txt
The text was updated successfully, but these errors were encountered: