Move the simplification of 'strlen' in simplifyTokenList.
This way it's possible to omit the call to simplifyKnownVariables before 'strlen'.
This commit is contained in:
parent
aa74761e8d
commit
1be1af4afb
|
@ -3992,19 +3992,6 @@ bool Tokenizer::simplifyTokenList()
|
||||||
|
|
||||||
simplifySizeof();
|
simplifySizeof();
|
||||||
|
|
||||||
// replace strlen(str)
|
|
||||||
simplifyKnownVariables();
|
|
||||||
for (Token *tok = _tokens; tok; tok = tok->next()) {
|
|
||||||
if (Token::Match(tok, "strlen ( %str% )")) {
|
|
||||||
std::ostringstream ostr;
|
|
||||||
ostr << Token::getStrLength(tok->tokAt(2));
|
|
||||||
tok->str(ostr.str());
|
|
||||||
tok->deleteNext();
|
|
||||||
tok->deleteNext();
|
|
||||||
tok->deleteNext();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// change array to pointer..
|
// change array to pointer..
|
||||||
for (Token *tok = _tokens; tok; tok = tok->next()) {
|
for (Token *tok = _tokens; tok; tok = tok->next()) {
|
||||||
if (Token::Match(tok, "%type% %var% [ ] [,;=]")) {
|
if (Token::Match(tok, "%type% %var% [ ] [,;=]")) {
|
||||||
|
@ -4155,6 +4142,18 @@ bool Tokenizer::simplifyTokenList()
|
||||||
modified |= simplifyCalculations();
|
modified |= simplifyCalculations();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// replace strlen(str)
|
||||||
|
for (Token *tok = _tokens; tok; tok = tok->next()) {
|
||||||
|
if (Token::Match(tok, "strlen ( %str% )")) {
|
||||||
|
std::ostringstream ostr;
|
||||||
|
ostr << Token::getStrLength(tok->tokAt(2));
|
||||||
|
tok->str(ostr.str());
|
||||||
|
tok->deleteNext();
|
||||||
|
tok->deleteNext();
|
||||||
|
tok->deleteNext();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// simplify redundant for
|
// simplify redundant for
|
||||||
removeRedundantFor();
|
removeRedundantFor();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue