-
I'd like to improve the speed of the cwe-checker, but I'd like to ask if there's a way. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
If you are asking whether one can speed up analysis time by a smart choice of analysis parameters, then it is not really possible to speed up the analysis at the moment. At least I am not aware of any parameters that one could change to speed up the computation without sacrificing analysis quality for it. You can restrict the computed analyses via the If you are asking how one could improve the analysis code to speed up computation, then there are some ways. At the time of this comment there are two main areas for possible runtime improvements:
|
Beta Was this translation helpful? Give feedback.
If you are asking whether one can speed up analysis time by a smart choice of analysis parameters, then it is not really possible to speed up the analysis at the moment. At least I am not aware of any parameters that one could change to speed up the computation without sacrificing analysis quality for it. You can restrict the computed analyses via the
--partial
command line option to only those that you really need, but since the bulk of the analysis time is spent in thePointerInference
analysis (which is the base for many other analyses), this will not save a lot of time in general.If you are asking how one could improve the analysis code to speed up computation, then there are some wa…