Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Nowadays we used to know static analysis tools like findbugs, pmd, and many more. In findbugs they use linear bytecode scanning. Now for my final project, I develop tools almost like a findbugs but not as complex as them, but I'm using nonlinear, with that Now I can reduce false positives, like some method that actually called in else method, which is cannot be detected by findbugs.

I want to ask, is there any static analysis tools which use non linear in their code scanning?

I'm sorry for my bad english :))

share|improve this question
intellij comes with static analysis, they call it code inspection : jetbrains.com/idea/documentation/static_code_analysis.html – NimChimpsky Feb 19 at 10:11
Its not clear what you mean by "nonlinear". Guessing, you want to take into account the control flow. Yes, most serious static analysis tools use control flow; in fact, they go well beyond that and use dataflow techniques to better understand how information propagates between various parts of the code, in order to better diagnose errors in that propagation. – Ira Baxter Feb 19 at 14:02
I read in journal from the makers of findbugs, they said that they using linear code scaning, it means the read the code from the top to the bottom, I'm sorry thats the point of linear. – shadrachJabonir Feb 19 at 14:05
Linear code scan. These detectors make a linear scan through the bytecode for the methods of analyzed classes, using the visited instructions to drive a state machine. These detectors do not make use of complete control flow information; however, heuristics (such as identifying the targets of branch instructions) can be effective in approximating control flow. This is what I get from that journal. – shadrachJabonir Feb 19 at 14:08
Sounds like you understand their notion of linear code scan. If you had said that in your question here, it probably wouldn't have gotten closed; people want to know that you understand your problem. Looks like I guessed right, too. You should go read any serious compiler book about control and data flow as "non-linear", and yes this is all really useful in static analyzers. – Ira Baxter Feb 19 at 15:34
show 1 more comment

closed as not a real question by Smi, ppeterka, woodchips, Vicky, towi Feb 19 at 12:51

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.