diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-11-22 18:24:12 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-11-22 21:04:20 +0800 |
commit | 20accf1a90e6b3dd077c67e6d31d1c56fedad5f5 (patch) | |
tree | 227e40834ef555f0f351b54c29564ff9a383785d /libsolidity/formal/SolverInterface.h | |
parent | 60fbc32fdfa4657edd3ebb047b7f65626ac3baba (diff) | |
download | dexon-solidity-20accf1a90e6b3dd077c67e6d31d1c56fedad5f5.tar dexon-solidity-20accf1a90e6b3dd077c67e6d31d1c56fedad5f5.tar.gz dexon-solidity-20accf1a90e6b3dd077c67e6d31d1c56fedad5f5.tar.bz2 dexon-solidity-20accf1a90e6b3dd077c67e6d31d1c56fedad5f5.tar.lz dexon-solidity-20accf1a90e6b3dd077c67e6d31d1c56fedad5f5.tar.xz dexon-solidity-20accf1a90e6b3dd077c67e6d31d1c56fedad5f5.tar.zst dexon-solidity-20accf1a90e6b3dd077c67e6d31d1c56fedad5f5.zip |
[SMTChecker] Add ArraySort and array operations
Diffstat (limited to 'libsolidity/formal/SolverInterface.h')
-rw-r--r-- | libsolidity/formal/SolverInterface.h | 51 |
1 files changed, 49 insertions, 2 deletions
diff --git a/libsolidity/formal/SolverInterface.h b/libsolidity/formal/SolverInterface.h index 551ef8e9..17e6904c 100644 --- a/libsolidity/formal/SolverInterface.h +++ b/libsolidity/formal/SolverInterface.h @@ -46,7 +46,8 @@ enum class Kind { Int, Bool, - Function + Function, + Array }; struct Sort @@ -79,6 +80,20 @@ struct FunctionSort: public Sort } }; +struct ArraySort: public Sort +{ + /// _domain is the sort of the indices + /// _range is the sort of the values + ArraySort(SortPointer _domain, SortPointer _range): + Sort(Kind::Array), domain(std::move(_domain)), range(std::move(_range)) {} + SortPointer domain; + SortPointer range; + bool operator==(ArraySort const& _other) const + { + return Sort::operator==(_other) && *domain == *_other.domain && *range == *_other.range; + } +}; + /// C++ representation of an SMTLIB2 expression. class Expression { @@ -109,7 +124,9 @@ public: {"+", 2}, {"-", 2}, {"*", 2}, - {"/", 2} + {"/", 2}, + {"select", 2}, + {"store", 3} }; return operatorsArity.count(name) && operatorsArity.at(name) == arguments.size(); } @@ -127,6 +144,36 @@ public: return !std::move(_a) || std::move(_b); } + /// select is the SMT representation of an array index access. + static Expression select(Expression _array, Expression _index) + { + solAssert(_array.sort->kind == Kind::Array, ""); + auto const& arraySort = dynamic_cast<ArraySort const*>(_array.sort.get()); + solAssert(arraySort, ""); + solAssert(*arraySort->domain == *_index.sort, ""); + return Expression( + "select", + std::vector<Expression>{std::move(_array), std::move(_index)}, + arraySort->range + ); + } + + /// store is the SMT representation of an assignment to array index. + /// The function is pure and returns the modified array. + static Expression store(Expression _array, Expression _index, Expression _element) + { + solAssert(_array.sort->kind == Kind::Array, ""); + auto const& arraySort = dynamic_cast<ArraySort const*>(_array.sort.get()); + solAssert(arraySort, ""); + solAssert(*arraySort->domain == *_index.sort, ""); + solAssert(*arraySort->range == *_element.sort, ""); + return Expression( + "store", + std::vector<Expression>{std::move(_array), std::move(_index), std::move(_element)}, + _array.sort + ); + } + friend Expression operator!(Expression _a) { return Expression("not", std::move(_a), Kind::Bool); |