Joel Höner

Results 116 comments of Joel Höner

There really needs to be a way to customize the number of spaces rendered per tab in an ad-hoc / per-session kind of way. Using helix to quickly peek into...

Thanks for opening this! These asserts are mostly in place to guard against when the array sizes are changed at a later point, to remind us that the corresponding lookup...

Interestingly enough, I wasn't actually able to reproduce the warning. I tried ```bash CFLAGS="-Werror=type-limits -Wall -Wpedantic" cmake -DZYAN_FORCE_ASSERTS=ON -DCMAKE_BUILD_TYPE=Debug .. ``` with gcc 11.x, gcc 12.2.0, gcc 13.x, clang 11.x...

`ZydisGetEncodableInstructions` is an internal function that is not exported. It lives in [`Zydis/Internal/EncoderData.h`](https://github.com/zyantific/zydis/blob/8948d9a8f493330d27a0e7bbebf40f0391e45f1b/include/Zydis/Internal/EncoderData.h#L236) when not amalgamated -- admittedly, that is harder to determine when using amalgamation. We should probably exclude...

Closing this as resolved -- please feel free to reopen if there are further questions in this regard.

Ah, interesting. Yeah, that sounds like a pretty good hypothesis. For deployments in Docker, we resolve this by asking users to pass `--pid=host` to not run into this. We already...

Thanks for letting us know -- we'll look into it! This portion of Zycore is not used in Zydis (or any other zyantific project that has been published yet), so...

Yeah, big-endian is currently completely unsupported and this would require fixes all over the code-base. We'll have to introduce some endianess conversion helpers at some point and then go through...

Cool. Let's leave this open as a low priority TODO item and as a reference for other people who are wondering about the BE support status. I adjusted the title...

This is also my primary reason for annoyance in this otherwise excellent library, also while working in IJulia. If this is reasonably easy to implement, that would be greatly appreciated!