Skip to content
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

x86: Add missing reg_opcode constraint to lockable INC #6566

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Sleigh-InSPECtor
Copy link
Contributor

The INC encoding is FE /0 meaning that a reg_opcode=0 constraint is needed in SLEIGH. This is missing from the memory variant (in lockable.sinc), which causes undefined FE xx instructions to be decoded as INC.

(Without this constraint, the constructors technically overlap with the DEC instruction, however, since the DEC instruction has the correct constraints it ends up getting matched first).

e.g.,

  • fe3f
    • Hardware Reference (AMD CPU & Intel CPU): #UD (Invalid Opcode Exception)
    • x86:LE:64:default (Existing): "INC byte ptr [RDI]"
    • x86:LE:64:default (This patch): (Invalid)

@GhidorahRex GhidorahRex self-assigned this May 23, 2024
@GhidorahRex GhidorahRex added Type: Bug Something isn't working Feature: Processor/x86 Status: Triage Information is being gathered labels May 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature: Processor/x86 Status: Triage Information is being gathered Type: Bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants