Misra: Add rule 5.3

This commit is contained in:
Daniel Marjamäki 2017-04-17 13:17:37 +02:00
parent dd2eb9ad1a
commit 9305394abd
2 changed files with 37 additions and 0 deletions

View File

@ -17,6 +17,13 @@ void misra_5_1() {
int a1234567890123456789012345678901; // 5.1
}
void misra_5_3() {
u8 x=1;
if (y!=0) {
u8 x=2; // 5.3
} else {}
}
#define m54_123456789012345678901234567890123456789012345678901234567890 1 // 5.4
#define m54_1234567890123456789012345678901234567890123456789012345678901 2 // 5.4

View File

@ -273,6 +273,35 @@ def misra_5_1(data):
if token.isName and len(token.str) > 31:
reportError(token, 5, 1)
def misra_5_3(data):
scopeVars = {}
for var in data.variables:
if var.isArgument:
continue
if not var.nameToken.scopeId in scopeVars:
scopeVars[var.nameToken.scope] = []
scopeVars[var.nameToken.scope].append(var)
for innerScope in data.scopes:
if innerScope.type == 'Global':
continue
if not innerScope in scopeVars:
continue
for innerVar in scopeVars[innerScope]:
outerScope = innerScope.nestedIn
while outerScope:
if not outerScope in scopeVars:
continue
found = False
for outerVar in scopeVars[outerScope]:
if innerVar.nameToken.str == outerVar.nameToken.str:
found = True
break
if found:
reportError(innerVar.nameToken, 5, 3)
break
outerScope = outerScope.nestedIn
def misra_5_4(data):
for dir in data.directives:
if re.match(r'#define [a-zA-Z0-9_]{64,}', dir.str):
@ -964,6 +993,7 @@ for arg in sys.argv[1:]:
print('Checking ' + arg + ', config "' + cfg.name + '"...')
misra_5_1(cfg)
misra_5_3(cfg)
misra_5_4(cfg)
misra_5_5(cfg)
if cfgNumber == 1: