Your "One-Stop-Shop" for your next Embedded Project

Stacks Image 183

Industry leading Static Code Analysis:

PC-lint from GIMPEL SOFTWARE



Don't waste precious project time debugging your code

pc-lint

PC-lint is a powerful static analysis tool that will check your C/C++ source code and find bugs, glitches, inconsistencies, non-portable constructs, redundant code, and much more. It looks across multiple modules, and so, enjoys a perspective your compiler does not have.

What is Static Analysis?

PC-lint will look across your entire program that may consist of many C and/or C++ modules and find bugs, glitches, inconsistencies, and redundancies. It can find problems that may not be caught in initial testing. Some bugs lie dormant for months and years and their ultimate eradication can be time consuming and expensive. It pays to expose errata while the code is still fresh in the mind of the programmer and while the original programmer is still employed by the company responsible for the software.

Won't my compiler do syntax checking?

Compilers do an excellent job of finding syntax errors and most will produce warnings. But PC-lint begin where compilers leave off. PC-lint contains numerous features such as precision tracking, initialization checking, value tracking, strong type checking and macro analysis that compilers do not have. Also PC-lint looks across a set of modules to find intermodule inconsistencies and redundancies. This compilers do not do.

Does C++ make lint obsolete?

ANSI C and C++ have solved the problem for which Unix lint was originally developed, i.e., to ensure consistency of function calls across module boundaries. But most other sources of errors in C code remain in C++. These include uninitialized variables, order of evaluation dependencies, loss of precision, potential uses of the null pointer, etc. (See Representative Checks on the next page). In addition to problems inherited from C, C++ has added new opportunities and requirements for static checking.

For example, it is now possible to report that a constructor has not initialized a member. This deficiency could not be reported for C code because responsibility for initialization is not uniquely assigned to a given function (i.e. there are no constructors in C). There have been numerous articles and books on the C++ language written by such prominent authors as Cargill, Koenig, Murray and Myers describing numerous do's and don'ts. Although it is a formidable task for even the expert to hand check each line of source code for conformity to accepted principles of good design, such checks can be automated and most have been incorporated in PC-lint.

How do I separate the wheat from the chaff?

Gimpel Software has taken several steps so that our users are not inundated by a mass of insignificant messages in which they may have no particular interest. All messages are carefully crafted to make use of all available information so that they have an inherently high wheat-to-chaff ratio. PC-lint has four levels of message (Error, Warning, Informational and Elective Note) and distinguish between two kinds of header (library headers vs. project headers). Messages can be suppressed by number, by symbol, by macro, by line and by header type. Through a selection of options, you in effect tailor your own subset of the C/C++ language.