Tuesday, August 14, 2012

JPL Coding Standards for C

JPL Coding Standards for C:
How do the folks at JPL write the code that will land a 2000-pound robot on Mars without a single glitch? Much of their success is no doubt due to their talent and dedication, but it doesn’t hurt that they have very strict coding standards (PDF). Among the requirements for C-language code at JPL:
  • Compile with all warnings enabled; use static source code analyzers.
  • Do not use direct or indirect recursion.
  • Do not use dynamic memory allocation after task initialization.
  • Declare data objects at smallest possible level of scope.
  • Check the validity of values passed to functions.
  • Make the order of evaluation in compound expressions explicit.
  • Do not use expressions with side effects.
  • Make only very limited use of the C pre-processor.
  • Use short functions with a limited number of parameters.
  • Do not cast function pointers into other types.
The JPL code standards are based on the 2004 MISRA-C coding standard. MISRA was originally designed for automotive applications, but was later adapted to other safety-critical systems where computer glitches can have dire consequences, like remote control locomotives. Some of the requirements parallel specifications of the language ADA, which was originally designed for safety-critical applications like missile guidance systems.
The 2009 version of the standard is available as a PDF from jpl.nasa.gov.

No comments:

Post a Comment