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
.ini
ConfigParser
#45 should help.
The text was updated successfully, but these errors were encountered:
One of the bottlenecks if the filter_vertices function, which iterates over ALL states to find a fixpoint.
filter_vertices
As we compare states like this:
let same prev v' = Data.Address.equal prev.Cfa.State.ip v'.Cfa.State.ip && prev.Cfa.State.ctx.Cfa.State.addr_sz = v'.Cfa.State.ctx.Cfa.State.addr_sz && prev.Cfa.State.ctx.Cfa.State.op_sz = v'.Cfa.State.ctx.Cfa.State.op_sz && (* fixpoint reached *) D.is_subset v'.Cfa.State.v prev.Cfa.State.v
we could simplify this search by having a hashmap of ip -> Cfa.
Sorry, something went wrong.
One option is also to [@@inline] critical functions
[@@inline]
No branches or pull requests
.ini
generation is very slowConfigParser
is slow as hell#45 should help.
The text was updated successfully, but these errors were encountered: