2018-01-17 20:02:23 +00:00
|
|
|
/*
|
|
|
|
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 <memory>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2019-05-09 10:16:52 +00:00
|
|
|
namespace smt
|
|
|
|
{
|
2018-01-17 20:02:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class represents the SSA representation of a program variable.
|
|
|
|
*/
|
|
|
|
class SSAVariable
|
|
|
|
{
|
|
|
|
public:
|
2018-10-15 15:32:17 +00:00
|
|
|
SSAVariable();
|
2018-01-17 20:02:23 +00:00
|
|
|
void resetIndex();
|
|
|
|
|
2018-02-28 17:00:13 +00:00
|
|
|
/// This function returns the current index of this SSA variable.
|
2018-10-22 16:19:11 +00:00
|
|
|
unsigned index() const { return m_currentIndex; }
|
|
|
|
unsigned& index() { return m_currentIndex; }
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2018-10-22 16:19:11 +00:00
|
|
|
unsigned operator++()
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
2018-10-17 09:32:01 +00:00
|
|
|
return m_currentIndex = (*m_nextFreeIndex)++;
|
2018-01-17 20:02:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-10-22 16:19:11 +00:00
|
|
|
unsigned m_currentIndex;
|
2019-05-09 08:56:58 +00:00
|
|
|
std::unique_ptr<unsigned> m_nextFreeIndex;
|
2018-01-17 20:02:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2019-05-09 10:16:52 +00:00
|
|
|
}
|