aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/AssemblyStack.h
diff options
context:
space:
mode:
authorliangdzou <liang.d.zou@gmail.com>2018-09-25 10:47:25 +0800
committerchriseth <chris@ethereum.org>2018-12-10 21:28:56 +0800
commit362648a45042d74da4e631520c0be581902c871b (patch)
treea7f9d5df94b4d9ac8cbbc89e99c6d74d8d080732 /libsolidity/interface/AssemblyStack.h
parent6240d9e72a6f1696d7c37facf805af6ce2352ab2 (diff)
downloaddexon-solidity-362648a45042d74da4e631520c0be581902c871b.tar.gz
dexon-solidity-362648a45042d74da4e631520c0be581902c871b.tar.zst
dexon-solidity-362648a45042d74da4e631520c0be581902c871b.zip
Reuse stack slots in Yul to EVM code generation.
Diffstat (limited to 'libsolidity/interface/AssemblyStack.h')
-rw-r--r--libsolidity/interface/AssemblyStack.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libsolidity/interface/AssemblyStack.h b/libsolidity/interface/AssemblyStack.h
index 485ec1e7..6cfefcd8 100644
--- a/libsolidity/interface/AssemblyStack.h
+++ b/libsolidity/interface/AssemblyStack.h
@@ -73,7 +73,8 @@ public:
void optimize();
/// Run the assembly step (should only be called after parseAndAnalyze).
- MachineAssemblyObject assemble(Machine _machine) const;
+ /// @param _optimize does not run the optimizer but performs optimized code generation.
+ MachineAssemblyObject assemble(Machine _machine, bool _optimize = false) const;
/// @returns the errors generated during parsing, analysis (and potentially assembly).
langutil::ErrorList const& errors() const { return m_errors; }