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

i#6662 public traces, part 3: regdeps disasm #6799

Merged
merged 31 commits into from
May 17, 2024
Merged

Conversation

edeiana
Copy link
Contributor

@edeiana edeiana commented May 7, 2024

Adds disassembling for DR_ISA_REGDEPS instructions.
Specifically, when we disassemble DR_ISA_REGDEPS instructions, we print the
instruction encoding (divided in 4 byte words, can span one or two lines, similar to x86),
we substitute the opcode with categories, we print the operations size (e.g., [4byte]),
and then the source and destination virtual register names (e.g., %rv3).

Disassembled instructions look as follows:
00000812 06260606 load [8byte] %rv4 -> %rv4 %rv36

In general, they follow this pattern:
[encoding (in 4 byte words)] [categories] [operation_size] [src_regs -> dst_regs]

Issue: #6662

core/ir/disassemble_shared.c Outdated Show resolved Hide resolved
@edeiana edeiana marked this pull request as ready for review May 8, 2024 10:20
@edeiana
Copy link
Contributor Author

edeiana commented May 8, 2024

There are 2 tests consistently failing in ci-x86 / x86-64: code_api|tool.drcacheoff.skip and code_api|tool.drcacheoff.skip2.
The cause is that the header of the trace is being removed and that is causing the dcontext ISA mode to be set to DR_ISA_REGDEPS (on a, supposedly, x86 trace).
I need to investigate why it's happening.

EDIT: this has been fixed.

@edeiana edeiana requested a review from derekbruening May 8, 2024 10:25
core/ir/disassemble_shared.c Outdated Show resolved Hide resolved
core/ir/disassemble_shared.c Outdated Show resolved Hide resolved
core/ir/disassemble_shared.c Outdated Show resolved Hide resolved
core/ir/disassemble_shared.c Outdated Show resolved Hide resolved
core/ir/disassemble_shared.c Outdated Show resolved Hide resolved
core/ir/disassemble_shared.c Outdated Show resolved Hide resolved
core/ir/disassemble_shared.c Outdated Show resolved Hide resolved
clients/drcachesim/tools/view.cpp Outdated Show resolved Hide resolved
clients/drcachesim/tests/view_test.cpp Outdated Show resolved Hide resolved
clients/drcachesim/tests/view_test.cpp Outdated Show resolved Hide resolved
clients/drcachesim/tests/view_test.cpp Outdated Show resolved Hide resolved
clients/drcachesim/tools/view.cpp Outdated Show resolved Hide resolved
clients/drcachesim/tools/view.cpp Outdated Show resolved Hide resolved
core/ir/isa_regdeps/disassemble.h Outdated Show resolved Hide resolved
core/ir/isa_regdeps/disassemble.c Outdated Show resolved Hide resolved
core/ir/isa_regdeps/disassemble.c Outdated Show resolved Hide resolved
@edeiana edeiana changed the title i#6662 public traces, part 3: view tool i#6662 public traces, part 3: regdeps disasm May 16, 2024
suite/tests/api/ir_regdeps.c Show resolved Hide resolved
For ARM this test fails because of "/lib/ld-linux-armhf.so.3: No such file or directory".
Added FIXME comment about it.
@edeiana edeiana merged commit 47ae98b into master May 17, 2024
17 checks passed
@edeiana edeiana deleted the i6662-regdeps-disasm branch May 17, 2024 00:22
edeiana added a commit that referenced this pull request May 17, 2024
Modifies the view tool to handle OFFLINE_FILE_TYPE_ARCH_REGDEPS traces,
leveraging the disassembly of DR_ISA_REGDEPS instructions.
When visualizing DR_ISA_REGDEPS instructions, the view tool still prints
the
instruction length and PC, which for OFFLINE_FILE_TYPE_ARCH_REGDEPS
traces are the same as those in the original trace.
Then, after the PC, the instruction encoding, categories, operation
size, and
registers are printed following the disassembly format of DR_ISA_REGDEPS
instructions (xref: #6799).

DR_ISA_REGDEPS instructions printed by the view tool look as follows:
```
[...] ifetch      10 byte(s) @ 0x00007f86ef03d107 00001931 04020204 load store [4byte]       %rv0 %rv2 %rv36 -> %rv0
[...]                                             00000026
```

We also fix a formatting bug in DR_ISA_REGDEPS instruction disassembly,
where we were missing a new line when the instruction encoding spills
into
a second line.

Issue: #6662
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants