Ivan Fratric
Ivan Fratric
Hey, thanks for taking the time to look into all of these mechanisms and sharing your ideas. The "put int3s on whole code section" idea did come up several times...
> This one doesn't look clear to me. Let's say we have something like `GetProcAddress()` the returning pointer to the code could be stored: in register (for immediate call after...
FYI there is now an implementation of the "search and replace pointers to the previously observed entrypoints with their instrumented equivalents" idea using `-patch_module_entries` flag. It's not perfect but seems...
Interesting. What would be the difference of StackWalker vs using StackWalkEx function from Windows, https://docs.microsoft.com/en-us/windows/win32/api/dbghelp/nf-dbghelp-stackwalkex?redirectedfrom=MSDN (In general, I'm trying to keep the number of third-party dependencies in TinyInst small to...
Oh, I see, I thought StackWalker re-implemented the StackWalk64 behavior instead of using it. If we are integrating StackWalker, would it be possible to add it as is as a...
I see. I think, to comment further, it would probably be good to have an idea how the code would look like (both on StackWalker and TinyInst side). If you...
Hi, Interesting, can you paste the error(s) you get when compiling as instructed in the README? A couple of questions: - did you use the `-G Xcode` flag as written...
Can you run `sudo xcode-select --reset` and check if the problem persists?
Hmm well, the issue seems to be that cmake can't identify the C/C++ compiler, which seems unrelated to Jackalope itself, but I have no idea what the reason could be....
Indeed, and thanks for raising the issue. Let's leave it open for now, as anyone encountering the same issue can find it more easily. If anyone else encounters the same...