diff options
author | chriseth <chris@ethereum.org> | 2018-05-15 03:05:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-15 03:05:50 +0800 |
commit | 7f97995e11ebfbbd76df4d792a358793ae5f9cc4 (patch) | |
tree | 1a9af2c7a182d8633a2b2c104bd52fa3acac3b8c /libsolidity/analysis/ControlFlowAnalyzer.h | |
parent | 8f17f7219aec4586961af41b9bdd1804b3d59aa5 (diff) | |
parent | d7d71a14dfa7ab6f51842c086c25b9e7a2d9b19a (diff) | |
download | dexon-solidity-7f97995e11ebfbbd76df4d792a358793ae5f9cc4.tar dexon-solidity-7f97995e11ebfbbd76df4d792a358793ae5f9cc4.tar.gz dexon-solidity-7f97995e11ebfbbd76df4d792a358793ae5f9cc4.tar.bz2 dexon-solidity-7f97995e11ebfbbd76df4d792a358793ae5f9cc4.tar.lz dexon-solidity-7f97995e11ebfbbd76df4d792a358793ae5f9cc4.tar.xz dexon-solidity-7f97995e11ebfbbd76df4d792a358793ae5f9cc4.tar.zst dexon-solidity-7f97995e11ebfbbd76df4d792a358793ae5f9cc4.zip |
Merge pull request #4057 from ethereum/cfg
Control flow graph for uninitialized storage return detection.
Diffstat (limited to 'libsolidity/analysis/ControlFlowAnalyzer.h')
-rw-r--r-- | libsolidity/analysis/ControlFlowAnalyzer.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/libsolidity/analysis/ControlFlowAnalyzer.h b/libsolidity/analysis/ControlFlowAnalyzer.h new file mode 100644 index 00000000..43e13fb6 --- /dev/null +++ b/libsolidity/analysis/ControlFlowAnalyzer.h @@ -0,0 +1,52 @@ +/* + This file is part of solidity. + + solidity is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + solidity is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with solidity. If not, see <http://www.gnu.org/licenses/>. +*/ + +#pragma once + +#include <libsolidity/analysis/ControlFlowGraph.h> + +#include <set> + +namespace dev +{ +namespace solidity +{ + +class ControlFlowAnalyzer: private ASTConstVisitor +{ +public: + explicit ControlFlowAnalyzer(CFG const& _cfg, ErrorReporter& _errorReporter): + m_cfg(_cfg), m_errorReporter(_errorReporter) {} + + bool analyze(ASTNode const& _astRoot); + + virtual bool visit(FunctionDefinition const& _function) override; + +private: + static std::set<VariableDeclaration const*> variablesAssignedInNode(CFGNode const *node); + void checkUnassignedStorageReturnValues( + FunctionDefinition const& _function, + CFGNode const* _functionEntry, + CFGNode const* _functionExit + ) const; + + CFG const& m_cfg; + ErrorReporter& m_errorReporter; +}; + +} +} |