Summary: | disInstr(arm): unhandled instruction: 0xF1010200 | ||
---|---|---|---|
Product: | [Developer tools] valgrind | Reporter: | Jeffrey Walton <noloader> |
Component: | vex | Assignee: | Julian Seward <jseward> |
Status: | RESOLVED DUPLICATE | ||
Severity: | normal | CC: | peter.maydell |
Priority: | NOR | ||
Version: | 3.12 SVN | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Jeffrey Walton
2016-08-06 00:16:54 UTC
Can you use objdump -d to find out what instruction that actually is? 0xF1010200 is "SETEND BE". This is almost certainly the optimized-for-1176 32-bit ARM raspberry pi memcmp. See bug #322935, closed WONTFIX in 2013. (This is a silly memcmp implementation for a Cortex-A53, where SETEND is rather more expensive than it was on the 1176, so the ideal fix would be to get the OS not to use it.) (In reply to Peter Maydell from comment #2) > 0xF1010200 is "SETEND BE". This is almost certainly the optimized-for-1176 > 32-bit ARM raspberry pi memcmp. See bug #322935, closed WONTFIX in 2013. Ah, thanks Peter. Is there a way to get Valgrind's portion of the bug tracker to return search results that are no longer open? Or at least include the ones marked as "won't fix"? (Does the bug tracker have a per-project configuration). I guess the high level observation is: why is the bug tracker not returning exact hits when I search for terms like "unhandled instruction 0xF1010200" (without the quotes). Returning the results would save us both time and energy. (In reply to Jeffrey Walton from comment #3) > Is there a way to get Valgrind's portion of the bug tracker to return search > results that are no longer open? Or at least include the ones marked as > "won't fix"? (Does the bug tracker have a per-project configuration). The simple search box only looks for open bugs, but you can always use a more complicated search query if you want to find closed bugs too. For instance if you start at https://bugs.kde.org/query.cgi you can select Status All, Product valgrind, Words 0xF1010200, which brings up the closed bug as well as the open ones. Note, I added an additional comment to bug 322935 just now, that tries to give a bit more perspective to the issue. *** This bug has been marked as a duplicate of bug 322935 *** |