Vikas Gupta

Results 14 comments of Vikas Gupta

I am also facing the same problem. I am trying to work with ARM64 .so files for Android. @romainthomas can you provide some pointers on how this can be possibly...

@serpilliere I would also recommend to include some explanation in full.py on why you are using the code for `get_out_regs` . Else, it feels some magic code, which probably is...

Hi, I am using Miasm on Mac as well (10.14 on x86_64), and I get same errors as mentioned by @nirouviere. If you see the error, there is '.so' files...

I looked into this a bit, as in this answer - https://stackoverflow.com/a/32765319/769407, I changed the setup.py file. After this I am not getting the linker error anymore, instead I get...

For your testing purposes, instruction is "FF 03 0A 6B", IDA shows it as `CMP WZR, W10`, probably aliasing it. The encoding looks to be of NEGS.

No, CMP discards the results and just updates the condition flags.

As per ARM documentation, NEGS and CMP are alias of SUBS - but NEGS and CMP discard the result. http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0802b/NEGS_SUBS_addsub_shift.html If you ask me, I don't think alias is the...

I will look into the alternatives you mentioned. And thanks for this library :). Do you guys plan to update this library to support swift as well, anytime in future?