Replace and fix findBreakScope with findNextTokenFromBreak
This commit is contained in:
parent
8bd783f820
commit
b8f45a5c65
|
@ -494,10 +494,18 @@ const Token* getCondTokFromEnd(const Token* endBlock)
|
|||
return getCondTokFromEndImpl(endBlock);
|
||||
}
|
||||
|
||||
const Scope *findBreakScope(const Scope *s) {
|
||||
while (s && !s->isLoopScope() && s->type != Scope::ScopeType::eSwitch)
|
||||
s = s->nestedIn;
|
||||
return s;
|
||||
const Token *findNextTokenFromBreak(const Token *breakToken)
|
||||
{
|
||||
const Scope *scope = breakToken->scope();
|
||||
while (scope) {
|
||||
if (scope->isLoopScope() || scope->type == Scope::ScopeType::eSwitch) {
|
||||
if (scope->type == Scope::ScopeType::eDo && Token::simpleMatch(scope->bodyEnd, "} while ("))
|
||||
return scope->bodyEnd->linkAt(2)->next();
|
||||
return scope->bodyEnd;
|
||||
}
|
||||
scope = scope->nestedIn;
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
bool extractForLoopValues(const Token *forToken,
|
||||
|
@ -2513,10 +2521,10 @@ FwdAnalysis::Result FwdAnalysis::check(const Token* expr, const Token* startToke
|
|||
|
||||
// Break => continue checking in outer scope
|
||||
while (mWhat!=What::ValueFlow && result.type == FwdAnalysis::Result::Type::BREAK) {
|
||||
const Scope *breakScope = findBreakScope(result.token->scope());
|
||||
if (!breakScope)
|
||||
const Token *scopeEndToken = findNextTokenFromBreak(result.token);
|
||||
if (!scopeEndToken)
|
||||
break;
|
||||
result = checkRecursive(expr, breakScope->bodyEnd->next(), endToken, exprVarIds, local, false);
|
||||
result = checkRecursive(expr, scopeEndToken->next(), endToken, exprVarIds, local, false);
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
|
@ -115,8 +115,9 @@ const Token* getCondTok(const Token* tok);
|
|||
Token* getCondTokFromEnd(Token* endBlock);
|
||||
const Token* getCondTokFromEnd(const Token* endBlock);
|
||||
|
||||
/// For a "break", locate the outer loop/switch scope that is finished
|
||||
const Scope *findBreakScope(const Scope *scope);
|
||||
/// For a "break" token, locate the next token to execute. The token will
|
||||
/// be either a "}" or a ";".
|
||||
const Token *findNextTokenFromBreak(const Token *breakToken);
|
||||
|
||||
/**
|
||||
* Extract for loop values: loopvar varid, init value, step value, last value (inclusive)
|
||||
|
|
|
@ -139,10 +139,9 @@ void CheckVaarg::va_list_usage()
|
|||
} else if (Token::Match(tok, "throw|return"))
|
||||
exitOnEndOfStatement = true;
|
||||
else if (tok->str() == "break") {
|
||||
const Scope *breakScope = findBreakScope(tok->scope());
|
||||
if (!breakScope)
|
||||
tok = findNextTokenFromBreak(tok);
|
||||
if (!tok)
|
||||
return;
|
||||
tok = breakScope->bodyEnd;
|
||||
} else if (tok->str() == "goto" || (mTokenizer->isCPP() && tok->str() == "try")) {
|
||||
open = false;
|
||||
break;
|
||||
|
|
|
@ -297,10 +297,10 @@ struct ForwardTraversal {
|
|||
if (!tok)
|
||||
return Progress::Break;
|
||||
} else if (tok->str() == "break") {
|
||||
const Scope* scope = findBreakScope(tok->scope());
|
||||
if (!scope)
|
||||
const Token *scopeEndToken = findNextTokenFromBreak(tok);
|
||||
if (!scopeEndToken)
|
||||
return Progress::Break;
|
||||
tok = skipTo(tok, scope->bodyEnd, end);
|
||||
tok = skipTo(tok, scopeEndToken, end);
|
||||
if (!analyzer->lowerToPossible())
|
||||
return Progress::Break;
|
||||
// TODO: Don't break, instead move to the outer scope
|
||||
|
|
Loading…
Reference in New Issue