Does Pin has the ability to redirect the execution on a wrong path? For example, if I have a program like:
if(expr)
{
// Do something
}
where expr evaluates to true, can I use Pin to force the execution to NOT take the if branch? If yes, what Pin APIs can I use to do this?