|
From: Julian S. <js...@ac...> - 2006-06-05 22:40:11
|
> translates each BB to IR. Is there a module that parses binaries to BB's > that I can use? I'm guessing there's something built into coregrind that > does that but can I use it without the rest of coregrind, i.e. call it > directly somehow? No. This is somewhere between very difficult and impossible; in the most general case distinguishing code from data is equivalent to solving the halting problem I believe. Valgrind carefully avoids this by translating code on demand. What are you really trying to achieve? J |