mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Replace obsolete assembly code in LLL
This commit is contained in:
@@ -55,9 +55,6 @@ void Assembly::append(Assembly const& _a)
|
||||
m_subs += _a.m_subs;
|
||||
for (auto const& lib: _a.m_libraries)
|
||||
m_libraries.insert(lib);
|
||||
|
||||
assert(!_a.m_baseDeposit);
|
||||
assert(!_a.m_totalDeposit);
|
||||
}
|
||||
|
||||
void Assembly::append(Assembly const& _a, int _deposit)
|
||||
|
||||
@@ -85,12 +85,6 @@ public:
|
||||
AssemblyItem const& back() const { return m_items.back(); }
|
||||
std::string backString() const { return m_items.size() && m_items.back().type() == PushString ? m_strings.at((h256)m_items.back().data()) : std::string(); }
|
||||
|
||||
void onePath() { assertThrow(!m_totalDeposit && !m_baseDeposit, InvalidDeposit, ""); m_baseDeposit = m_deposit; m_totalDeposit = INT_MAX; }
|
||||
void otherPath() { donePath(); m_totalDeposit = m_deposit; m_deposit = m_baseDeposit; }
|
||||
void donePaths() { donePath(); m_totalDeposit = m_baseDeposit = 0; }
|
||||
void ignored() { m_baseDeposit = m_deposit; }
|
||||
void endIgnored() { m_deposit = m_baseDeposit; m_baseDeposit = 0; }
|
||||
|
||||
void injectStart(AssemblyItem const& _i);
|
||||
int deposit() const { return m_deposit; }
|
||||
void adjustDeposit(int _adjustment) { m_deposit += _adjustment; assertThrow(m_deposit >= 0, InvalidDeposit, ""); }
|
||||
@@ -121,7 +115,6 @@ protected:
|
||||
/// returns the replaced tags.
|
||||
std::map<u256, u256> optimiseInternal(bool _enable, bool _isCreation, size_t _runs);
|
||||
|
||||
void donePath() { if (m_totalDeposit != INT_MAX && m_totalDeposit != m_deposit) BOOST_THROW_EXCEPTION(InvalidDeposit()); }
|
||||
unsigned bytesRequired(unsigned subTagSize) const;
|
||||
|
||||
private:
|
||||
@@ -144,8 +137,6 @@ protected:
|
||||
mutable std::vector<size_t> m_tagPositionsInBytecode;
|
||||
|
||||
int m_deposit = 0;
|
||||
int m_baseDeposit = 0;
|
||||
int m_totalDeposit = 0;
|
||||
|
||||
SourceLocation m_currentSourceLocation;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user