aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-08-26 01:20:54 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-08-26 01:20:54 +0800
commit0268cbddc7dd413fb11be679e929d4c4be4ca46a (patch)
treed547db833ba4a158b336519a20a548b796e31d13 /docs
parent9fc1bcb2becf48192e5c52d6af1fac2b88656f2d (diff)
downloaddexon-solidity-0268cbddc7dd413fb11be679e929d4c4be4ca46a.tar.gz
dexon-solidity-0268cbddc7dd413fb11be679e929d4c4be4ca46a.tar.zst
dexon-solidity-0268cbddc7dd413fb11be679e929d4c4be4ca46a.zip
Document use of smaller storage variables
Diffstat (limited to 'docs')
-rw-r--r--docs/miscellaneous.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index 882a6002..98497872 100644
--- a/docs/miscellaneous.rst
+++ b/docs/miscellaneous.rst
@@ -15,6 +15,23 @@ Statically-sized variables (everything except mapping and dynamically-sized arra
- If an elementary type does not fit the remaining part of a storage slot, it is moved to the next storage slot.
- Structs and array data always start a new slot and occupy whole slots (but items inside a struct or array are packed tightly according to these rules).
+.. warning::
+ When using elements that are smaller than 32 bytes, your contract's gas usage may be higher.
+ This is because the EVM operates on 32 bytes a a time. Therefore, if the element is smaller than
+ that, the EVM must use more operations in order to reduce the size of the element from 32 bytes
+ to the desired size.
+
+ It is only beneficial to use reduced-size arguments if you are dealing with storage values
+ because the compiler will pack multiple elements into one storage slot. When dealing with
+ function arguments or memory values, there is no inherent benefit because the compiler does not
+ pack these values.
+
+ Finally, in order to allow the EVM to optimize for this, ensure that you try to order your
+ storage variables such that they can be packed tightly. For example, declaring your storage
+ variables in the order of ``uint128, uint128, uint256`` instead of ``uint128, uint256,
+ uint128``, as the former will only take up two slots of storage whereas the latter will take up
+ three.
+
The elements of structs and arrays are stored after each other, just as if they were given explicitly.
Due to their unpredictable size, mapping and dynamically-sized array types use a ``sha3``