New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CPP: Some guard questions about control #10568
Comments
|
...and now I check if a basicblock is controlled by by code like that: and Is that right? I run this query for a long time.... |
|
Regarding your first question:
I think the answer is 'no'. As you've discovered yourself, So to handle the third and fourth case, the |
A couple of comments:
// ...
and gc.controls(leakbb, false)? |
|
@MathiasVP Thank you for your answer! And, I found if I use GuardCondition and globalValueNumber, it costs long time to run query. Is there any way to reduce the query time? Or Is there any documentation on how to reduce query time?I've been looking for ways to shorten the time. |


Hi!
I want to detect if there is a check for NULL return value of a function.And I want to get the block which is controlled by
ret == NULLSo Do I have to consider the following four cases?
Or Is there a method that includes the above four cases?
The text was updated successfully, but these errors were encountered: