Extend ProgramMemory to handle expressions (#3069)

This commit is contained in:
Paul Fultz II 2021-01-21 12:49:37 -06:00 committed by GitHub
parent d39956414f
commit 8b26ecbcdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 111 additions and 103 deletions

View File

@ -1,21 +1,19 @@
#include "programmemory.h" #include "programmemory.h"
#include "mathlib.h"
#include "token.h"
#include "astutils.h" #include "astutils.h"
#include "mathlib.h"
#include "symboldatabase.h" #include "symboldatabase.h"
#include "token.h"
#include <algorithm> #include <algorithm>
#include <cassert> #include <cassert>
#include <cstdio>
#include <limits> #include <limits>
#include <memory> #include <memory>
void ProgramMemory::setValue(nonneg int varid, const ValueFlow::Value &value) void ProgramMemory::setValue(MathLib::bigint exprid, const ValueFlow::Value& value) { values[exprid] = value; }
const ValueFlow::Value* ProgramMemory::getValue(MathLib::bigint exprid) const
{ {
values[varid] = value; const ProgramMemory::Map::const_iterator it = values.find(exprid);
}
const ValueFlow::Value* ProgramMemory::getValue(nonneg int varid) const
{
const ProgramMemory::Map::const_iterator it = values.find(varid);
const bool found = it != values.end() && !it->second.isImpossible(); const bool found = it != values.end() && !it->second.isImpossible();
if (found) if (found)
return &it->second; return &it->second;
@ -23,9 +21,9 @@ const ValueFlow::Value* ProgramMemory::getValue(nonneg int varid) const
return nullptr; return nullptr;
} }
bool ProgramMemory::getIntValue(nonneg int varid, MathLib::bigint* result) const bool ProgramMemory::getIntValue(MathLib::bigint exprid, MathLib::bigint* result) const
{ {
const ValueFlow::Value* value = getValue(varid); const ValueFlow::Value* value = getValue(exprid);
if (value && value->isIntValue()) { if (value && value->isIntValue()) {
*result = value->intvalue; *result = value->intvalue;
return true; return true;
@ -33,14 +31,14 @@ bool ProgramMemory::getIntValue(nonneg int varid, MathLib::bigint* result) const
return false; return false;
} }
void ProgramMemory::setIntValue(nonneg int varid, MathLib::bigint value) void ProgramMemory::setIntValue(MathLib::bigint exprid, MathLib::bigint value)
{ {
values[varid] = ValueFlow::Value(value); values[exprid] = ValueFlow::Value(value);
} }
bool ProgramMemory::getTokValue(nonneg int varid, const Token** result) const bool ProgramMemory::getTokValue(MathLib::bigint exprid, const Token** result) const
{ {
const ValueFlow::Value* value = getValue(varid); const ValueFlow::Value* value = getValue(exprid);
if (value && value->isTokValue()) { if (value && value->isTokValue()) {
*result = value->tokvalue; *result = value->tokvalue;
return true; return true;
@ -48,9 +46,9 @@ bool ProgramMemory::getTokValue(nonneg int varid, const Token** result) const
return false; return false;
} }
bool ProgramMemory::getContainerSizeValue(nonneg int varid, MathLib::bigint* result) const bool ProgramMemory::getContainerSizeValue(MathLib::bigint exprid, MathLib::bigint* result) const
{ {
const ValueFlow::Value* value = getValue(varid); const ValueFlow::Value* value = getValue(exprid);
if (value && value->isContainerSizeValue()) { if (value && value->isContainerSizeValue()) {
*result = value->intvalue; *result = value->intvalue;
return true; return true;
@ -58,15 +56,12 @@ bool ProgramMemory::getContainerSizeValue(nonneg int varid, MathLib::bigint* res
return false; return false;
} }
void ProgramMemory::setUnknown(nonneg int varid) void ProgramMemory::setUnknown(MathLib::bigint exprid)
{ {
values[varid].valueType = ValueFlow::Value::ValueType::UNINIT; values[exprid].valueType = ValueFlow::Value::ValueType::UNINIT;
} }
bool ProgramMemory::hasValue(nonneg int varid) bool ProgramMemory::hasValue(MathLib::bigint exprid) { return values.find(exprid) != values.end(); }
{
return values.find(varid) != values.end();
}
void ProgramMemory::swap(ProgramMemory &pm) void ProgramMemory::swap(ProgramMemory &pm)
{ {
@ -85,9 +80,10 @@ bool ProgramMemory::empty() const
void ProgramMemory::replace(const ProgramMemory &pm) void ProgramMemory::replace(const ProgramMemory &pm)
{ {
for (auto&& p:pm.values) for (auto&& p : pm.values) {
values[p.first] = p.second; values[p.first] = p.second;
} }
}
void ProgramMemory::insert(const ProgramMemory &pm) void ProgramMemory::insert(const ProgramMemory &pm)
{ {
@ -146,21 +142,13 @@ void programMemoryParseCondition(ProgramMemory& pm, const Token* tok, const Toke
}); });
if (!vartok) if (!vartok)
return; return;
if (vartok->varId() == 0) if (vartok->exprId() == 0)
return; return;
if (!truevalue.isIntValue()) if (!truevalue.isIntValue())
return; return;
if (endTok && isVariableChanged(tok->next(), endTok, vartok->varId(), false, settings, true)) if (endTok && isExpressionChanged(vartok, tok->next(), endTok, settings, true))
return; return;
pm.setIntValue(vartok->varId(), then ? truevalue.intvalue : falsevalue.intvalue); pm.setIntValue(vartok->exprId(), then ? truevalue.intvalue : falsevalue.intvalue);
} else if (Token::Match(tok, "%var%")) {
if (tok->varId() == 0)
return;
if (then && !astIsPointer(tok) && !astIsBool(tok))
return;
if (endTok && isVariableChanged(tok->next(), endTok, tok->varId(), false, settings, true))
return;
pm.setIntValue(tok->varId(), then);
} else if (Token::simpleMatch(tok, "!")) { } else if (Token::simpleMatch(tok, "!")) {
programMemoryParseCondition(pm, tok->astOperand1(), endTok, settings, !then); programMemoryParseCondition(pm, tok->astOperand1(), endTok, settings, !then);
} else if (then && Token::simpleMatch(tok, "&&")) { } else if (then && Token::simpleMatch(tok, "&&")) {
@ -169,6 +157,12 @@ void programMemoryParseCondition(ProgramMemory& pm, const Token* tok, const Toke
} else if (!then && Token::simpleMatch(tok, "||")) { } else if (!then && Token::simpleMatch(tok, "||")) {
programMemoryParseCondition(pm, tok->astOperand1(), endTok, settings, then); programMemoryParseCondition(pm, tok->astOperand1(), endTok, settings, then);
programMemoryParseCondition(pm, tok->astOperand2(), endTok, settings, then); programMemoryParseCondition(pm, tok->astOperand2(), endTok, settings, then);
} else if (tok->exprId() > 0) {
if (then && !astIsPointer(tok) && !astIsBool(tok))
return;
if (endTok && isExpressionChanged(tok, tok->next(), endTok, settings, true))
return;
pm.setIntValue(tok->exprId(), then);
} }
} }
@ -197,36 +191,33 @@ static void fillProgramMemoryFromAssignments(ProgramMemory& pm, const Token* tok
{ {
int indentlevel = 0; int indentlevel = 0;
for (const Token *tok2 = tok; tok2; tok2 = tok2->previous()) { for (const Token *tok2 = tok; tok2; tok2 = tok2->previous()) {
if ((Token::simpleMatch(tok2, "=") || Token::Match(tok2->previous(), "%var% (|{")) && tok2->astOperand1() &&
tok2->astOperand2()) {
bool setvar = false; bool setvar = false;
if (Token::Match(tok2, "[;{}] %var% = %var% ;")) { const Token* vartok = tok2->astOperand1();
const Token* valuetok = tok2->astOperand2();
for (const auto& p:vars) { for (const auto& p:vars) {
if (p.first != tok2->next()->varId()) if (p.first != vartok->exprId())
continue; continue;
const Token *vartok = tok2->tokAt(3);
if (vartok == tok) if (vartok == tok)
continue; continue;
pm.setValue(vartok->varId(), p.second); pm.setValue(vartok->exprId(), p.second);
setvar = true; setvar = true;
} }
} if (!setvar) {
if (!setvar && (Token::Match(tok2, ";|{|}|%type% %var% =") || Token::Match(tok2, "[;{}] const| %type% %var% (") || if (!pm.hasValue(vartok->exprId())) {
Token::Match(tok2->previous(), "for ( %var% ="))) {
const Token *vartok = tok2->next();
while (vartok->next()->isName())
vartok = vartok->next();
if (!pm.hasValue(vartok->varId())) {
MathLib::bigint result = 0; MathLib::bigint result = 0;
bool error = false; bool error = false;
execute(vartok->next()->astOperand2(), &pm, &result, &error); execute(valuetok, &pm, &result, &error);
if (!error) if (!error)
pm.setIntValue(vartok->varId(), result); pm.setIntValue(vartok->exprId(), result);
else else
pm.setUnknown(vartok->varId()); pm.setUnknown(vartok->exprId());
} }
} else if (!setvar && Token::Match(tok2, "%var% !!=") && isVariableChanged(tok2, 0, nullptr, true)) { }
const Token *vartok = tok2; } else if (tok2->exprId() > 0 && Token::Match(tok2, ".|(|[|*|%var%") && !pm.hasValue(tok2->exprId()) &&
if (!pm.hasValue(vartok->varId())) isVariableChanged(tok2, 0, nullptr, true)) {
pm.setUnknown(vartok->varId()); pm.setUnknown(tok2->exprId());
} }
if (tok2->str() == "{") { if (tok2->str() == "{") {
@ -291,12 +282,12 @@ void ProgramMemoryState::replace(const ProgramMemory &pm, const Token* origin)
void ProgramMemoryState::addState(const Token* tok, const ProgramMemory::Map& vars) void ProgramMemoryState::addState(const Token* tok, const ProgramMemory::Map& vars)
{ {
ProgramMemory pm; ProgramMemory pm = state;
fillProgramMemoryFromConditions(pm, tok, nullptr); fillProgramMemoryFromConditions(pm, tok, nullptr);
for (const auto& p:vars) { for (const auto& p:vars) {
nonneg int varid = p.first; MathLib::bigint exprid = p.first;
const ValueFlow::Value &value = p.second; const ValueFlow::Value &value = p.second;
pm.setValue(varid, value); pm.setValue(exprid, value);
if (value.varId) if (value.varId)
pm.setIntValue(value.varId, value.varvalue); pm.setIntValue(value.varId, value.varvalue);
} }
@ -343,9 +334,9 @@ ProgramMemory getProgramMemory(const Token *tok, const ProgramMemory::Map& vars)
fillProgramMemoryFromConditions(programMemory, tok, nullptr); fillProgramMemoryFromConditions(programMemory, tok, nullptr);
ProgramMemory state; ProgramMemory state;
for (const auto& p:vars) { for (const auto& p:vars) {
nonneg int varid = p.first; MathLib::bigint exprid = p.first;
const ValueFlow::Value &value = p.second; const ValueFlow::Value &value = p.second;
programMemory.setValue(varid, value); programMemory.setValue(exprid, value);
if (value.varId) if (value.varId)
programMemory.setIntValue(value.varId, value.varvalue); programMemory.setIntValue(value.varId, value.varvalue);
} }
@ -354,17 +345,17 @@ ProgramMemory getProgramMemory(const Token *tok, const ProgramMemory::Map& vars)
return programMemory; return programMemory;
} }
ProgramMemory getProgramMemory(const Token *tok, nonneg int varid, const ValueFlow::Value &value) ProgramMemory getProgramMemory(const Token* tok, MathLib::bigint exprid, const ValueFlow::Value& value)
{ {
ProgramMemory programMemory; ProgramMemory programMemory;
programMemory.replace(getInitialProgramState(tok, value.tokvalue)); programMemory.replace(getInitialProgramState(tok, value.tokvalue));
programMemory.replace(getInitialProgramState(tok, value.condition)); programMemory.replace(getInitialProgramState(tok, value.condition));
fillProgramMemoryFromConditions(programMemory, tok, nullptr); fillProgramMemoryFromConditions(programMemory, tok, nullptr);
programMemory.setValue(varid, value); programMemory.setValue(exprid, value);
if (value.varId) if (value.varId)
programMemory.setIntValue(value.varId, value.varvalue); programMemory.setIntValue(value.varId, value.varvalue);
const ProgramMemory state = programMemory; const ProgramMemory state = programMemory;
fillProgramMemoryFromAssignments(programMemory, tok, state, {{varid, value}}); fillProgramMemoryFromAssignments(programMemory, tok, state, {{exprid, value}});
return programMemory; return programMemory;
} }
@ -391,6 +382,11 @@ void execute(const Token *expr,
*error = true; *error = true;
} }
else if (expr->exprId() > 0 && programMemory->hasValue(expr->exprId())) {
if (!programMemory->getIntValue(expr->exprId(), result))
*error = true;
}
else if (expr->isComparisonOp()) { else if (expr->isComparisonOp()) {
MathLib::bigint result1(0), result2(0); MathLib::bigint result1(0), result2(0);
execute(expr->astOperand1(), programMemory, &result1, error); execute(expr->astOperand1(), programMemory, &result1, error);
@ -411,45 +407,45 @@ void execute(const Token *expr,
else if (expr->isAssignmentOp()) { else if (expr->isAssignmentOp()) {
execute(expr->astOperand2(), programMemory, result, error); execute(expr->astOperand2(), programMemory, result, error);
if (!expr->astOperand1() || !expr->astOperand1()->varId()) if (!expr->astOperand1() || !expr->astOperand1()->exprId())
*error = true; *error = true;
if (*error) if (*error)
return; return;
if (expr->str() == "=") { if (expr->str() == "=") {
programMemory->setIntValue(expr->astOperand1()->varId(), *result); programMemory->setIntValue(expr->astOperand1()->exprId(), *result);
return; return;
} }
long long intValue; long long intValue;
if (!programMemory->getIntValue(expr->astOperand1()->varId(), &intValue)) { if (!programMemory->getIntValue(expr->astOperand1()->exprId(), &intValue)) {
*error = true; *error = true;
return; return;
} }
if (expr->str() == "+=") if (expr->str() == "+=")
programMemory->setIntValue(expr->astOperand1()->varId(), intValue + *result); programMemory->setIntValue(expr->astOperand1()->exprId(), intValue + *result);
else if (expr->str() == "-=") else if (expr->str() == "-=")
programMemory->setIntValue(expr->astOperand1()->varId(), intValue - *result); programMemory->setIntValue(expr->astOperand1()->exprId(), intValue - *result);
else if (expr->str() == "*=") else if (expr->str() == "*=")
programMemory->setIntValue(expr->astOperand1()->varId(), intValue * *result); programMemory->setIntValue(expr->astOperand1()->exprId(), intValue * *result);
else if (expr->str() == "/=" && *result != 0) else if (expr->str() == "/=" && *result != 0)
programMemory->setIntValue(expr->astOperand1()->varId(), intValue / *result); programMemory->setIntValue(expr->astOperand1()->exprId(), intValue / *result);
else if (expr->str() == "%=" && *result != 0) else if (expr->str() == "%=" && *result != 0)
programMemory->setIntValue(expr->astOperand1()->varId(), intValue % *result); programMemory->setIntValue(expr->astOperand1()->exprId(), intValue % *result);
else if (expr->str() == "&=") else if (expr->str() == "&=")
programMemory->setIntValue(expr->astOperand1()->varId(), intValue & *result); programMemory->setIntValue(expr->astOperand1()->exprId(), intValue & *result);
else if (expr->str() == "|=") else if (expr->str() == "|=")
programMemory->setIntValue(expr->astOperand1()->varId(), intValue | *result); programMemory->setIntValue(expr->astOperand1()->exprId(), intValue | *result);
else if (expr->str() == "^=") else if (expr->str() == "^=")
programMemory->setIntValue(expr->astOperand1()->varId(), intValue ^ *result); programMemory->setIntValue(expr->astOperand1()->exprId(), intValue ^ *result);
} }
else if (Token::Match(expr, "++|--")) { else if (Token::Match(expr, "++|--")) {
if (!expr->astOperand1() || expr->astOperand1()->varId() == 0U) if (!expr->astOperand1() || expr->astOperand1()->exprId() == 0U)
*error = true; *error = true;
else { else {
long long intValue; long long intValue;
if (!programMemory->getIntValue(expr->astOperand1()->varId(), &intValue)) if (!programMemory->getIntValue(expr->astOperand1()->exprId(), &intValue))
*error = true; *error = true;
else { else {
if (intValue == 0 && if (intValue == 0 &&
@ -458,7 +454,7 @@ void execute(const Token *expr,
expr->astOperand1()->variable()->isUnsigned()) expr->astOperand1()->variable()->isUnsigned())
*error = true; // overflow *error = true; // overflow
*result = intValue + (expr->str() == "++" ? 1 : -1); *result = intValue + (expr->str() == "++" ? 1 : -1);
programMemory->setIntValue(expr->astOperand1()->varId(), *result); programMemory->setIntValue(expr->astOperand1()->exprId(), *result);
} }
} }
} }
@ -530,7 +526,7 @@ void execute(const Token *expr,
else if (expr->str() == "[" && expr->astOperand1() && expr->astOperand2()) { else if (expr->str() == "[" && expr->astOperand1() && expr->astOperand2()) {
const Token *tokvalue = nullptr; const Token *tokvalue = nullptr;
if (!programMemory->getTokValue(expr->astOperand1()->varId(), &tokvalue)) { if (!programMemory->getTokValue(expr->astOperand1()->exprId(), &tokvalue)) {
auto tokvalue_it = std::find_if(expr->astOperand1()->values().begin(), auto tokvalue_it = std::find_if(expr->astOperand1()->values().begin(),
expr->astOperand1()->values().end(), expr->astOperand1()->values().end(),
std::mem_fn(&ValueFlow::Value::isTokValue)); std::mem_fn(&ValueFlow::Value::isTokValue));
@ -558,11 +554,11 @@ void execute(const Token *expr,
if (astIsContainer(containerTok)) { if (astIsContainer(containerTok)) {
Library::Container::Yield yield = containerTok->valueType()->container->getYield(expr->strAt(-1)); Library::Container::Yield yield = containerTok->valueType()->container->getYield(expr->strAt(-1));
if (yield == Library::Container::Yield::SIZE) { if (yield == Library::Container::Yield::SIZE) {
if (!programMemory->getContainerSizeValue(containerTok->varId(), result)) if (!programMemory->getContainerSizeValue(containerTok->exprId(), result))
*error = true; *error = true;
} else if (yield == Library::Container::Yield::EMPTY) { } else if (yield == Library::Container::Yield::EMPTY) {
MathLib::bigint size = 0; MathLib::bigint size = 0;
if (!programMemory->getContainerSizeValue(containerTok->varId(), &size)) if (!programMemory->getContainerSizeValue(containerTok->exprId(), &size))
*error = true; *error = true;
*result = (size == 0); *result = (size == 0);
} else { } else {

View File

@ -11,21 +11,21 @@
class Token; class Token;
struct ProgramMemory { struct ProgramMemory {
using Map = std::unordered_map<nonneg int, ValueFlow::Value>; using Map = std::unordered_map<MathLib::bigint, ValueFlow::Value>;
Map values; Map values;
void setValue(nonneg int varid, const ValueFlow::Value &value); void setValue(MathLib::bigint exprid, const ValueFlow::Value& value);
const ValueFlow::Value* getValue(nonneg int varid) const; const ValueFlow::Value* getValue(MathLib::bigint exprid) const;
bool getIntValue(nonneg int varid, MathLib::bigint* result) const; bool getIntValue(MathLib::bigint exprid, MathLib::bigint* result) const;
void setIntValue(nonneg int varid, MathLib::bigint value); void setIntValue(MathLib::bigint exprid, MathLib::bigint value);
bool getContainerSizeValue(nonneg int varid, MathLib::bigint* result) const; bool getContainerSizeValue(MathLib::bigint exprid, MathLib::bigint* result) const;
void setUnknown(nonneg int varid); void setUnknown(MathLib::bigint exprid);
bool getTokValue(nonneg int varid, const Token** result) const; bool getTokValue(MathLib::bigint exprid, const Token** result) const;
bool hasValue(nonneg int varid); bool hasValue(MathLib::bigint exprid);
void swap(ProgramMemory &pm); void swap(ProgramMemory &pm);
@ -42,7 +42,7 @@ void programMemoryParseCondition(ProgramMemory& pm, const Token* tok, const Toke
struct ProgramMemoryState { struct ProgramMemoryState {
ProgramMemory state; ProgramMemory state;
std::map<nonneg int, const Token*> origins; std::map<MathLib::bigint, const Token*> origins;
void insert(const ProgramMemory &pm, const Token* origin = nullptr); void insert(const ProgramMemory &pm, const Token* origin = nullptr);
void replace(const ProgramMemory &pm, const Token* origin = nullptr); void replace(const ProgramMemory &pm, const Token* origin = nullptr);
@ -79,7 +79,7 @@ bool conditionIsTrue(const Token *condition, const ProgramMemory &programMemory)
/** /**
* Get program memory by looking backwards from given token. * Get program memory by looking backwards from given token.
*/ */
ProgramMemory getProgramMemory(const Token *tok, nonneg int varid, const ValueFlow::Value &value); ProgramMemory getProgramMemory(const Token* tok, MathLib::bigint exprid, const ValueFlow::Value& value);
ProgramMemory getProgramMemory(const Token *tok, const ProgramMemory::Map& vars); ProgramMemory getProgramMemory(const Token *tok, const ProgramMemory::Map& vars);

View File

@ -1310,6 +1310,8 @@ public:
return const_cast<Scope *>(this->findScope(tok, const_cast<const Scope *>(startScope))); return const_cast<Scope *>(this->findScope(tok, const_cast<const Scope *>(startScope)));
} }
bool isVarId(nonneg int varid) const { return varid < mVariableList.size(); }
const Variable *getVariableFromVarId(nonneg int varId) const { const Variable *getVariableFromVarId(nonneg int varId) const {
return mVariableList.at(varId); return mVariableList.at(varId);
} }

View File

@ -1802,7 +1802,7 @@ struct ValueFlowAnalyzer : Analyzer {
virtual bool isAlias(const Token* tok, bool& inconclusive) const = 0; virtual bool isAlias(const Token* tok, bool& inconclusive) const = 0;
using ProgramState = std::unordered_map<nonneg int, ValueFlow::Value>; using ProgramState = std::unordered_map<MathLib::bigint, ValueFlow::Value>;
virtual ProgramState getProgramState() const = 0; virtual ProgramState getProgramState() const = 0;
@ -2311,20 +2311,17 @@ struct ExpressionAnalyzer : SingleValueFlowAnalyzer {
return unknown; return unknown;
} }
virtual std::vector<int> evaluate(const Token* tok) const OVERRIDE { virtual ProgramState getProgramState() const OVERRIDE
if (tok->hasKnownIntValue()) {
return {static_cast<int>(tok->values().front().intvalue)}; ProgramState ps;
return std::vector<int> {}; ps[expr->exprId()] = value;
return ps;
} }
virtual bool match(const Token* tok) const OVERRIDE { virtual bool match(const Token* tok) const OVERRIDE {
return isSameExpression(isCPP(), true, expr, tok, getSettings()->library, true, true); return isSameExpression(isCPP(), true, expr, tok, getSettings()->library, true, true);
} }
virtual ProgramState getProgramState() const OVERRIDE {
return ProgramState{};
}
virtual bool isGlobal() const OVERRIDE { virtual bool isGlobal() const OVERRIDE {
return !local; return !local;
} }
@ -5005,6 +5002,8 @@ struct MultiValueFlowAnalyzer : ValueFlowAnalyzer {
// ProgramMemory pm = pms.get(endBlock->link()->next(), getProgramState()); // ProgramMemory pm = pms.get(endBlock->link()->next(), getProgramState());
for (const auto& p:pm.values) { for (const auto& p:pm.values) {
int varid = p.first; int varid = p.first;
if (!symboldatabase->isVarId(varid))
continue;
ValueFlow::Value value = p.second; ValueFlow::Value value = p.second;
if (vars.count(varid) != 0) if (vars.count(varid) != 0)
continue; continue;

View File

@ -1797,10 +1797,21 @@ private:
" c.x = nullptr;\n" " c.x = nullptr;\n"
" if(b) c.x = b;\n" " if(b) c.x = b;\n"
" bool d = !c.x;\n" " bool d = !c.x;\n"
" if (!d) c.x = &a;\n" " if (d) c.x = &a;\n"
" return *c.x;\n" " return *c.x;\n"
"}\n"); "}\n");
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
check("struct A { int* x; };\n"
"int f(int a, int* b) {\n"
" A c;\n"
" c.x = nullptr;\n"
" if(b) c.x = b;\n"
" bool d = !c.x;\n"
" if (!d) c.x = &a;\n"
" return *c.x;\n"
"}\n");
ASSERT_EQUALS("[test.cpp:8]: (warning) Possible null pointer dereference: c.x\n", errout.str());
} }
void nullpointer53() { void nullpointer53() {