pcode relevance
#5501
Replies: 1 comment 3 replies
-
See |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am using pcodes ("high pcodes") for my analysis. My main objective was to keep my analysis machine independent.
My analysis is based on a list of pcodes I recover from the decompiler. For e.g.
Currently, I am using complete pcode i.e. with (address_space, address, size) triplet for some classification analysis. I want to strip some of the information to reduce the analysis burden, but I don't want to lose important information from the pcodes.
I considered removing all the addresses - second field in the triplet and keep the rest. But, I thought this may remove some important information. Then, I thought about stripping some and keeping some. For e.g. I can strip actual code space addresses that show up in the pcodes, additionally I may not need to distinguish between registers. The problem with that is, even though I checked the documentation, I really don't know what some symbols signify for e.g. "unique".
What is the best way to approach this?
Beta Was this translation helpful? Give feedback.
All reactions