aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-05-10 17:46:44 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-04-10 03:07:44 +0800
commitcb352edd26f55adda63dde6cb66931089aff6656 (patch)
tree391bdc017eea84dce51a29165cc93493f0cb0fc2 /Changelog.md
parentfe61435c273bf43ac1a20d8bc97b6935a54b7117 (diff)
downloaddexon-solidity-cb352edd26f55adda63dde6cb66931089aff6656.tar
dexon-solidity-cb352edd26f55adda63dde6cb66931089aff6656.tar.gz
dexon-solidity-cb352edd26f55adda63dde6cb66931089aff6656.tar.bz2
dexon-solidity-cb352edd26f55adda63dde6cb66931089aff6656.tar.lz
dexon-solidity-cb352edd26f55adda63dde6cb66931089aff6656.tar.xz
dexon-solidity-cb352edd26f55adda63dde6cb66931089aff6656.tar.zst
dexon-solidity-cb352edd26f55adda63dde6cb66931089aff6656.zip
Add constant optimiser for SHR/SHL instructions
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index d1e199b7..1ed2f1dd 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -6,6 +6,7 @@ Features:
* Commandline interface: Error when missing or inaccessible file detected. Suppress it with the ``--ignore-missing`` flag.
* General: Support accessing dynamic return data in post-byzantium EVMs.
* Interfaces: Allow overriding external functions in interfaces with public in an implementing contract.
+ * Optimizer: Optimize ``SHL`` and ``SHR`` only involving constants (Constantinople only).
* Optimizer: Remove useless ``SWAP1`` instruction preceding a commutative instruction (such as ``ADD``, ``MUL``, etc).
* Optimizer: Replace comparison operators (``LT``, ``GT``, etc) with opposites if preceded by ``SWAP1``, e.g. ``SWAP1 LT`` is replaced with ``GT``.
* Optimizer: Optimize across ``mload`` if ``msize()`` is not used.