PPI and Perl::Critic allow programmers to detect certain things in the syntax of their Perl programs.

Is there anything like it that will tokenize/parse C and give you a chance to write a script to do something with that information?

link|improve this question
feedback

4 Answers

C related programs:

  • BLAST (Berkeley Lazy Abstraction Software verification Tool) — a software model checker for C programs based on lazy abstraction.
  • Clang — A compiler that includes a static analyzer.

  • Frama-C — A static analysis framework for C.

  • Sparse — A tool designed to find faults in the Linux kernel.

  • Splint — An open source evolved version of Lint (C language).

List of tools for Static Code Analysis for C (more than the list above)

link|improve this answer
feedback

There is an open source program called Splint:

Splint is a tool for statically checking C programs for security vulnerabilities and coding mistakes. With minimal effort, Splint can be used as a better lint. If additional effort is invested adding annotations to programs, Splint can perform stronger checking than can be done by any standard lint.

link|improve this answer
feedback

If I remember correctly, that's what lint does.

link|improve this answer
1  
Lint looks at more than just syntax, it also looks for fishy constructs like using a variable before setting them. – Ben S Dec 17 '09 at 20:03
3  
So does Perl::Critic. – tsee Dec 18 '09 at 8:32
feedback

It's a little off topic, but on the subject of valuable code analyzers for C is valgrind to catch dodgy memory management.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.