|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [XEN PATCH] automation/eclair: extend deviations of MISRA C:2012 Rule 16.3
On 28/02/24 10:06, Jan Beulich wrote: On 28.02.2024 09:53, Federico Serafini wrote:--- a/automation/eclair_analysis/ECLAIR/deviations.ecl +++ b/automation/eclair_analysis/ECLAIR/deviations.eclComments below apply similarly to text added to this file. Because the allowed pattern is: if ( cond ) return; /* Or continue / break / goto */ else break; /* Or continue / goto / return */ See below for more information. Also what about either situation ending with a call to a noreturn function? This can be added.
Noted. This pattern that involves a compound statement for the true branch is not deviated by this configuration. See below for more information. + * - R16.3 + - Switch clauses ending generating a parse error through + \"PARSE_ERR_RET()\" are safe. + - Tagged as `safe` for ECLAIR.Again this isn't a global scope macro, so shouldn't be deviated globally. Noted. I gather from your comments/questions that you would like to deviate *all* the patterns where an unintentional fall through can not happen. Rule 16.3 is a purely syntactic rule, and, as a consequence, in the current version of ECLAIR additional "allowed pattern" (aka deviations) for that rule need to be described through AST nodes, meaning that all what you consider as syntactic sugar cannot be ignored. A deviation that covers all the pattern you are asking for could be done, but it will result in a complex and quite long expression (not easy to read and justify in front of an assessor). Hence, what I am proposing is to deviate only the the simplest and most readable cases, such as: if ( cond ) return x; else return y; without involving compound statements, fake do-wile and fake if statements but rather deviating the macro inside of which are used (as I did). -- Federico Serafini, M.Sc. Software Engineer, BUGSENG (http://bugseng.com)
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |