test(validation): silicon-vs-emulator lockstep for wide-decode fixes#333
Merged
Conversation
…ecoder fixes
A bare Cortex-M4 firmware runs the exact instructions covered by the cortex_m
wide-decode unit tests (LDRB.W/LDRH.W signedness, {S,U}XT{B,H}.W, and the
extend-and-add {S,U}XTA{B,H}.W) and writes results to a fixed RAM array.
Validated byte-for-byte on a real NUCLEO-L476RG over SWD: all nine results
match the emulator and the unit-test expectations exactly. lockstep.yaml is a
CI-runnable (no hardware) regression that runs the same ELF on the stm32l476
model and asserts the silicon-captured values, so any future decoder change
that diverges from silicon fails. README documents the hardware re-validation
procedure.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
A bare Cortex-M4 firmware exercises the LDRB.W/LDRH.W/{S,U}XT{B,H}.W/{S,U}XTA{B,H}.W decode fixes (PRs #328/#329/#331) and writes results to RAM. Validated byte-for-byte on a real NUCLEO-L476RG over SWD;
lockstep.yamlis a CI-runnable (no-hardware) regression asserting the labwired stm32l476 model matches the silicon-captured values.