MISRA C:2012

Embold detects violations of standards such as MISRA. To understand the percentage coverage on each standard, please read the respective sections below.

MISRA

Introduction

MISRA, The Motor Industry Software Reliability Association is a set of standards, that provides software development guidelines. Embold detects MISRA rule violations.
Embold fully supports 97.90% MISRA C:2012 rules. There is a total of 143 rules out of which Embold supports 140 and 3 rules (i.e. 18.2, 19.1, 22.3) are dynamic which Embold does not support right now.

Enabling and disabling MISRA checks in Embold

MISRA is one of the code issue type. For more details, refer to the Code Checker Configuration document. This article will be useful for enabling or disabling MISRA related code issues.

3816

MISRA C: 2012 Compliance Matrix

MISRA RULESMandatoryRequiredAdvisoryDecidableUndecidable
Supported1559983311824
Unsupported3123313
Total158101003612137
Percentage98.10%90%98.00%100%97.5%64.80%

Rules updated in Amendments 1 and 2 are included in the table above.

Supported MISRA rules

MISRA guidelines ensure that your code is safe and secure. Each rule has its own key and description. All the supported rules have KPI: Robustness. Following MISRA rules are supported by the latest version of Embold.

IDEmbold Rule KeyDescription
Rule 1.1MISRA-C2012-1.1The program shall contain no violations of the standard C syntax and constraints, and shall not exceed the implementation’s translation limits.
Rule 1.2MISRA-C2012-1.2Language extensions should not be used
Rule 1.3MISRA-C2012-1.3There shall be no occurrence of undefined or critical unspecified behaviour
Rule 2.1MISRA-C2012-2.1A project shall not contain unreachable code
Rule 2.2MISRA-C2012-2.2There shall be no dead code
Rule 2.3MISRA-C2012-2.3A project should not contain unused type declarations
Rule 2.4MISRA-C2012-2.4A project should not contain unused tag declarations
Rule 2.5MISRA-C2012-2.5A project should not contain unused macro declarations
Rule 2.6MISRA-C2012-2.6A function should not contain unused label declarations
Rule 2.7MISRA-C2012-2.7There should be no unused parameters in functions
Rule 3.1MISRA-C2012-3.1The character sequences /* an // shall not be used within a comment
Rule 3.2MISRA-C2012-3.2If the source line containing a // comment ends with a \ character in the source character set, the next line becomes part of the comment. This may result in unintentional removal of code.
Rule 4.1MISRA-C2012-4.1Octal and hexadecimal escape sequences shall be terminated
Rule 4.2MISRA-C2012-4.2Trigraphs should not be used
Rule 5.1MISRA-C2012-5.1External identifiers shall be distinct
Rule 5.2MISRA-C2012-5.2Identifiers declared in the same scope and name space shall be distinct
Rule 5.3MISRA-C2012-5.3An identifier declared in an inner scope shall not hide an identifier declared in an outer scope
Rule 5.4MISRA-C2012-5.4Macro identifiers shall be distinct
Rule 5.5MISRA-C2012-5.5Identifiers shall be distinct from macro names
Rule 5.6MISRA-C2012-5.6A typedef name shall be a unique identifier
Rule 5.7MISRA-C2012-5.7A tag name shall be a unique identifier
Rule 5.8MISRA-C2012-5.8Identifiers that define objects or functions with external linkage shall be unique
Rule 5.9MISRA-C2012-5.9Identifiers that define objects or functions with internal linkage should be unique
Rule 6.1MISRA_C2012-6.1Bit-fields shall only be declared with an appropriate type
Rule 6.2MISRA-C2012-6.2Single-bit named bit fields shall not be of a signed type
Rule 7.1MISRA-C2012-7.1Octal constants shall not be used
Rule 7.2MISRA_C2012-7.2A “u” or “U” suffix shall be applied to all integer constants that are represented in an unsigned type
Rule 7.3MISRA-C2012-7.3The lowercase character “l” shall not be used in a literal suffix
Rule 7.4MISRA-C2012-7.4A string literal shall not be assigned to an object unless the object's type is pointer to const-qualified char
Rule 8.1MISRA-C2012-8.1Types shall be explicitly specified
Rule 8.2MISRA-C2012-8.2Function types shall be in prototype form with named parameters
Rule 8.3MISRA-C2012-8.3All declarations of an object or function shall use the same names and type qualifiers
Rule 8.4MISRA-C2012-8.4A compatible declaration shall be visible when an object or function with external linkage is defined
Rule 8.5MISRA-C2012-8.5An external object or function shall be declared once in one and only one file
Rule 8.6 MISRA-C2012-8.6MISRA-C2012-8.6An identifier with external linkage shall have exactly one external definition
Rule 8.7MISRA-C2012-8.7Functions and objects should not be defined with external linkage if they are referenced in only one translation unit
Rule 8.8MISRA-C2012-8.8The static storage class specifier shall be used in all declarations of objects and functions that have internal linkage
Rule 8.9MISRA-C2012-8.9An object should be defined at block scope if its identifier only appears in a single function
Rule 8.10MISRA-C2012-8.10An inline function shall be declared with the static storage class
Rule 8.11MISRA-C2012-8.11When an array with external linkage is declared, its size should be explicitly specified
Rule 8.12MISRA-C2012-8.12Within an enumerator list, the value of an implicitly-specified enumeration constant shall be unique
Rule 8.13MISRA-C2012-8.13A pointer should point to a const-qualified type whenever possible
Rule 8.14MiSRA-C2012-8.14The restrict type qualifi er shall not be used
Rule 9.1MISRA-C2012-9.1The value of an object with automatic storage duration shall not be read before it has been set
Rule 9.2MISRA-C2012-9.2The initializer for an aggregate or union shall be enclosed in braces
Rule 9.3MISRA-C2012-9.3Arrays shall not be partially initialized
Rule 9.4MISRA-C2012-9.4An element of an object shall not be in itialized more than once
Rule 9.5MISRA-C2012-9.5Where designated initializers are used t o initialize an array object the size of the array shall be specified explicitly
Rule 10MISRA-C2012-10.11Operands shall not be of an inappropriate essential type
Rule 10.2MISRA-C2012-10.2Expressions of essentially character type shall not be used inappropriately in addition and subtraction operations
Rule 10.3MISRA-C2012-10.3The value of an expression shall not be assigned to an object with a narrower essential type or of a different essential type category
Rule 10.4MISRA-C2012-10.4Both operands of an operator in which the usual arithmetic conversions are performed s hall have the same essential type category
Rule 10.5MISRA_C2012-10.5The value of an expression should not be cast to an inappropriate essential type
Rule 10.6MISRA-C2012-10.6The value of a composite expression shall not be assigned to an object with wider essential type
Rule 10.7MISRA-C2012-10.7If a composite expression is used as one operand of an operator in which the usual arithmetic conversions are performed then the other operand shall not have wider essential type
Rule 10.8MISRA-C2012-10.8The value of a composite expression shall not be cast to a different essential type category or a wider essential type
Rule 11.1MISRA-C2012-11.1Conversions shall not be performed between a pointer to a function and any other type
Rule 11.2MISRA-C2012-11.2Conversions shall not be performed between a pointer to an incomplete type and any other type
Rule 11.3MISRA-C2012-11.3A cast shall not be performed between a pointer to object type and a pointer to a different object type
Rule 11.4MISRA-C2012-11.4A conversion should not be performed between a pointer to object and an integer type
Rule 11.5MISRA-C2012-11.5A conversion should not be performed from pointer to void into pointer to object
Rule 11.6MISRA-C2012-11.6A cast shall not be performed between pointer to void and an arithmetic type
Rule 11.7MISRA-C2012-11.7A cast shall not be performed between pointer to object and a noninteger arithmetic type
Rule 11.8MISRA-C2012-11.8A cast shall not remove any const or volatile qualification from the type pointed to by a pointer
Rule 11.9MISRA-C2012-11.9The macro NULL shall be the only per mitted form of integer null pointer constant
Rule 12.1MiSRA-C2012-12.1The precedence of operators within expressions should be made explicit
Rule 12.2MISRA-C2012-12.2The right hand operand of a shift operator shall lie in the range zero to one less than the width in bits of the essential type of the left hand operand
Rule 12.3MISRA-C2012-12.3The comma operator should not be used
Rule 12.4MISRA-C2012-12.4Evaluation of constant expressions should not lead to unsigned integer wrap-around
Rule 13.1MISRA-C2012-13.1Initializer lists shall not contain persistent side eff ects
Rule 13.2MISRA-C2012-13.2The value of an expression and its persistent side eff ects shall be the same under all permitted evaluation orders
Rule 13.3MISRA-C2012-13.3A full expression containing an increment (++) or decrement (--) operator should hav e no other potential side eff ects other than that caused by the increment or decrement operator
Rule 13.4MISRA-C2012-13.4The result of an assignment operator should not be used
Rule 13.5MISRA-C2012-13.5The right hand operand of a logical && or || operator shall not contain persistent side effects
Rule 13.6MISRA-C2012-13.6The operand of the size of operator shall not contain any expression which has potential side effects
Rule 14.1MISRA-C2012-14.1A loop counter shall not have essentially floating type
Rule 14.2MISRA-C2012-14.2A for loop shall be well-formed
Rule 14.3MISRA-C2012-14.3Controlling expressions shall not be invariant
Rule 14.4MISRA-C2012-14.4The controlling expression of an if statement and the controlling expression of an iteration- statement shall have essentially Boolean type
Rule 15.1MISRA-C2012-15.1The goto statement should not be used
Rule 15.2MISRA-C2012-15.2The goto statement shall jump to a label declared later in the same function
Rule 15.3MISRA-C2012-15.3Any label referenced by a goto statement shall be declared in the same block, or in any block enclosing the goto statement
Rule 15.4MISRA-C2012-15.4There should be no more than one break or goto statement used to terminate any iteration statement
Rule 15.5MISRA-C2012-15.5A function should have a single point of exit at the end
Rule 15.6MISRA-C2012-15.6The body of an iteration-statement or a selection-statement shall be a compound-statement
Rule 15.7MISRA-C2012-15.7All if … else if constructs shall be terminated with an else statement
Rule 16.1MISRA-C2012-16.1All switch statements shall be well-formed
Rule 16.2MISRA-C2012-16.2A switch label shall only be used when the most closely-enclosing compound statement is the body of a switch statement
Rule 16.3MISRA-C2012-16.3An unconditional break statement shall terminate every switch-clause
Rule 16.4MISRA-C2012-16.4Every switch statement shall have a default label
Rule 16.5MISRA-C2012-16.5A default label shall appear as either the first or the last switch label of a switch statement
Rule 16.6MISRA-C2012-16.6Every switch statement shall have at least two switch-clauses
Rule 16.7MISRA-C2012-16.7A switch-expression shall not have essentially Boolean type
Rule 17.1MISRA-C2012-17.1The features of shall not be used
Rule 17.2MISRA-C2012-17.2Functions shall not call themselves, either directly or indirectly
Rule 17.3MISRA-C2012-17.3A function shall not be declared implicitly
Rule 17.4MISRA-C2012-17.4All exit paths from a function with non-void return type shall have an explicit return statement with an expression
Rule 17.5MISRA-C2012-17.5The function argument corresponding to a parameter declared to have an array type shall have an appropriate number of elements
Rule 17.6MISRA-C2012-17.6The declaration of an array parameter shall not contain the static keyword between the [ ]
Rule 17.7MISRA-C2012-17.7The value returned by a function having non-void return type shall be used
Rule 17.8MISRA-C2012-17.8A function parameter should not be modified
Rule 18.1MISRA-C2012-18.1A pointer resulting from arithmetic on a pointer operand shall address an element of the same array as that pointer operand
Rule 18.3MISRA-C2012-18.3The relational operators >, >=, < and <= shall not be applied to objects of pointer type except where they point into the same object
Rule 18.4MISRA-C2012-18.4The +, -, += and -= operators should not be applied to an expression of pointer type
Rule 18.5MISRA-C2012-18.5Declarations should contain no more than two levels of pointer nesting
Rule 18.6MISRA-C2012-18.6The address of an object with automatic storage shall not be copied to another object that persists after the first object has ceased to exist
Rule 18.7MISRA-C2012-18.7Flexible array members shall not be declared
Rule 18.8MISRA-C2012-18.8Variable-length array types shall not be used
Rule 19.2MiSRA-C2012-19.2The union keyword should not be used
Rule 20.1MISRA-C2012-20.1#include directives should only be preceded by preprocessor directives or comments
Rule 20.2MISRA-C2012-20.2The ', " or \ characters and the /* or // character sequences shall not occur in a header file name
Rule 20.3MISRA-C2012-20.3The #include directive shall be followed by either a or "filename" sequence
Rule 20.4MISRA-C2012-20.4A macro shall not be defined with the same name as a keyword
Rule 20.5MISRA-C2012-20.5#undef should not be used
Rule 20.6MISRA-C2012-20.6Tokens that look like a preprocessing directive shall not occur within a macro argument
Rule 20.7MISRA-C2012-20.7Expressions resulting from the expansion of macro parameters shall be enclosed in parentheses
Rule 20.8MISRA-C2012-20.8The controlling expression of a #if or #elif preprocessing directive shall evaluate to 0 or 1
Rule 20.9MISRA-C2012-20.9All identifiers used in the controlling expression of #if or #elif preprocessing directives shall be #defi ne’d before evaluation
Rule 20.10MISRA-C2012-21.10The # and ## preprocessor operators should not be used
Rule 20.11Misra-c2012-21.11A macro parameter immediately following a # operator shall not immediately be followed by a ## operator
Rule 20.12MISRA-C2012-21.12A macro parameter used as an operand to the # or ## o perators, which is itself subj ect to further macro replacement, shall only be used as an operand to these operators
Rule 20.13MISRA-C2012-20.13A line whose first token is # shall be a valid preprocessing directive
Rule 20.14MISRA-C2012-20.14All #else, #elif and #endif preprocessor directives shall reside in the same file as the #if, #ifdef or #ifndef directive to which they are related
Rule 21.1MISRA-C2012-21.1#defi ne and #undef shall not be used on a reserved identifier or reserved macro name
Rule 21.2MISRA-C2012-21.2A reserved identifier or macro name shall not be declared
Rule 21.3MISRA-C2012-21.3The memory allocation and deallocation functions of shall not be used
Rule 21.4MISRA-C2012-21.4The standard header file shall not be used
Rule 21.5MISRA-C2012-21.5The standard header file shall not be used
Rule 21.6MISRA-C2012-21.6The Standard Library input/output functions shall not be used
Rule 21.7MISRA-C2012-21.7The atof, atoi, atol and atoll functions of shall not be used
Rule 21.8MISRA-C2012-21.8The library functions abort, exit, getenv and system of shall not be used
Rule 21.9MISRA-C2012-21.9The library functions bsearch and qsort of shall not be used
Rule 21.10MISRA-C2012-21.10The Standard Library time and date functions shall not be used
Rule 21.11MISRA-C2012-21.11The standard header file shall not be used
Rule 21.12MISRA-C2012-21.12The exception handling features of should not be used
Rule 22.1MISRA-C2012-22.1All resources obtained dynamically by means of Standard Library functions shall be explicitly released
Rule 22.2MISRA-C2012-22.2A block of memory shall only be freed if it was allocated by means of a Standard Library function
Rule 22.4MISRA-C2012-22.4There shall be no attempt to write to a stream which has been opened as read-only
Rule 22.5MISRA-C2012-22.5A pointer to a FILE object shall not be dereferenced
Rule 22.6MISRA-C2012-22.6The value of a pointer to a FILE shall not be used after the associated stream has been closed