We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I am using SVF to get point-to set. I see in
AliasResult BVDataPTAImpl::alias(const PointsTo& p1, const PointsTo& p2) { PointsTo pts1; expandFIObjs(p1,pts1); PointsTo pts2; expandFIObjs(p2,pts2); if (containBlackHoleNode(pts1) || containBlackHoleNode(pts2) || pts1.intersects(pts2)) return AliasResult::MayAlias; else return AliasResult::NoAlias; }
It seems that I should use expandFIObjs to get the entire pt set, isn't it? Besides, what is the meaning of blackhole nodes?
expandFIObjs
The text was updated successfully, but these errors were encountered:
Yes, expandFIObjs will allow you to expand an FI Obj to be replaced by all its field objects if this FI object has fields.
Blackhole is an object that possibly aliases with any other objects.
Sorry, something went wrong.
Yes, expandFIObjs will allow you to expand an FI Obj to be replaced by all its field objects if this FI object has fields. Blackhole is an object that possibly aliases with any other objects.
Thanks, Yulei. I get it.
No branches or pull requests
Hi,
I am using SVF to get point-to set.
I see in
It seems that I should use
expandFIObjs
to get the entire pt set, isn't it?Besides, what is the meaning of blackhole nodes?
The text was updated successfully, but these errors were encountered: