mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
For loops analysis.
This commit is contained in:
parent
47925bc14e
commit
49b1112117
@ -310,9 +310,31 @@ bool AsmAnalyzer::operator()(Switch const& _switch)
|
||||
return success;
|
||||
}
|
||||
|
||||
bool AsmAnalyzer::operator()(assembly::ForLoop const&)
|
||||
bool AsmAnalyzer::operator()(assembly::ForLoop const& _for)
|
||||
{
|
||||
solAssert(false, "For loop not supported.");
|
||||
Scope* originalScope = m_currentScope;
|
||||
|
||||
bool success = true;
|
||||
if (!(*this)(_for.pre))
|
||||
success = false;
|
||||
// The block was closed already, but we re-open it again and stuff the
|
||||
// condition, the body and the post part inside.
|
||||
m_stackHeight += scope(&_for.pre).numberOfVariables();
|
||||
m_currentScope = &scope(&_for.pre);
|
||||
|
||||
if (!expectExpression(*_for.condition))
|
||||
success = false;
|
||||
m_stackHeight--;
|
||||
if (!(*this)(_for.body))
|
||||
success = false;
|
||||
if (!(*this)(_for.post))
|
||||
success = false;
|
||||
|
||||
m_stackHeight -= scope(&_for.pre).numberOfVariables();
|
||||
m_info.stackHeightInfo[&_for] = m_stackHeight;
|
||||
m_currentScope = originalScope;
|
||||
|
||||
return success;
|
||||
}
|
||||
|
||||
bool AsmAnalyzer::operator()(Block const& _block)
|
||||
|
@ -111,9 +111,24 @@ bool ScopeFiller::operator()(Switch const& _switch)
|
||||
return success;
|
||||
}
|
||||
|
||||
bool ScopeFiller::operator()(ForLoop const&)
|
||||
bool ScopeFiller::operator()(ForLoop const& _forLoop)
|
||||
{
|
||||
solAssert(false, "For loop not supported.");
|
||||
Scope* originalScope = m_currentScope;
|
||||
|
||||
bool success = true;
|
||||
if (!(*this)(_forLoop.pre))
|
||||
success = false;
|
||||
m_currentScope = &scope(&_forLoop.pre);
|
||||
if (!boost::apply_visitor(*this, *_forLoop.condition))
|
||||
success = false;
|
||||
if (!(*this)(_forLoop.body))
|
||||
success = false;
|
||||
if (!(*this)(_forLoop.post))
|
||||
success = false;
|
||||
|
||||
m_currentScope = originalScope;
|
||||
|
||||
return success;
|
||||
}
|
||||
|
||||
bool ScopeFiller::operator()(Block const& _block)
|
||||
|
Loading…
Reference in New Issue
Block a user