On Thu, Jan 15, 2009 at 4:18 PM, tic tac <[email protected]> wrote: > In regards to the following bug: > > http://bugs.kde.org/show_bug.cgi?id=180513 > > I am trying to gather information as to where I should start if I want to > pinpoint which lines of code are leading to this problem. > > Also is there any documentation about fixing these unhandled instructions?
The following Valgrind flags will be helpful while modifying VEX: --trace-flags and --trace-notbelow. These flags tell Valgrind to show how it translates assembly instructions into the intermediate representation through VEX and the other way around. An example: $ ./vg-in-place --tool=none --trace-flags=10000001 --trace-notbelow=0 /bin/date Bart. ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Valgrind-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/valgrind-users
