Tim Haines

Results 183 comments of Tim Haines

> Now I think about it, a page for runtime debug environmental variable can really help. That's a good idea. Added to TODO.

@kupsch I'm still looking at getting the latex to build. There seems to be certain permutations of directories that cause it to fail. I'm trying to find the minimum set...

@kupsch After more experimenting, it really is the case that the generated tex file is too big to be parsed by pdflatex. I found that using luatex worked. ``` make...

I ran into this problem in working on the Capstone migration. I have a fix over there, but it's the same as here. This PR contains bug fixes, refactorings, and...

These are now all present as of #1692. Thanks for the bug report and code fixes!

This is causing some versions of glibc to throw `__gnu_cxx::recursive_init_error` when initializing the static in `isSyscall` when enough threads are running. I'll fix that first.

There's not a single API for that, but you could generate a CSV file of the instructions in each binary and then compare the outputs. ```c++ #include #include #include "CodeObject.h"...

That's not possible when doing dynamic instrumentation. It _might_ be doable for static instrumentation. Which toolkit you are using to insert the ptwrite (BPatch, ParseAPI, etc.)?