-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Xtensa: gate ESP32-S3 and HIFI3 ops behind CS_MODE_XTENSA_ESP32S3 #2979
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
Open
germiBest
wants to merge
1
commit into
capstone-engine:next
Choose a base branch
from
germiBest:xtensa-gate-esp32s3-ops
base: next
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| test_cases: | ||
| # Positive: the ESP32-S3 SIMD/AI "ee.*" ops only decode when the | ||
| # CS_MODE_XTENSA_ESP32S3 feature is selected. Vector taken from real | ||
| # MT7961 firmware (it happens to also be a valid ESP32-S3 ee.vmulas). | ||
| - | ||
| input: | ||
| name: "ee.vmulas decodes on ESP32-S3" | ||
| bytes: [ 0x9e, 0x3e, 0x09, 0x40 ] | ||
| arch: "CS_ARCH_XTENSA" | ||
| options: [ "CS_MODE_XTENSA_ESP32S3" ] | ||
| address: 0x0 | ||
| expected: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it would be better to add some tests that follow the “details” style to |
||
| insns: | ||
| - | ||
| asm_text: "ee.vmulas.u16.accx.ld.ip.qup q1, a9, 0xe0, q0, q6, q0, q1" | ||
| size: 4 | ||
|
|
||
| # Negative (ESP32): without the ESP32-S3 feature the 4-byte ee.* encoding | ||
| # must NOT be produced. These bytes do not form a valid base/ESP32 | ||
| # instruction, so decoding fails (zero instructions). | ||
| - | ||
| input: | ||
| name: "ee.vmulas must NOT decode on ESP32 (#1)" | ||
| bytes: [ 0x9e, 0x3e, 0x09, 0x40 ] | ||
| arch: "CS_ARCH_XTENSA" | ||
| options: [ "CS_MODE_XTENSA_ESP32" ] | ||
| address: 0x0 | ||
| expected: | ||
| insns: [] | ||
| - | ||
| input: | ||
| name: "ee.vmulas must NOT decode on ESP32 (#2)" | ||
| bytes: [ 0x3e, 0x19, 0x45, 0x48 ] | ||
| arch: "CS_ARCH_XTENSA" | ||
| options: [ "CS_MODE_XTENSA_ESP32" ] | ||
| address: 0x0 | ||
| expected: | ||
| insns: [] | ||
|
|
||
| # Negative (base Tensilica, no vendor feature bits): same expectation. | ||
| - | ||
| input: | ||
| name: "ee.vmulas must NOT decode on base Xtensa (#1)" | ||
| bytes: [ 0x9e, 0x3e, 0x09, 0x40 ] | ||
| arch: "CS_ARCH_XTENSA" | ||
| options: [ "CS_MODE_LITTLE_ENDIAN" ] | ||
| address: 0x0 | ||
| expected: | ||
| insns: [] | ||
| - | ||
| input: | ||
| name: "ee.vmulas must NOT decode on base Xtensa (#2)" | ||
| bytes: [ 0x3e, 0x19, 0x45, 0x48 ] | ||
| arch: "CS_ARCH_XTENSA" | ||
| options: [ "CS_MODE_LITTLE_ENDIAN" ] | ||
| address: 0x0 | ||
| expected: | ||
| insns: [] | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.