You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we check every single call site to find a match. We can also just check until the start value is beyond the rel_pc, and if that happens, we bail out early. This should save us some cycles. It does mean that the deeper in a function with multiple catch blocks and destructor paths you are in, the longer it takes to evaluate.
The text was updated successfully, but these errors were encountered:
Currently we check every single call site to find a match. We can also just check until the
start
value is beyond therel_pc
, and if that happens, we bail out early. This should save us some cycles. It does mean that the deeper in a function with multiple catch blocks and destructor paths you are in, the longer it takes to evaluate.The text was updated successfully, but these errors were encountered: