Joel Höner

Results 79 comments of Joel Höner

Could also consider hard-coding a condition for it in the decoder code, I suppose.

Hi @fred26! This is expected behavior. `ZYDIS_OPERAND_VISIBILITY_IMPLICIT` and `ZYDIS_OPERAND_VISIBILITY_EXPLICIT` have a bit of a misleading name. What "implicit" means here is that the operand is specified in the instruction itself...

Yeah, I think the documentation is fine -- it's just the names that are confusing.

Could you elaborate on how this would be useful for your project? I can't really think of a use case where the information of conditional flag writes would be more...

Hmm, I see. @flobernd I don't know if that would be such a good idea. Well, it could be done additionally, but it doesn't really address the core problem. Even...

Hmmm, these compile-time settings are kind of hard to get to work when Zydis is installed from e.g. OS repositories. When building the binaries for Zydis in e.g. Debian or...

My idea for Rust was to reorder our structs slightly so that the tag (e.g. `type` field for operands) immediately precedes the union, allowing us to use the [`really_tagged_unions`](https://github.com/rust-lang/rfcs/blob/master/text/2195-really-tagged-unions.md) feature...

I'm gonna maintain official Py3 bindings starting with v3, perhaps forked from the inofficial ones (not sure whether I want to go the ctypes way yet).

Regarding C++ bindings, I don't really know if it's worth it since due to our no-malloc policy it's already very convenient to use our stuff in C++ (no need for...

Wow, this looks very well made -- thank you for going through the effort! You even rewrote all the doc comments to fit the Go context. I'm guessing this is...