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

AArch32: sha1su0.32 had a destructive 64-bit left shift on a 64-bit value before zext #6529

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

Conversation

Sleigh-InSPECtor
Copy link
Contributor

As part of a research project testing the accuracy of the SLEIGH specifications compared to real hardware, we observed an unexpected behaviour in the sha1su0.32 instruction for both, AArch32 (ARM:LE:32:v8) & Thumb (ARM:LE:32:v8T).

According to the manual, the expected behaviour is perform SHA1 schedule update 0 and store the value in the destination register. However, we noticed the output was incorrect.


e.g, for AArch32 with,

Instruction: 0xe00c70f2, sha1su0.32 q8,q8,q8
initial_registers: { "q8": 0x8000000000000000 }

We get:

Hardware: { "q8": 0x80000000000000000000000000000000 }
Patched Spec: { "q8": 0x80000000000000000000000000000000 }
Existing Spec: { "q8": 0x0 }


e.g, for Thumb with,

Instruction: 0x70efe00c, sha1su0.32 q8,q8,q8
initial_registers: { "q8": 0x8000000000000000 }

We get:

Hardware: { "q8": 0x80000000000000000000000000000000 }
Patched Spec: { "q8": 0x80000000000000000000000000000000 }
Existing Spec: { "q8": 0x0 }


Note: The patched spec does not introduce any disassembly changes to the best of our knowledge.

* fixed destructive 64-bit left shift on a 64-bit value before zext
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature: Processor/ARM Status: Triage Information is being gathered
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants