forked from DynamoRIO/dynamorio
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i#5036 A64 scatter/gather: Fix drcachesim offline tracing (DynamoRIO#…
…6370) A couple of places in the drcachesim tracer there was code that handles scatter/gather instructions that was guarded by #ifdef X86 which meant offline traces that include scatter/gather instructions were producing errors on AArch64. For example running the aarch64 scattergather test app: $bin64/drrun -t drcachesim -offline -- suite/tests/bin/client.drx-scattergather $bin64/drrun -t drcachesim -indir drmemtrace.client.drx-scattergather.662655.1769.dir produced the error: ERROR: failed to initialize analyzer: raw2trace failed: Failed to process file for thread 662655: memref entry found outside of bb This commit enables the code on AArch64 as well and fixes the error. Issue: DynamoRIO#5036
- Loading branch information
1 parent
0c6476f
commit ef656fd
Showing
3 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 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 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