Main Content

MISRA C:2012 Coding Directives and Rules Supported for Code Generation

When you generate C code from MATLAB® code, you can configure the code generator to maximize the compliance of the generated code with the required and mandatory coding rules in the MISRA™ C:2012 guidelines.

The following tables list all the required and mandatory coding directives and rules in MISRA C:2012 Main Document, MISRA C:2012 Amendment 1, MISRA C:2012 Amendment 2, and MISRA C:2012 Amendment 3. The Category columns in these tables apply to automatically generated code as specified in the Appendix E of the MISRA C:2012 guidelines.

For each directive or rule, the Compliance column has one of these entries:

  • Compliant: Generated code is compliant with this directive/rule.

  • Noncompliant: In some situations, the generated code might not be compliant with this directive/rule.

  • Not Applicable: This directive/rule does not apply to the code generation process. For some of these directives/rules, the Additional Notes section suggests actions that you can take to improve the compliance of the generated code.

Note

These tables assume that you have already followed these steps to maximize MISRA compliance of the generated code:

The generated code might include one or more files that are not compliant with MISRA guidelines. For a complete list of these files, see Scope of Code Generation Support.

In certain situations, you might be able to configure the code generator to avoid using the custom type definitions contained in the rtwtypes.h file in the generated code. For example, see Additional Settings for MISRA C++ Compliance.

The information in these tables does not apply to the C code generated for MATLAB code inside MATLAB Function blocks and MATLAB System blocks in Simulink® models. For information on the MISRA compliance of code generated from Simulink models, see MISRA C:2012 Compliance Summary Tables.

The code generator interprets these rules in the same way as the Polyspace® Bug Finder™ product. To learn about how the code generator interprets a particular coding rule, see the Polyspace Implementation section in the corresponding reference page in the Polyspace Bug Finder documentation: MISRA C:2012 Directives and Rules (Polyspace Bug Finder).

The Implementation

DirectiveDescriptionaCategoryComplianceAdditional Notes
Dir 1.1Any implementation-defined behavior on which the output of the program depends shall be documented and understood.RequiredNoncompliant 

a Copyright © The MISRA Consortium Limited, 2022.

Compilation and Build

DirectiveDescriptionaCategoryComplianceAdditional Notes
Dir 2.1All source files shall compile without any compilation errors.RequiredCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

Requirements Traceability

DirectiveDescriptionaCategoryComplianceAdditional Notes
Dir 3.1All code shall be traceable to documented requirements.RequiredNot Applicable

To make the generated code compliant, use Requirements Toolbox™ to include comments in the generated code that contain information about the requirements. See Requirements Traceability for Code Generated from MATLAB Code (Requirements Toolbox).

a Copyright © The MISRA Consortium Limited, 2022.

Code Design

Directivea, bDescriptioncCategoryComplianceAdditional Notes
Dir 4.1Run-time failures shall be minimized.RequiredNoncompliant 
Dir 4.3Assembly language shall be encapsulated and isolated.RequiredCompliant 
Dir 4.7If a function returns error information, then that error information shall be tested.RequiredNoncompliant

To reduce this violation, in your MATLAB code, include tests for the output of coder.ceval calls.

Dir 4.10Precautions shall be taken in order to prevent the contents of a header file being included more than once.RequiredCompliant 
Dir 4.11The validity of values passed to library functions shall be checked.RequiredNoncompliant

To reduce this violation, in your MATLAB code, check the validity of values that you pass to coder.ceval.

Dir 4.12Dynamic memory allocation shall not be used.RequiredCompliant 
Dir 4.14The validity of values received from external sources shall be checked.RequiredNoncompliant

To reduce this violation, in your MATLAB code, check the validity of values that coder.ceval returns.

Dir 4.15Evaluation of floating-point expressions shall not lead to the undetected generation of infinities and NaNs.RequiredNoncompliant 

a Directive 4.14 is from MISRA Amendment 1.

b Directive 4.15 is from MISRA Amendment 3.

c Copyright © The MISRA Consortium Limited, 2022.

Standard C Environment

Rulea, bDescriptioncCategoryComplianceAdditional Notes
1.1The program shall contain no violations of the standard C syntax and constraints, and shall not exceed the implementation's translation limits.RequiredCompliant 
1.3There shall be no occurrence of undefined or critical unspecified behavior.RequiredCompliant 
1.4Emergent language features shall not be used.RequiredCompliant 
1.5Obsolescent language features shall not be used.RequiredCompliant 

a Rule 1.4 is from MISRA Amendment 2.

b Rule 1.5 is from MISRA Amendment 3.

c Copyright © The MISRA Consortium Limited, 2022.

Unused Code

RuleDescriptionaCategoryComplianceAdditional Notes
2.1A project shall not contain unreachable code.RequiredNoncompliant 
2.2There shall be no dead code.RequiredNoncompliant 

a Copyright © The MISRA Consortium Limited, 2022.

Comments

RuleDescriptionaCategoryComplianceAdditional Notes
3.1The character sequences /* and // shall not be used within a comment.RequiredNoncompliant

To reduce this violation, make sure the comments that you include in your MATLAB code or external C/C+ code satisfies this rule.

Alternatively, consider disabling comment generation by setting the configuration property GenerateComments to false.

3.2Line-splicing shall not be used in // comments.RequiredCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

Character Sets and Lexical Conventions

RuleDescriptionaCategoryComplianceAdditional Notes
4.1Octal and hexadecimal escape sequences shall be terminated.RequiredCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

Identifiers

RuleDescriptionaCategorybComplianceAdditional Notes
5.1External identifiers shall be distinct.RequiredNoncompliant

To reduce this violation, make sure your MATLAB entry-point function names contain less than 5 characters.

5.2Identifiers declared in the same scope and name space shall be distinct.RequiredCompliant 
5.3An identifier declared in an inner scope shall not hide an identifier declared in an outer scope.AdvisoryCompliant 
5.4Macro identifiers shall be distinct.RequiredCompliant 
5.5Identifiers shall be distinct from macro names.RequiredCompliant 
5.6A typedef name shall be a unique identifier.RequiredCompliant 
5.7A tag name shall be a unique identifier.RequiredCompliant 
5.8Identifiers that define objects or functions with external linkage shall be unique.RequiredCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

b Guideline identifies Rule 5.3 as Required for manually generated code.

Types

RuleaDescriptionbCategoryComplianceAdditional Notes
6.1Bit-fields shall only be declared with an appropriate type.RequiredCompliant 
6.2Single-bit named bit fields shall not be of a signed type.RequiredCompliant 
6.3A bit field shall not be declared as a member of a union.RequiredCompliant 

a Rule 6.3 is from MISRA Amendment 3.

b Copyright © The MISRA Consortium Limited, 2022.

Literals and Constants

RuleaDescriptionbCategorycComplianceAdditional Notes
7.1Octal constants shall not be used.AdvisoryCompliant 
7.2A "u" or "U" suffix shall be applied to all integer constants that are represented in an unsigned type.ReadabilityCompliant 
7.3The lowercase character "l" shall not be used in a literal suffix.ReadabilityCompliant 
7.4A string literal shall not be assigned to an object unless the object's type is "pointer to const-qualified char".RequiredCompliant 
7.5The argument of an integer constant macro shall have an appropriate form.MandatoryCompliant 

a Rule 7.5 is from MISRA Amendment 3.

b Copyright © The MISRA Consortium Limited, 2022.

c Guideline identifies Rules 7.1, 7.2, and 7.3 as Required for manually generated code.

Declarations and Definitions

RuleaDescriptionbCategorycComplianceAdditional Notes
8.1Types shall be explicitly specified.RequiredCompliant 
8.2Function types shall be in prototype form with named parameters.RequiredCompliant 
8.3All declarations of an object or function shall use the same names and type qualifiers.RequiredCompliant 
8.4A compatible declaration shall be visible when an object or function with external linkage is defined.AdvisoryCompliant 
8.5An external object or function shall be declared once in one and only one file.AdvisoryCompliant 
8.6An identifier with external linkage shall have exactly one external definition.RequiredCompliant 
8.8The static storage class specifier shall be used in all declarations of objects and functions that have internal linkage.RequiredCompliant 
8.10An inline function shall be declared with the static storage class.RequiredCompliant 
8.12Within an enumerator list, the value of an implicitly-specified enumeration constant shall be unique.RequiredCompliant 
8.14The restrict type qualifier shall not be used.AdvisoryCompliant 
8.15All declarations of an object with an explicit alignment specification shall specify the same alignment.RequiredCompliant 

a Rule 8.15 is from MISRA Amendment 3.

b Copyright © The MISRA Consortium Limited, 2022.

c Guideline identifies Rule 8.4, 8.5, and 8.14 as Required for manually generated code.

Initialization

RuleDescriptionaCategorybComplianceAdditional Notes
9.1The value of an object with automatic storage duration shall not be read before it has been set.MandatoryNoncompliant 
9.2The initializer for an aggregate or union shall be enclosed in braces.ReadabilityCompliant 
9.3Arrays shall not be partially initialized.ReadabilityCompliant 
9.4An element of an object shall not be initialized more than once.RequiredCompliant 
9.5Where designated initializers are used to initialize an array object the size of the array shall be specified explicitly.ReadabilityCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

b Guideline identifies Rule 9.2, 9.3, and 9.5 as Required for manually generated code.

The Essential Type Model

RuleDescriptionaCategorybComplianceAdditional Notes
10.1Operands shall not be of an inappropriate essential type.AdvisoryCompliant 
10.2Expressions of essentially character type shall not be used inappropriately in addition and subtraction operations.AdvisoryCompliant 
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.AdvisoryCompliant 
10.4Both operands of an operator in which the usual arithmetic conversions are performed shall have the same essential type category.AdvisoryCompliant 
10.6The value of a composite expression shall not be assigned to an object with wider essential type.AdvisoryCompliant 
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.AdvisoryCompliant 
10.8The value of a composite expression shall not be cast to a different essential type category or a wider essential type.AdvisoryCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

b Guideline identifies Rule 10.1, 10.2, 10.3, 10.4, 10.6, 10.7, and 10.8 as Required for manually generated code.

Pointer Type Conversion

RuleDescriptionaCategorybComplianceAdditional Notes
11.1Conversions shall not be performed between a pointer to a function and any other type.RequiredCompliant 
11.2Conversions shall not be performed between a pointer to an incomplete type and any other type.RequiredCompliant 
11.3A cast shall not be performed between a pointer to object type and a pointer to a different object type.RequiredNoncompliant 
11.6A cast shall not be performed between pointer to void and an arithmetic type.RequiredCompliant 
11.7A cast shall not be performed between pointer to object and a non-integer arithmetic type.RequiredCompliant 
11.8A cast shall not remove any const or volatile qualification from the type pointed to by a pointer.RequiredNoncompliant 
11.9The macro NULL shall be the only permitted form of integer null pointer constant.ReadabilityCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

b Guideline identifies Rule 11.9 as Required for manually generated code.

Expressions

RuleaDescriptionbCategoryComplianceAdditional Notes
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.RequiredNoncompliant 
12.5The sizeof operator shall not have an operand which is a function parameter declared as "array of type".MandatoryCompliant 

a Rule 12.5 is from MISRA Amendment 1.

b Copyright © The MISRA Consortium Limited, 2022.

Side Effects

RuleDescriptionaCategoryComplianceAdditional Notes
13.1Initializer lists shall not contain persistent side effects.RequiredCompliant 
13.2The value of an expression and its persistent side effects shall be the same under all permitted evaluation orders.RequiredNoncompliant 
13.5The right hand operand of a logical && or || operator shall not contain persistent side effects.RequiredNoncompliant

In certain situations, the code generator promotes local variables to static local variables to reduce the stack usage of the generated code. This promotion might cause the generated code to violate this rule.

Increasing the value of the StackUsageMax code configuration parameter might make the generated code compliant with this rule.

13.6The operand of the sizeof operator shall not contain any expression which has potential side effects.RequiredCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

Control Statement Expressions

RuleDescriptionaCategorybComplianceAdditional Notes
14.1A loop counter shall not have essentially floating type.AdvisoryCompliant 
14.2A for loop shall be well-formed.ReadabilityCompliant 
14.3Controlling expressions shall not be invariant.RequiredNoncompliant 
14.4The controlling expression of an if statement and the controlling expression of an iteration-statement shall have essentially Boolean type.AdvisoryCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

b Guideline identifies Rule 14.1, 14.2, and 14.4 as Required for manually generated code.

Control Flow

RuleDescriptionaCategorybComplianceAdditional Notes
15.2The goto statement shall jump to a label declared later in the same function.AdvisoryCompliant 
15.3Any label referenced by a goto statement shall be declared in the same block, or in any block enclosing the goto statement.AdvisoryCompliant 
15.6The body of an iteration-statement or a selection-statement shall be a compound-statement.RequiredCompliant 
15.7All if ... else if constructs shall be terminated with an else statement.ReadabilityCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

b Guideline identifies Rule 15.2, 15.3, and 15.7 as Required for manually generated code.

Switch Statements

RuleDescriptionaCategorybComplianceAdditional Notes
16.1All switch statements shall be well-formed.AdvisoryCompliant 
16.2A switch label shall only be used when the most closely-enclosing compound statement is the body of a switch statement.AdvisoryCompliant 
16.3An unconditional break statement shall terminate every switch-clause.AdvisoryCompliant 
16.4Every switch statement shall have a default label.AdvisoryCompliant 
16.5A default label shall appear as either the first or the last switch label of a switch statement.AdvisoryCompliant 
16.6Every switch statement shall have at least two switch-clauses.AdvisoryCompliant 
16.7A switch-expression shall not have essentially Boolean type.AdvisoryCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

b Guideline identifies Rule 16.1, 16.2, 16.3, 16.4, 16.5, 16.6, and 16.7 as Required for manually generated code.

Functions

RuleaDescriptionbCategorycComplianceAdditional Notes
17.1The features of <stdarg.h> shall not be used.RequiredCompliant 
17.2Functions shall not call themselves, either directly or indirectly.RequiredCompliant 
17.3A function shall not be declared implicitly.MandatoryCompliant 
17.4All exit paths from a function with non-void return type shall have an explicit return statement with an expression.MandatoryCompliant 
17.5The function argument corresponding to a parameter declared to have an array type shall have an appropriate number of elements.RequiredCompliant 
17.6The declaration of an array parameter shall not contain the static keyword between the [ ].MandatoryCompliant 
17.7The value returned by a function having non-void return type shall be used.ReadabilityCompliant 
17.9A function declared with a _Noreturn function specifier shall not return to its caller.MandatoryCompliant 
17.10A function declared with a _Noreturn function specifier shall have void return type.RequiredCompliant 
17.13A function type shall not be type qualified.RequiredCompliant 

a Rule 17.9, 17.10 and 17.13 are from MISRA Amendment 3.

b Copyright © The MISRA Consortium Limited, 2022.

c Guideline identifies Rule 17.7 as Required for manually generated code.

Pointers and Arrays

RuleaDescriptionbCategoryComplianceAdditional Notes
18.1A pointer resulting from arithmetic on a pointer operand shall address an element of the same array as that pointer operand.RequiredNoncompliant 
18.2Subtraction between pointers shall only be applied to pointers that address elements of the same array.RequiredCompliant 
18.3The relational operators >, >=, < and <= shall not be applied to objects of pointer type except where they point into the same object.RequiredCompliant 
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.RequiredNoncompliant 
18.7Flexible array members shall not be declared.RequiredCompliant 
18.8Variable-length array types shall not be used.RequiredCompliant 
18.9An object with temporary lifetime shall not undergo array-to-pointer conversion.RequiredCompliant 

a Rule 18.9 is from MISRA Amendment 3.

b Copyright © The MISRA Consortium Limited, 2022.

Overlapping Storage

RuleDescriptionaCategoryComplianceAdditional Notes
19.1An object shall not be assigned or copied to an overlapping object.MandatoryCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

Preprocessing Directives

RuleDescriptionaCategoryComplianceAdditional Notes
20.2The ', " or \ characters and the /* or // character sequences shall not occur in a header file name.RequiredCompliant 
20.3The #include directive shall be followed by either a <filename> or "filename"sequence.RequiredCompliant 
20.4A macro shall not be defined with the same name as a keyword.RequiredCompliant 
20.6Tokens that look like a preprocessing directive shall not occur within a macro argument.RequiredCompliant 
20.7Expressions resulting from the expansion of macro parameters shall be enclosed in parentheses.RequiredCompliant 
20.8The controlling expression of a #if or #elif preprocessing directive shall evaluate to 0 or 1.RequiredCompliant 
20.9All identifiers used in the controlling expression of #if or #elif preprocessing directives shall be #define'd before evaluation.RequiredCompliant 
20.11A macro parameter immediately following a # operator shall not immediately be followed by a ## operator.RequiredCompliant 
20.12A macro parameter used as an operand to the # or ## operators, which is itself subject to further macro replacement, shall only be used as an operand to these operators.RequiredCompliant 
20.13A line whose first token is # shall be a valid preprocessing directive.RequiredCompliant 
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.RequiredCompliant 

a Copyright © The MISRA Consortium Limited, 2022.

Standard Libraries

Rulea, b, cDescriptiondCategoryComplianceAdditional Notes
21.1#define and #undef shall not be used on a reserved identifier or reserved macro name.RequiredCompliant 
21.2A reserved identifier or reserved macro name shall not be declared.RequiredCompliant 
21.3The memory allocation and deallocation functions of <stdlib.h> shall not be used.RequiredCompliant 
21.4The standard header file <setjmp.h> shall not be used.RequiredCompliant 
21.5The standard header file <signal.h> shall not be used.RequiredCompliant 
21.6The Standard Library input/output functions shall not be used.RequiredNoncompliant

To reduce this violation, in your MATLAB code, avoid using functions such as fopen, fclose, fprintf, fscanf, fread, fwrite, and coder.read.

21.7The Standard Library functions atof, atoi, atol and atoll of <stdlib.h> shall not be used.RequiredCompliant 
21.8The Standard Library termination functions of <stdlib.h> shall not be used.RequiredCompliant 
21.9The Standard Library functions bsearch and qsort of <stdlib.h> shall not be used.RequiredCompliant 
21.10The Standard Library time and date functions shall not be used.RequiredNoncompliant

To reduce this violation, in your MATLAB code, avoid using functions such as tic, toc, and pause.

21.12The standard header file <fenv.h> shall not be used.RequiredCompliant 
21.13Any value passed to a function in <ctype.h> shall be representable as an unsigned char or be the value EOF.MandatoryCompliant 
21.14The Standard Library function memcmp shall not be used to compare null terminated strings.RequiredCompliant 
21.15The pointer arguments to the Standard Library functions memcpy, memmove and memcmp shall be pointers to qualified or unqualified versions of compatible types.RequiredCompliant 
21.16The pointer arguments to the Standard Library function memcmp shall point to either a pointer type, an essentially signed type, an essentially unsigned type, an essentially Boolean type or an essentially enum type.RequiredNoncompliant 
21.17Use of the string handling functions from <string.h> shall not result in accesses beyond the bounds of the objects referenced by their pointer parameters.MandatoryCompliant 
21.18The size_t argument passed to any function in <string.h> shall have an appropriate value.MandatoryNoncompliant 
21.19The pointers returned by the Standard Library functions localeconv, getenv, setlocale or, strerror shall only be used as if they have pointer to const-qualified type.MandatoryCompliant 
21.20The pointer returned by the Standard Library functions asctime, ctime, gmtime, localtime, localeconv, getenv, setlocale or strerror shall not be used following a subsequent call to the same function.MandatoryCompliant 
21.21The Standard Library function system of <stdlib.h> shall not be used.RequiredCompliant 
21.22All operand arguments to any type-generic macros declared in <tgmath.h> shall have an appropriate essential type.MandatoryCompliant 
21.23All operand arguments to any multi-argument type-generic macros declared in <tgmath.h> shall have the same standard type.RequiredCompliant 
21.24The random number generator functions of <stdlib.h> shall not be used.RequiredCompliant 

a Rule 21.13, 21.14, 21.15, 21.16, 21.17, 21.18, 21.19, 21.20 is from MISRA Amendment 1.

b Rule 21.21 is from MISRA Amendment 2.

c Rule 21.12, 21.22, 21.23 and 21.24 are from MISRA Amendment 3.

d Copyright © The MISRA Consortium Limited, 2022.

Resources

RuleaDescriptionbCategoryComplianceAdditional Notes
22.1All resources obtained dynamically by means of Standard Library functions shall be explicitly released.RequiredCompliant 
22.2A block of memory shall only be freed if it was allocated by means of a Standard Library function.MandatoryCompliant 
22.3The same file shall not be open for read and write access at the same time on different streams.RequiredCompliant 
22.4There shall be no attempt to write to a stream which has been opened as read-only.MandatoryCompliant 
22.5A pointer to a FILE object shall not be dereferenced.MandatoryCompliant 
22.6The value of a pointer to a FILE shall not be used after the associated stream has been closed.MandatoryCompliant 
22.7The macro EOF shall only be compared with the unmodified return value from any Standard Library function capable of returning EOF.RequiredCompliant 
22.8The value of errno shall be set to zero prior to a call to an errno-setting-function.RequiredCompliant 
22.9The value of errno shall be tested against zero after calling an errno-setting-function.RequiredCompliant 
22.10The value of errno shall only be tested when the last function to be called was an errno-setting-function.RequiredCompliant 

a Rule 22.7, 22.8, 22.9, and 22.10 is from MISRA Amendment 1.

b Copyright © The MISRA Consortium Limited, 2022.

Generic Selections

RuleaDescriptionbCategoryComplianceAdditional Notes
23.2A generic selection that is not expanded from a macro shall not contain potential side effects in the controlling expression.RequiredCompliant 
23.4A generic association shall list an appropriate type.RequiredCompliant 
23.6The controlling expression of a generic selection shall have an essential type that matches its standard type.RequiredCompliant 
23.8A default association shall appear as either the first or the last association of a generic selection.RequiredCompliant 

a Rule 23.2, 23.4, 23.6, and 23.8 are from MISRA Amendment 3.

b Copyright © The MISRA Consortium Limited, 2022.

See Also

|

Related Topics

External Websites